1#-*-coding:utf-8-*-2#批量操作linux服务器(执行命令,上传,下载)3#!/usr/bin/python4importparamiko5importdatetime6importos7importthreading8defssh2(ip,username,privateke....
分类:
编程语言 时间:
2014-07-07 11:38:16
阅读次数:
323
#!/usr/bin/pythonimport sys,time,json,loggingimport Queue, threading, datetimefrom lib.base.daemon import Daemonfrom lib.queue.httpsqs.HttpsqsClient i...
分类:
编程语言 时间:
2014-07-07 11:30:23
阅读次数:
276
# Celery 快速入门## 任务队列任务队列用于分发工作给不同线程或机器。Celery通过消息传递支持多个workers和brokers。提供高可用和水平扩展性。用Python写的## 优点* 简单* 高可用* 快* 易扩展## 支持* Brokers * RabbitMQ, Redis ...
分类:
其他好文 时间:
2014-07-07 11:23:15
阅读次数:
566
1#-*-coding:utf-8-*-2#批量操作linux服务器(执行命令,上传,下载)3#!/usr/bin/python4importparamiko5importdatetime6importos7importthreading8defssh2(ip,username,passwd,cmd...
分类:
编程语言 时间:
2014-07-07 11:21:24
阅读次数:
259
'''httpsqs?????@author xiaopenga = HttpsqsClient('192.168.0.218','1218','httpsqsmmall.com')print a.put('logtest','sdfsfsf')print a.get('logtest')'''im...
分类:
编程语言 时间:
2014-07-07 11:15:30
阅读次数:
249
#自定义函数:import ospath="D:\\Temp_del\\a"def gci (path): parents = os.listdir(path) for parent in parents: child = os.path.join(path,parent)...
分类:
编程语言 时间:
2014-07-07 10:08:15
阅读次数:
343
从别处找来的方法,做记录。在全局vim配置文件中(/etc/vimrc)或个人vim配置文件中($HOME/vimrc)加入如下代码即可将自动缩进改为4空格:autocmd FileType python setlocal et sta sw=4 sts=4其中相关变量含义:变量名 缩写 含义(no...
分类:
编程语言 时间:
2014-07-02 17:08:59
阅读次数:
245
#!/usr/bin/pythonimportMySQLdbdefnew_mail_mysql(ak):printakconn=MySQLdb.connect(host=‘m3306.sae.sina.com.cn‘,user=‘sae_ol‘,passwd=‘7b149edb22ae7526‘,db=‘sae‘,port=3306)cur=conn.cursor()sql="selectnamefromappwhereaccesskey=‘%s‘"%akcur.execute(sql)app_name=cu..
分类:
数据库 时间:
2014-07-02 16:14:12
阅读次数:
285
1、下载linux版本的Python3.3.5,以下是我共享的百度云盘的下载地址http://pan.baidu.com/s/1kT3IHLH2、解压:tar-zxvfPython-3.3.5.tgz3、进入解压后的目录:cdPython-3.3.54、创建安装目录,这里我将其安装在/usr/local下mkdir/usr/local/python3.35、编译python3.3./configu..
分类:
编程语言 时间:
2014-07-02 15:52:41
阅读次数:
557
今天用Python写了一段小代码,实现的功能是ping某一个网段的所有ip,然后将ping的结果提取出来,输出可以ping通的ip以及往返时间。初学Python,写得简陋,各位大侠多多指教。正则表达式请根据自己的系统进行调整,我这个是中文win7下的结果Python3.3下测试没问题ping测试的过程..
分类:
编程语言 时间:
2014-07-02 15:45:33
阅读次数:
201