python通过进程内通信实现的聊天室程序代码#!/usr/bin/env python# Added by <ctang@redhat.com>import sysimport osfrom multiprocessing import connectionADDR = ('', 9997)AUTH_KEY……继续阅读 » 4年前 (2021-01-15) 1182浏览 1779个赞
coreseek自带了mssql的python数据源演示,我简单的修改了一下,用于mysql测试通过# -*- coding:utf-8 -*-# coreseek3.2 4.1 python source演示操作mysql数据库# author: 75271.com# date: 2012-09-13 10:20from os import ……继续阅读 » 4年前 (2021-01-15) 2525浏览 2394个赞
python将英文单词表示的数字转换成阿拉伯数字import re_known = { 'zero': 0, 'one': 1, 'two': 2, 'three': 3, 'four': 4, ……继续阅读 » 4年前 (2021-01-15) 2323浏览 2656个赞
python装饰器,用来计算指定函数的运行时间def GetRunTime(func): def check(*args, **args2): startTime = datetime.datetime.now() f = func(*args,**args2) endTime = dateti……继续阅读 » 4年前 (2021-01-15) 2907浏览 995个赞
python中发送邮件的代码片段 来源:http://www.cnblogs.com/xiaowuyi/archive/2012/03/17/2404015.html python中email模块使得处理邮件变得比较简单,今天着重学习了一下发送邮件的具体做法,这里写写……继续阅读 » 4年前 (2021-01-15) 1603浏览 2287个赞
开启用户验证下的gridfs 连接使用,在执行脚本前可以在python shell中from pymongo import Connectionfrom gridfs import *con = Connection(“mongodb://admin:admin@127.0.0.1:27017”)#用URI的方式建立数据库的链接,当然……继续阅读 » 4年前 (2021-01-15) 1337浏览 957个赞
python获得文件的创建时间和修改时间并输出的代码,需要用户从控制台输入文件路径import os.path, timeimport exceptionsclass TypeError (Exception): passif __name__ == '__main__': if (len(os.sys.argv)……继续阅读 » 4年前 (2021-01-15) 2638浏览 788个赞
bootstrapping and forward curve生成python范例## Description: example of a bootstrapping and forward curve generation# script, this can be used to build a set of curves for differ……继续阅读 » 4年前 (2021-01-15) 1397浏览 2600个赞
python正则表达式提取网页URLimport reimport urlliburl="http://www.itokit.com"s=urllib.urlopen(url).read()ss=s.replace(" ","")urls=re.findall(r"<……继续阅读 » 4年前 (2021-01-15) 2744浏览 2261个赞
Windows下Python获取磁盘空闲空间并写入日志from ctypes import *import timeimport win32filerun = Truelogfile = open('.\\log.out','w+');#open log fileinput = raw_input(&q……继续阅读 » 4年前 (2021-01-15) 1340浏览 2847个赞
用urllib按照百度音乐分类下载mp3。#!/usr/bin/env python#-*- coding: utf-8 -*-import urllibimport rebaseurl = "http://music.baidu.com"url = "http://music.baidu.com/search/……继续阅读 » 4年前 (2021-01-15) 2200浏览 2742个赞
python处理大数字代码# check the numeric range of Python with huge factorials# factorial(69) still checks out accurately! Has 98 digits in it!# 171122452428141311372468338881272839092……继续阅读 » 4年前 (2021-01-15) 2164浏览 1433个赞
上线需要,将py的源码中注释删掉,然后编译成字节码。写此脚本主要是为了删除注释。当然如果上线不想放py源码,则在最后增加删除源码即可。#!/bin/env python# -*- coding:utf-8 -*-# -------------------------------# Filename: # Revision:# Date:……继续阅读 » 4年前 (2021-01-15) 1364浏览 561个赞
python提取页面内的url列表from bs4 import BeautifulSoupimport time,re,urllib2t=time.time()websiteurls={}def scanpage(url): websiteurl=url t=time.time() n=0 html=……继续阅读 » 4年前 (2021-01-15) 1462浏览 235个赞
python 类继承演示范例# a simple example of a class inheritance# tested with Python24 vegaseat 10aug2005help('object') # testclass Class1(object): ""&……继续阅读 » 4年前 (2021-01-15) 2982浏览 490个赞
python统计文本字符串里面单词出现的频率# word frequency in a text# tested with Python24 vegaseat 25aug2005# Chinese wisdom ...str1 = """Man who run in front of car, get t……继续阅读 » 4年前 (2021-01-15) 2307浏览 307个赞
python正则搜索范例,通过search正则搜索字符串# encoding: UTF-8 import re # 将正则表达式编译成Pattern对象 pattern = re.compile(r'world') # 使用search()查找匹配的子串,不存在能匹配的子串时将返回None # 这个例子中使用mat……继续阅读 » 4年前 (2021-01-15) 2189浏览 1008个赞
python 定时执行指定的函数# time a function using time.time() and the a @ function decorator# tested with Python24 vegaseat 21aug2005import timedef print_timing(func): def wr……继续阅读 » 4年前 (2021-01-15) 2027浏览 389个赞
python常用列表,数组操作范例# experimenting with Python's list# tested with Python23 vegaseat 21feb2005# import module os for method listdir()import os# creat an empty li……继续阅读 » 4年前 (2021-01-15) 1389浏览 1218个赞
wxpython开发的简单的gui计算器# wxCalc1 a simple GUI calculator using wxPython# created with the Boa Constructor which generates all the GUI components# all I had to do is add some code……继续阅读 » 4年前 (2021-01-15) 1318浏览 732个赞
从CVS库中迁出项目以后,在目录中含有CVS目录。通过python进行递归删除。由于PYTHON中貌似不能直接删除非空目录,所以先将CVS目录下的文件删除,再删除CVS目录。采用walk方法,递归遍历各目录。来源:http://blog.csdn.net/moxuansheng/article/details/6450687''……继续阅读 » 4年前 (2021-01-15) 2982浏览 2223个赞
python删除过期文件代码片段# remove all jpeg image files of an expired modification date = mtime# you could also use creation date (ctime) or last access date (atime)# os.stat(filename) ……继续阅读 » 4年前 (2021-01-15) 1968浏览 1812个赞
python 对元组对库存进行排序# sort an inventory list by item count# Python24 (needed) modified by vegaseat 10may2005import operator# create an inventory list of tuples# each tuple c……继续阅读 » 4年前 (2021-01-15) 2536浏览 868个赞
wxPython listbox 使用演示# load a listbox with names, select a name and display in title# experiments with wxPython by vegaseat 20mar2005# Python v2.4 and wxPython v2.5# If yo……继续阅读 » 4年前 (2021-01-15) 2839浏览 1916个赞
python 根据完整路径获得目录名,例如输入c:\\abc\\123.zip ,返回c:\\abcimport osos.path.dirname('c:\\abc\\123.zip') 返回结果:c:\\abc……继续阅读 » 4年前 (2021-01-15) 2499浏览 1454个赞
python常用字典操作范例# experimenting with the Python dictionary# a seemingly unordered set of key:value pairs, types can be mixed# Python23 tested vegaseat 13feb2005# initia……继续阅读 » 4年前 (2021-01-15) 2565浏览 547个赞
模拟C和Pascal的结构体实现的Employee类,可以从cvs文件读取信息并搜索'''Class_StructEmp2_file.pymimic a C Structure or Pascal Record using a classload the data from a csv type file like t……继续阅读 » 4年前 (2021-01-15) 3134浏览 2865个赞
python 一句话代码将图片变亮或者变暗# do pixel math on an image using the PIL image library# free from: http://www.pythonware.com/products/pil/index.htm# Python23 tested vegaseat 2……继续阅读 » 4年前 (2021-01-15) 2862浏览 653个赞
python adslimport osg_adsl_account = {"name": "adsl", "username": "0512...", "password": "..."} class Adsl……继续阅读 » 4年前 (2021-01-15) 2143浏览 1844个赞
python播放wav音频文件# play a wave sound on a Windows Box# Python23 tested vegaseat 2/8/2005import winsoundimport time# pick a wave file supplied by Windows XP or one of your ……继续阅读 » 4年前 (2021-01-15) 3100浏览 638个赞
通过wxpython编写windows GUI程序这段代码只是一个最简单的范例# using a wx.Frame, wx.MenuBar, wx.Menu, wx.Panel, wx.StaticText, wx.Button, # and a wx.BoxSizer to show a rudimentary wxPython Windows G……继续阅读 » 4年前 (2021-01-15) 2701浏览 1202个赞
Author:pakoEmail>alk:zealzpc@gmail.com对于服务器的监控来说,监控linux不管是自己动手写脚本还是用一些开源的工具比如nagios,zenoss什么的。但毕竟还是有些公司有windows做服务器的,相对linux来说,windows没有方便的shell,cmd下提供的命令对于监控来说远远没有linux方便……继续阅读 » 4年前 (2021-01-15) 2395浏览 1553个赞
JavaScript检测用户电脑是mac还是pcif (navigator.userAgent.indexOf('Mac OS X') != -1) { $("body").addClass("mac");} else { $("body").addClass(&……继续阅读 » 4年前 (2021-01-15) 3006浏览 926个赞
JavaScript判断Element是否支持 Attributefunction elementSupportsAttribute(element, attribute) { var test = document.createElement(element); if (attribute in test) { return true……继续阅读 » 4年前 (2021-01-15) 1466浏览 468个赞
这段代码提供了两个方法对数组进行随机重排<script>var count = 100000,arr = [];for(var i=0;i<count;i++){ arr.push(i);}//常规方法,sort()var t = new Date().getTime();Array.prototype.sort.cal……继续阅读 » 4年前 (2021-01-15) 2079浏览 2795个赞
JavaScript控制元素的显示和隐藏<script type="text/javascript"><!-- function toggle_visibility(id) { var e = document.getElementById(id); if(e.style.di……继续阅读 » 4年前 (2021-01-15) 2831浏览 2754个赞
这是一个JavaScript代码条使用的函数,在很多语言里都有类似的函数,用于输出所有的变量function var_dump( objElement, intLimit, intDepth ){ intDepth = intDepth?intDepth:0; intLimit = intLimit?intLimit:1; ……继续阅读 » 4年前 (2021-01-15) 2476浏览 1763个赞
JavaScript的大量字符串链接,如果直接使用加号链接,其实是非常消耗性能的,虽然现在的浏览器如firefox,chrome都会自动对其优化,但是我们在编程的时候还是尽量避免大量字符串直接用加号链接,尽量使用堆栈数组//直接使用加号链接字符串,慢var string = 'abc'; string += '……继续阅读 » 4年前 (2021-01-15) 3082浏览 1439个赞
JavaScript定义变量也和性能有关,看看下面的代码你就明白了,只是把变量声明换了个地方就可以让代码变快//未优化的代码,很慢for(var i = 0; i < 1000; i++){var my_variable = 'This is my variable';// Do something with my_va……继续阅读 » 4年前 (2021-01-15) 2313浏览 1384个赞
下面的代码通过Tkinter制作windows窗口界面,然后时间了一个简单的倒计时功能,代码可以直接运行# Countdown using Tkinter from Tkinter import *import timeimport tkMessageBoxclass App: def __init__(self,master……继续阅读 » 4年前 (2021-01-13) 1388浏览 2679个赞
python获得文件扩展名import os.path def file_extension(path): return os.path.splitext(path)[1] ……继续阅读 » 4年前 (2021-01-13) 3333浏览 974个赞
python通过win32com库播放mp3文件# Python supports COM, if you have the Win32 extensions# check your Python folder eg. D:\Python23\Lib\site-packages\win32com# also http://starship.pyt……继续阅读 » 4年前 (2021-01-13) 2882浏览 1436个赞
python删除整个目录(目录非空),os.rmdir()只能删除空目录,下面的函数可以删除整个非空目录import osimport shutildef CleanDir( Dir ): if os.path.isdir( Dir ): paths = os.listdir( Dir ) for pa……继续阅读 » 4年前 (2021-01-13) 2917浏览 1639个赞
python 通关sleep函数等待到明天再执行def waitToTomorrow(): """Wait to tommorow 00:00 am""" tomorrow = datetime.datetime.replace(datetime.datetime.now……继续阅读 » 4年前 (2020-11-25) 2575浏览 1619个赞
有些JS是可以后加载的,如果一直等待JS加载完成可能非常影响网页上的其它功能实现,比如计数器一类的,jQuery可以对JS进行动态加载。方法1:$.getscript("test.js");方法2:function loadjs(file){ var head = $('head').remo……继续阅读 » 4年前 (2020-11-25) 2979浏览 1131个赞