上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 90 下一页
  2016年8月29日
摘要: Python3.9发邮件,587端口 import smtplib,ssl from email.mime.text import MIMEText from email.header import Header # context = ssl.create_default_context() co 阅读全文
posted @ 2016-08-29 14:30 momingliu11 阅读(583) 评论(0) 推荐(0) 编辑
  2016年8月25日
摘要: 自定义模块cust.py位于应用aptest目录下 1.编辑settings.py from aptest import cust 2.编辑views.py from cust import pc #从cust.py中导入pc类 然后在view中可以直接调用pc.property 阅读全文
posted @ 2016-08-25 17:23 momingliu11 阅读(3501) 评论(0) 推荐(0) 编辑
摘要: 点击“查找2”按钮,通过ajax GET方式进行查询数据,这样页面不需要整体刷新,之后清空tbody数据,将查询结果重新附加到tbody 前端html: 前端js: 编写view(Django序列化objects): print srvs_json [{"fields": {"OSVersion": 阅读全文
posted @ 2016-08-25 10:53 momingliu11 阅读(6603) 评论(0) 推荐(1) 编辑
  2016年8月22日
摘要: 在外部提供远程服务器和账号密码(Windows下不支持parallel): fab -f D:\py\test-01.py dotask -H root@192.168.2.2 -p mypasswd 阅读全文
posted @ 2016-08-22 15:38 momingliu11 阅读(480) 评论(0) 推荐(0) 编辑
  2016年8月18日
摘要: 参考:https://segmentfault.com/a/1190000000497630 多个IP分别使用不同的账号、密码 多个IP使用相同的密码: 阅读全文
posted @ 2016-08-18 17:48 momingliu11 阅读(269) 评论(0) 推荐(0) 编辑
  2016年8月11日
摘要: ll= [1,2,3,4,5]print ll[::-1] ll.reverse() for l in reversed(ll): print l 倒序读取文件: 阅读全文
posted @ 2016-08-11 17:05 momingliu11 阅读(398) 评论(0) 推荐(0) 编辑
  2016年8月9日
摘要: print sql_insert,data返回值: insert into sinfors_hvvms values (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s) (171, '192.168.200.194', 'OPS-Linux', '', '8 阅读全文
posted @ 2016-08-09 14:08 momingliu11 阅读(1179) 评论(0) 推荐(0) 编辑
摘要: 如果该用户属于 upwords_mgmt组,则显示 密码管理 功能模块 阅读全文
posted @ 2016-08-09 10:46 momingliu11 阅读(442) 评论(0) 推荐(0) 编辑
  2016年8月4日
摘要: 下载pycrypto:http://www.voidspace.org.uk/python/modules.shtml#pycrypto (Windows版本) From:http://www.cnblogs.com/kaituorensheng/p/4501128.html 阅读全文
posted @ 2016-08-04 15:48 momingliu11 阅读(477) 评论(0) 推荐(0) 编辑
  2016年7月27日
摘要: 参考:http://python.usyiyi.cn/django/topics/db/aggregation.html 返回结果: [{'num': 1, 'sAMAccountName': u'zhongwenming'}, {'num': 1, 'sAMAccountName': u'sunq 阅读全文
posted @ 2016-07-27 17:41 momingliu11 阅读(3130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 90 下一页