self-confidence,the source of all the power

导航

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页

2012年12月26日 #

python time

摘要: time module的几种用法(草稿)>>> timePrefix = time.strftime('%Y_%m_%d_%H_%M%S')>>> timePrefix'2012_12_26_21_2250' 阅读全文

posted @ 2012-12-26 21:26 漩涡鸣人 阅读(265) 评论(0) 推荐(0) 编辑

2012年11月8日 #

linux scp

摘要: 夸服务器传输文件scp使用方法 1、获取远程服务器上的文件scp -P 2222 root@www.vpser.net:/root/lnmp0.4.tar.gz /home/lnmp0.4.tar.gz上端口大写P 为参数,2222 表示更改SSH端口后的端口,如果没有更改SSH端口可以不用添加该参数。 root@www.vpser.net 表示使用root用户登录远程服务器www.vpser.net,:/root/lnmp0.4.tar.gz 表示远程服务器上的文件,最后面的/home/lnmp0.4.tar.gz表示保存在本地上的路径和文件名。2、获取远程服务器上的目录scp -P 222 阅读全文

posted @ 2012-11-08 20:12 漩涡鸣人 阅读(358) 评论(0) 推荐(1) 编辑

2012年11月5日 #

python string to variable

摘要: example:exec:执行字串语句>>> l=[12,3,4,4]>>> s = 'l.append(10)'>>> exec(s)>>> s'l.append(10)'>>> l[12, 3, 4, 4, 10]>>>eval:让字串变成与之对应的变量名>>> str = 'good'>>> good = 'hello!world'>>> eval(str)' 阅读全文

posted @ 2012-11-05 17:10 漩涡鸣人 阅读(344) 评论(0) 推荐(0) 编辑

2012年11月2日 #

jenkinsapi

摘要: remote controll jenkins and trigger job by call it's apidocument:http://packages.python.org/jenkinsapi/jenkinsapi.html#module-jenkinsapi.apicode:http://pypi.python.org/pypi/jenkinsapi#downloads将slave连接到jenkins的服务器上,在slave上运行命令:>javaws http://172.21.14.18:8080/computer/mcd-test/slave-agent.jnl 阅读全文

posted @ 2012-11-02 15:13 漩涡鸣人 阅读(407) 评论(0) 推荐(0) 编辑

2012年10月23日 #

rstrip,strip,lstrip

摘要: rstrip,strip,lstrip三个函数主要用于移除字串中的满足条件的字符,传入参数是一个字符数组,它们分别表示匹配并去掉右边、两边、左边的字符。当没有参数传入时,strip()表示去除首尾空格,其它两个函数同理。code:>>> str = '\tgood to say you,you are a good guys!doddoog! \n'>>> nospace = str.strip()>>> nospace'good to say you,you are a good guys!doddoog!' 阅读全文

posted @ 2012-10-23 10:34 漩涡鸣人 阅读(400) 评论(0) 推荐(0) 编辑

2012年10月18日 #

serial number

摘要: android device serial number saved in file:sys/class/android_usb/android0/iSerialso if you want change it's serial you only rewrite a new number to sys/class/android_usb/android0/iSerialcommand: adb remount adb shell cat newNumberfile > sys/class/android_usb/android0/iSerial 阅读全文

posted @ 2012-10-18 11:34 漩涡鸣人 阅读(815) 评论(0) 推荐(0) 编辑

2012年10月17日 #

windows kill process

摘要: 1.taskkillpython 脚本杀掉进程:subprocess.call(['taskkill', '/F', '/T', '/PID', pipe.pid)]) 阅读全文

posted @ 2012-10-17 18:31 漩涡鸣人 阅读(297) 评论(0) 推荐(0) 编辑

2012年10月16日 #

python getopt

摘要: 1.使用getopt模块处理Unix模式的命令行选项:getopt模块用于抽出命令行选项和参数,也就是sys.argv。命令行选项使得程序的参数更加灵活。支持短选项模式和长选项模式。 e.g. python scriptname.py -f 'hello' --directory-prefix=/h... 阅读全文

posted @ 2012-10-16 10:45 漩涡鸣人 阅读(7563) 评论(0) 推荐(1) 编辑

2012年10月12日 #

python readline,seek

摘要: seek():移动文件读取指针到指定位置tell():返回文件读取指针的位置seek()的三种模式: (1)f.seek(p,0) 移动当文件第p个字节处,绝对位置(2)f.seek(p,1) 移动到相对于当前位置之后的p个字节 (3)f.seek(p,2) 移动到相对文章尾之后的p个字节code: f = open('d:/hello.txt','w') f.write('hello my friend python!\nsecond line.') f = open('d:\hello.txt','r') (1 阅读全文

posted @ 2012-10-12 17:00 漩涡鸣人 阅读(3507) 评论(0) 推荐(1) 编辑

2012年10月10日 #

python configparse

摘要: 在程序中使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在Python里更是如此,在官方发布的库中就包含有做这件事情的库,那就是ConfigParser,这里简单的做一些介绍。Python ConfigParser模块解析的配置文件的格式比较象ini的配置文件格式,就是文件中由多个section构成,每个section下又有多个配置项,比如:[db] db_host=127.0.0.1 db_port=3306db_user=rootdb_pass=password[concurrent] thread=10processor=20假设上面的配置文件的名字为test 阅读全文

posted @ 2012-10-10 14:22 漩涡鸣人 阅读(441) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 24 下一页