这个python类实现了一个定时器效果,调用非常简单,可以让系统定时执行指定的函数代码转自:http://blog.chinaunix.net/uid-15007890-id-106979.html 下面介绍以threading模块来实现定时器的方法。使用前先做一个简单试验:……继续阅读 » 4年前 (2021-03-22) 1572浏览 2146个赞
这段代码用于在本地计算机上生成本地ip地址绑定到网卡,生成的是一个bat的批处理文件,运行此批处理文件,可以通过ipconfig查看#!/usr/bin/python2.7# -*- coding: utf-8 -*- # Filename: AddIPAliases.py# Author: Ken, http://IJMeter.com/#……继续阅读 » 4年前 (2021-03-22) 1789浏览 817个赞
python生成随机mac地址,哈哈,具体有什么用处,自己去想吧#!/usr/bin/pythonimport randomdef randomMAC(): mac = [ 0x52, 0x54, 0x00, random.randint(0x00, 0x7f), ra……继续阅读 » 4年前 (2021-03-22) 2032浏览 642个赞
一个非常高效的提取内容关键词的python代码,这段代码只能用于英文文章内容,中文因为要分词,这段代码就无能为力了,不过要加上分词功能,效果和英文是一样的。# coding=UTF-8import nltkfrom nltk.corpus import brown # This is a fast and simple noun phrase ……继续阅读 » 4年前 (2021-03-22) 2307浏览 2037个赞
1、要有一个Google App账号:这个可以上网上去申请,申请地址为:https://developers.google.com/appengine/?hl=zh-cn2、创建一个Google App应用:然后注到https://appengine.google.com/创建一个应用,创建应用时要选择本地应用,scope选择https://www.g……继续阅读 » 4年前 (2021-03-22) 2127浏览 2978个赞
下面的代码列出了python内部各种数据类型的相互转换方式,包括强制转换成整数、转换成浮点数、转换成长整形、复数,强制转换成字符串等等int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 ……继续阅读 » 4年前 (2021-03-22) 2482浏览 1599个赞
本程序实现了,把目标机器的某个目录(可控)的所有的某种类型文件(可控)全部获取并传到己方的机器上。1、用了base64的encode(infile,outfile)加密,以及decode(infile,outfile)解密,这是2进制加密解密2、用zip压缩3、socket中server.py放到自己这方python server.py,然后clien……继续阅读 » 4年前 (2021-03-22) 2737浏览 2491个赞
python打开文件可以有多种模式,读模式、写模式、追加模式,同时读写的模式等等,这里主要介绍同时进行读写的模式r+ python通过open方法打开文件file_handler = open(filename,mode) ……继续阅读 » 4年前 (2021-03-22) 1567浏览 668个赞
pil功能强大,convert方法可以轻易的将图片转换,下面的代码可以将图片转换成黑白效果from PIL import Image # http://www.75271.comimage_file = Image.open("convert_image.png") # open colour imageimage_file ……继续阅读 » 4年前 (2021-03-22) 1245浏览 1786个赞
python通过pil模块将raw图片转换成png图片,pil中包含了fromstring函数可以按照指定模式读取图片信息然后进行保存。rawData = open("foo.raw" 'rb').read()# http://www.75271.comimgSize = (x,y)# Use the PI……继续阅读 » 4年前 (2021-03-22) 1195浏览 2794个赞
python通过exifread模块获得图片exif信息exifread模块的下载地址:https://pypi.python.org/pypi/ExifRead也可以通过pip进行安装:pip install exifreadimport exifread# http://www.75271.com# Open image file for……继续阅读 » 4年前 (2021-03-22) 2955浏览 2964个赞
python的pil模块功能超级强大,不但可以用来处理图片也可以用来获取图片的exif数据from PIL import Image#code from http://www.75271.comimg = Image.open('img.jpg')exif_data = img._getexif()……继续阅读 » 4年前 (2021-03-22) 1225浏览 2461个赞
exif-py是一个纯python实现的获取图片元数据的python库,官方下载地址:http://exif-py.svn.sourceforge.net/viewvc/exif-py/source/EXIF.py?revision=19&view=markup脚本分享网 http://www.75271.com 也提供exif-py库的下载,……继续阅读 » 4年前 (2021-03-22) 2568浏览 484个赞
python中可以通过isinstance判断对象的类型,比如是否是字符串,是否是数字,是否是元组等print isinstance(('75271.com','haotu.net','baidu.com'), tuple)print isinstance('http://www.……继续阅读 » 4年前 (2021-03-22) 2747浏览 1297个赞
平时访问字典使用类似于:dict[‘name’]的方式,如果能通过dict.name的方式访问会更方便,下面的代码自定义了一个类提供了这种方法。#from http://www.75271.comclass DottableDict(dict): def __init__(self, *args, **kwargs):……继续阅读 » 4年前 (2021-03-22) 2934浏览 1017个赞
python真是太简单了,直接在itertools模块内置了全排列算法,你只需要一句代码既可以输出数组的全排列全排列定义:从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。from itertools import permutations#from htt……继续阅读 » 4年前 (2021-03-22) 3141浏览 901个赞
从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。这段代码用到了yield方法,全排列速度加倍def perm(arr, pos = 0): if pos == len(arr): yield arr for i in ran……继续阅读 » 4年前 (2021-03-22) 1757浏览 2924个赞
python生成全排列数从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。#coding:utf-8#全排列发生器#http://www.75271.com/codes/def a(n): li=[] for i in range……继续阅读 » 4年前 (2021-03-22) 2384浏览 1129个赞
python回溯法实现数组全排列输出全排列解释:从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。from sys import stdout#code from http://www.75271.com/codes/def perm(li, start,……继续阅读 » 4年前 (2021-03-22) 2055浏览 858个赞
python标准算法实现数组全排列代码,代码来自国外网站,希望对大家有所帮助。从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。#code from http://www.75271.com/codes/def Mideng(li): if(type……继续阅读 » 4年前 (2021-03-22) 1508浏览 1652个赞
常规方法实现python数组的全排列操作全排列解释:从n个不同元素中任取m(m≤n)个元素,按照一定的顺序排列起来,叫做从n个不同元素中取出m个元素的一个排列。当m=n时所有的排列情况叫全排列。def perm(l): if(len(l)<=1): return [l] r=[] for ……继续阅读 » 4年前 (2021-03-22) 2136浏览 1053个赞
png图片有些是没有背景颜色,如果希望以单色(比如白色)填充背景,可以使用下面的代码,这段代码将当前目录下的 75271.com.png图片填充了白色背景。 使用指定的颜色的背景色即可,然后把该图片用alpha通道填充到该单色背景上。 比如下面使用白色背景:……继续阅读 » 4年前 (2021-03-22) 1745浏览 120个赞
这段代码自定义了一个类,类包含了两个成员title和url,在类的内部定义了一个函数list_all_member用于输出类的所有成员变量及值# -*- coding: utf-8 -*-#75271.com提供代码,转载请注明出处class Site(object): def __init__(self): self.ti……继续阅读 » 4年前 (2021-03-22) 3087浏览 1244个赞
python格式化日期时间的函数为datetime.datetime.strftime();由字符串转为日期型的函数为:datetime.datetime.strptime(),两个函数都涉及日期时间的格式化字符串,75271.com提供详细的代码详细演示了每一个参数的使用方法及范例。 ……继续阅读 » 4年前 (2021-03-22) 2635浏览 1458个赞
php XSS安全过滤代码function remove_xss($val) { // remove all non-printable characters. CR(0a) and LF(0b) and TAB(9) are allowed // this prevents some character re-spacing such a……继续阅读 » 4年前 (2021-03-22) 1287浏览 2710个赞
php逐行读取文件范例代码,通过fopen打开文件,fgets读取文件,fclose关闭文件<?php$file = fopen("welcome.txt", "r") or exit("Unable to open file!");//Output a line of the fil……继续阅读 » 4年前 (2021-03-22) 1528浏览 2057个赞
我们使用SimpleXML来加载XML文件如下。<?php $xml = simplexml_load_file("sample.xml"); echo htmlspecialchars($xml->asXML());?> sa……继续阅读 » 4年前 (2021-03-22) 1389浏览 520个赞
PHP的SimpleXML扩展提供了一个非常简单和易于使用的工具集,把XML转换为可以通过数组迭代的对象。我们使用SimpleXML来加载XML文件如下。<?php $xml = simplexml_load_file("sample.xml"); var_dump($xml);?> ……继续阅读 » 4年前 (2021-03-22) 2720浏览 354个赞
下面的代码通过一个简单的范例演示了php如何读取xml文件并输出xml属性<?php $xml = simplexml_load_file("books.xml"); foreach($xml->book[0]->author->attributes() AS $a => $b) { ……继续阅读 » 4年前 (2021-03-22) 1696浏览 1795个赞
下面的代码分别用于创建mysql表和上传文件保存到mysql数据库 创建mysql表<?php $con = mysql_connect("localhost", "", ""); mysql_select_……继续阅读 » 4年前 (2021-03-22) 1185浏览 1828个赞
给定一段文本,此代码分析文本的词频分布,生成tag云<?php/** * Tag cloud demo based on word frequency * @author: unknown * @since: 2007-02-27 */ // Store frequency of words in an array$freqDat……继续阅读 » 4年前 (2021-03-22) 1227浏览 1413个赞
php对mysql查询结果进行分页<?php function pageSplit($startPos, $rowsPerPage = '', $totalRows = '' ) { $numPages = $totalRows / $rowsPerPag……继续阅读 » 4年前 (2021-03-22) 2304浏览 184个赞
Mail-lib提供的简单发送邮件接口, 这段代码不能在windows下运行<?php function send_mail($to_address, $from_address, $subject, $message) { $path_to_sendmail = "/usr/lib/sendmail"; ……继续阅读 » 4年前 (2021-03-22) 1698浏览 1335个赞
In Recurive funaction..(code using PHP and MySql)When using a recursive function try not to use any iterative loops. It increases the number of iterations at execution time. In thi……继续阅读 » 4年前 (2021-03-22) 2331浏览 1860个赞
php检测Israeli ID (9 digits)是否有效<? // takes a string and returns an array of characters function toCharArray($input){ $len = strlen($input); for ($j=0;$j<$……继续阅读 » 4年前 (2021-03-22) 1675浏览 324个赞
阿拉伯数字转换为罗马数字函数function to_roman($num) { // Function to convert an arabic number ($num) to a roman numeral. $num must be between 0 and 9,999 if ($num < 0 || $num > 9999……继续阅读 » 4年前 (2021-03-22) 2759浏览 2877个赞
这是一个php准确计算出复活节日期的函数<?PHP function isLeapYear( $nYEAR ) { if ((( $nYEAR % 4 == 0 ) AND !( $nYEAR % 100 == 0 )) AND ( $nYEAR % 400 != 0 )) { return TRUE; } else { ……继续阅读 » 4年前 (2021-03-22) 1868浏览 513个赞
这个php类可以识别和验证不同类型的信息卡号码<?php class credit_card { function clean_no ($cc_no) { // Remove non-numeric characters from $cc_no return ereg_replace……继续阅读 » 4年前 (2021-03-22) 1390浏览 845个赞
给定可用的字符列表生成一个指定长度的随机字符串<? function randomString($len) { srand(date("s")); $possible="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890!@#……继续阅读 » 4年前 (2021-03-22) 1741浏览 956个赞
php字符串转换成标准标题样式<?php function titleCase($string) { $len=strlen($string); $i=0; $last= ""; $new= ""; $strin……继续阅读 » 4年前 (2021-03-22) 3113浏览 1259个赞
Boolean Keywords<? /* BEGIN FUNCTION DEFINITIONS */ /* This function takes in an array and flushes all null values from the array. It returns the array - all null ……继续阅读 » 4年前 (2021-03-22) 2494浏览 1737个赞
Boolean Keyword Interpreter#!/usr/local/bin/php <? /* BEGIN FUNCTION DEFINITIONS */ /* This function takes in an array and flushes all null values from the array. ……继续阅读 » 4年前 (2021-03-22) 2754浏览 451个赞
这段代码包含两个函数,bin2text,二进制转换为文本,text2bin,文本转换成二进制<? function bin2text($bin_str) { $text_str = ''; $chars = explode("\n", chunk_split(str_replace(……继续阅读 » 4年前 (2021-03-22) 2488浏览 1823个赞
有了这个php类,计算函数或者一段代码的执行时间就简单了<? class c_Timer { var $t_start = 0; var $t_stop = 0; var $t_elapsed = 0; func……继续阅读 » 4年前 (2021-03-22) 1860浏览 1815个赞
一组php编写的用于金融计算的函数<?php /* VARIABLES: $m = number of periods per year. For instance, if you are For instance, if you are making payments monthly the……继续阅读 » 4年前 (2021-03-22) 1364浏览 1117个赞