python通过mmap库映射文件到内存用法详解转自:http://blog.chinaunix.net/uid-20393955-id-1645587.html         &……继续阅读 » 4年前 (2021-03-10) 2049浏览 1298个赞
python编写的两个简单的文本类游戏############################################################# - My version on the game "Dragon Realm".# - taken from the book "invent with py……继续阅读 » 4年前 (2021-03-10) 1270浏览 2960个赞
python通过程序向ppt文件里面插入新的幻灯片页面# -*- coding: UTF-8 -*-import win32com.clientimport win32com.client.dynamicimport os #我的範本(Template)檔名為 BugCurve.pptxdef PowerPoint(): ppt =……继续阅读 » 4年前 (2021-03-10) 1610浏览 1581个赞
python通过fileinput模块逐行读取文件#------------------------------------------------------------------------------# Name: read_lines.py# Author: Kevin Harris# Last M……继续阅读 » 4年前 (2021-03-10) 2741浏览 1337个赞
python scrapy 网络采集使用代理的方法 1.在Scrapy工程下新建“middlewares.py”# Importing base64 library because we'll need it ONLY in case if the proxy we ……继续阅读 » 4年前 (2021-03-10) 2230浏览 2269个赞
python控制随机间隔一段时间发送邮件、消息或弹出窗口""" If you need to do something irregularly, randomly during the weekday, youoften forget. This script gives you mail, sms or popup w……继续阅读 » 4年前 (2021-03-10) 1627浏览 929个赞
时间限制:1000 ms | 内存限制:65535 KB输入两个整数a,b (0……继续阅读 » 4年前 (2021-03-10) 2942浏览 2755个赞
python中使用反射的方法import sys, types,newdef _get_mod(modulePath): try: aMod = sys.modules[modulePath] if not isinstance(aMod, types.ModuleType): ra……继续阅读 » 4年前 (2021-03-10) 2435浏览 1856个赞
下面的代码依赖于winows com,所以必须在机器上安装PowerPoint才能用,可以将PPT文件中的所有纯文本信息进行输出到指定的文件,非常实用。import win32comfrom win32com.client import Dispatch, constantsppt = win32com.client.Dispatch('……继续阅读 » 4年前 (2021-03-10) 1906浏览 2527个赞
图形类:一个很抽象的和强大的数据结构来保存许多不同种类的数据关系。#!/usr/bin/env python# (c) Mark Janssen, this file is licensed under the GNU General Public License v2 found at <http://www.gnu.org/licenses……继续阅读 » 4年前 (2021-03-10) 1491浏览 478个赞
下面的python代码演示了如何读取文件、获取读取指针的位置、从指定的位置开始读取文件#!/usr/bin/python# Open a filefo = open("/tmp/foo.txt", "r+")str = fo.read(10);print "Read String is : &……继续阅读 » 4年前 (2021-03-10) 2818浏览 1978个赞
下面的代码可以给一个指定的ppt文件进行截图,可以截取任何一张幻灯片的图片,非常简单,需要本机安装了microsoft powerpoint才能使用。import win32com.clientApplication = win32com.client.Dispatch("PowerPoint.Application")Appl……继续阅读 » 4年前 (2021-03-10) 1895浏览 1621个赞
下面的代码可以为powerpoint文件ppt进行截图,可以指定要截取的幻灯片页面,需要本机安装了powerpoint,可以指定截图的大小分辨率import osimport comtypes.clientdef export_presentation(path_to_ppt, path_to_folder): if not (os.pa……继续阅读 » 4年前 (2021-03-10) 2529浏览 2954个赞
random库带有一个choice方法可以从列表中随机选择一个元素mylist = ['z', 'y', 'x', 'v', 'u']from random import choiceprint choice(mylist)……继续阅读 » 4年前 (2021-03-10) 3331浏览 857个赞
python使用append合并两个数组lista = [1,2,3]listb = [4,5,6] mergedlist =[]for elem in lista: mergedlist.append(elem)for elem in listb: mergedlist.append(elem)……继续阅读 » 4年前 (2021-03-10) 1796浏览 2988个赞
python的pil模块可以从图片获得图片每个像素点的颜色信息,下面的代码演示了如何获取图片所有点的颜色信息和每种颜色的数量。转载请注明出处:http://www.75271.com image = Image.open("75271.com.png")image.getcolors() ……继续阅读 » 4年前 (2021-03-10) 1565浏览 568个赞
删除文件夹下所有文件和子文件夹 Python语言: 删除文件夹下所有文件和子文件夹import osdef delete_file_folder(src): '''delete files and folders''' if os.path.isfile(src): ……继续阅读 » 4年前 (2021-03-10) 2636浏览 1039个赞
Python解压缩zip文件,解决乱码问题 Python语言: Python解压缩zip文件,解决乱码问题#!/usr/bin/python#coding=utf8import zipfileimport sysif len(sys.argv)<2: print u'punzip zipfilename'……继续阅读 » 4年前 (2021-03-10) 2104浏览 553个赞
python的数组遍历功能非常强大,下面使用了python独有的数组操作方式将字符串数组中的所有元素的值转换成小写。print([item.lower() for item in ['ABC','SHAREJS.COM']]) 输出结果如……继续阅读 » 4年前 (2021-03-10) 2362浏览 673个赞
Python 获取按键(跨平台)class _Getch: """Gets a single character from standard input. Does not echo to the screen.""" def __init__(self): ……继续阅读 » 4年前 (2021-03-10) 2462浏览 771个赞
heapq是一个很好的堆类,但是其自带的方法不太明确,这里自定义了一个heap类import heapqclass heap(list) : def __init__(self, * pos_arg, ** nam_arg) : list.__init__(self, * pos_arg, ** nam_arg) def pop(se……继续阅读 » 4年前 (2021-03-10) 1987浏览 2424个赞
Python 验证码识别 #encoding=utf-8import Image,ImageEnhance,ImageFilterimport sysimage_name = "./22.jpeg"#去处 干扰点im = Image.open(image_name)im = im.filter(ImageFilter……继续阅读 » 4年前 (2021-03-10) 2673浏览 474个赞
Python 随机生成中文验证码# -*- coding: utf-8 -*-import Image,ImageDraw,ImageFontimport randomimport math, string class RandomChar(): """用于随机生成汉字"""……继续阅读 » 4年前 (2021-03-10) 1797浏览 1720个赞
python gtalk机器人Python语言: python gtalk机器人# coding: utf-8## 这是根据xmpp封装的Jabber聊天机器人类, 可以通过继承,重载部分函数来自定义功能.# Jabber ID(JID): 比如gamcat@gmail.comimport xmppclass Bot: &quo……继续阅读 » 4年前 (2021-03-10) 2069浏览 672个赞
假如有一条mongodb的记录,并不包含id字段,如果需要删除所有不包含id字段的数据,可以通过下面的代码实现。import pymongo#connect to mongodb , www.75271.comconn=pymongo.Connection()db=conn.testcollection=db.user#这条语句用于删除不包含……继续阅读 » 4年前 (2021-03-10) 2547浏览 225个赞
windows下清理svn文件夹的python脚本# -*- coding: cp936 -*- # 注明字符集 # file:clearsvn.py 删除svn目录下的所有svn文件 import os,win32con,win32api #清除文件名头尾的引号 def trimpath(pathin): #如……继续阅读 » 4年前 (2021-03-10) 2780浏览 2222个赞
Python telnet服务器 import threading class myThread(threading.Thread): def __init__(self,conn,add): threading.Thread.__init__(self) self.inputstr = '……继续阅读 » 4年前 (2021-03-10) 1830浏览 2244个赞
Python 126邮箱自动登录程序import sys, urllib2, urllib,cookielib import re cookie = cookielib.LWPCookieJar() opener=urllib2.build_opener(urllib2.HTTPCookieProcessor(cookie)) urllib2.……继续阅读 » 4年前 (2021-03-10) 1988浏览 1309个赞
偷取Bing每天的桌面,并设置为自己的桌面 Python语言: 偷取Bing每天的桌面,并设置为自己的桌面# -*- coding: cp936 -*-'''Created on 2009-8-17@author: lign偷取Bing的背景图片,并设置为自己的桌面背景,随后加入预览和定时偷取'……继续阅读 » 4年前 (2021-03-10) 2296浏览 1256个赞
Python 最近最少使用算法# lrucache.py -- a simple LRU (Least-Recently-Used) cache class # Copyright 2004 Evan Prodromou <evan@bad.dynu.ca> # Licensed under the Academic Free Lic……继续阅读 » 4年前 (2021-03-10) 2075浏览 2530个赞
文中用到的convert.txt就是字典,但是作者的博客中没有提供下载.我通过网络搜索,从其他途径下载到了整个压缩包,包括字典和转换程序.该程序 是基于GBK的, 要把汉字分成高低位来处理,一般人理解不了,我做了点改进就是把字典转化为utf-8的,因为在django中使用的# -*- coding: utf-8 -*- # -------------……继续阅读 » 4年前 (2021-03-10) 1144浏览 924个赞
多线程Ping网段import sysimport subprocessfrom threading import Threadfrom Queue import Queueif sys.hexversion < 0x02040000: print >> sys.stderr, 'Your pytho……继续阅读 » 4年前 (2021-03-10) 1788浏览 2602个赞
Python压缩文件夹/解压缩zip文件#coding=utf-8#甄码农python……继续阅读 » 4年前 (2021-03-10) 1393浏览 2740个赞
Python合并文本文件# coding gbk # # author: GreatGhoul # email : greatghoul@gmail.com # blog : http://greatghoul.javaeye.com import sys,os,msvcrt def join(in_filenam……继续阅读 » 4年前 (2021-03-10) 2106浏览 1569个赞
多线程ping和arpping扫描工具#/usr/bin/env python#--encoding=UTF-8--#auth@:xfk#blog@:blog.sina.com.cn/kaiyongdeng#data@:2012-04-15#a simpl ping scanerimport subprocessfrom threadin……继续阅读 » 4年前 (2021-03-10) 1707浏览 804个赞
Python 发email 带附件from email.MIMEText import MIMETextfrom email.MIMEMultipart import MIMEMultipartimport smtplibmail_host = 'smtp.126.com'mail_user = 'xx@126.……继续阅读 » 4年前 (2021-03-10) 2255浏览 1839个赞
穷举法-SSH暴力破解工具#!/usr/bin/env python#-*-coding = UTF-8-*-#author@:dengyongkai#blog@:blog.sina.com.cn/kaiyongdengimport sysimport osimport time#from threading import Thread……继续阅读 » 4年前 (2021-03-10) 3239浏览 662个赞
微信-python远程控制电脑#!/etc/bin/env python#-*-encoding=utf-8-*-#auth@:dengyongkai#blog@:blog.sina.com.cn/kaiyongdengimport poplib,emailfrom email.header import decode_headerimpo……继续阅读 » 4年前 (2021-03-10) 1825浏览 2590个赞
有点类似python里的timedelta,获取在指定日期上加上一段时间后的日期package mainimport ( "fmt" "time")func main() { baseTime := time.Date(1980, 1, 6, 0, 0, ……继续阅读 » 4年前 (2021-03-10) 1610浏览 1218个赞
Here is a code snippet that calculates the probability of the outcome of a two sided game based on the capability of each side. I used it in my football league simulator programCo……继续阅读 » 4年前 (2021-03-10) 2673浏览 2093个赞
这段python代码主要通过www.beijing-time.org的官网上获取标准的北京时间,如果你的服务器挂在网上,你可以通过这段代码定时获取北京时间,然后更新自己系统的标准时间。import time,httplibdef getBeijinTime(): try: conn = httplib.HTTPConnec……继续阅读 » 4年前 (2021-03-10) 1306浏览 1439个赞
这段代码分析网页中的所有图片表单,分析后为其前后添加相应的修饰标签,并添加到图片的超级链接。result = value.replace("[page]","").replace(' ',u' ')p=re.compile(r'''(<……继续阅读 » 4年前 (2021-03-10) 2513浏览 2031个赞
这个函数通过字符串输出startStr和endStr两个字符串时间的字符串,比如:content = “hello world”startStr = ‘h’endStr = ‘or’则返回:ello w这个函数有个小问题,就是startStr和endStr不能包含正则表达式中的……继续阅读 » 4年前 (2021-03-10) 2142浏览 2044个赞
如果希望从网络读取文件进行处理,但是又不希望保存文件到硬盘,可以使用cStringIO模块进行处理res = urllib2.urlopen(pic,timeout=10)f = cStringIO.StringIO(res.read()) f 是一个文件对……继续阅读 » 4年前 (2021-03-10) 1526浏览 1115个赞
给定一个字符串,指定开头和结尾的字符串,返回中间包夹的字符串,比如:content:75271.comstartStr:endStr:返回结果:75271.comdef GetMiddleStr(content,startStr,endStr): startIndex = content.index(startStr) if……继续阅读 » 4年前 (2021-03-10) 1998浏览 1726个赞