上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 91 下一页
  2016年3月30日
摘要: 查询指定时间内审核失败的事件日志,必须要加namespace,否则无返回 如果使用gwmi,时间格式还需要再次转换,无法直接使用。 Get-CimInstance需要PS3.0的支持。 阅读全文
posted @ 2016-03-30 14:05 momingliu11 阅读(388) 评论(0) 推荐(0) 编辑
  2016年3月18日
摘要: http://jingyan.baidu.com/article/afd8f4de6197c834e386e96b.html http://cuiqingcai.com/1319.html Windows下安装Beautifulsoup: 1.下载压缩包:https://www.crummy.com 阅读全文
posted @ 2016-03-18 10:53 momingliu11 阅读(588) 评论(0) 推荐(0) 编辑
  2016年3月17日
摘要: print q.queue #查看当前队列中的内容 q.queue.clear() #清空当前队列 阅读全文
posted @ 2016-03-17 10:46 momingliu11 阅读(392) 评论(0) 推荐(0) 编辑
  2016年3月16日
摘要: 使用urllib2抓取网页内容: 使用HTMLParser处理网页内容: HTMLParser是python用来解析html的模块。它可以分析出html里面的标签、数据等等,是一种处理html的简便途径。HTMLParser采用的是一种事件驱动的模式,当HTMLParser找到一个特定的标记时,它会 阅读全文
posted @ 2016-03-16 16:39 momingliu11 阅读(1085) 评论(0) 推荐(0) 编辑
摘要: 举例: 正则表达式可以包含一些可选标志修饰符来控制匹配的模式。修饰符被指定为一个可选的标志。多个标志可以通过按位 OR(|) 它们来指定。如 re.I | re.M 被设置成 I 和 M 标志: rr=re.match(r'[0-9]','3') rr.group(0) 正则表达式模式--http: 阅读全文
posted @ 2016-03-16 11:11 momingliu11 阅读(92945) 评论(6) 推荐(7) 编辑
摘要: 1.配置F5启用X-Forwarded-For方法: 1:Local Traffic-Profiles-Http-改"Insert XForwarded For"为Enable 2:Local Traffic-Virtual servers-点击需要改动的VS-将Type选项更改为Standard- 阅读全文
posted @ 2016-03-16 10:41 momingliu11 阅读(1301) 评论(0) 推荐(0) 编辑
  2016年3月15日
摘要: import os print os.path.abspath(__file__) #返回脚本名称(包含全路径),如C:\Django\workplace\sf\sinfors\tests5.py print os.path.dirname(os.path.abspath(__file__)) #返回脚本所在目录,如C:\Django\workplace\sf\sinfors print o... 阅读全文
posted @ 2016-03-15 15:53 momingliu11 阅读(227) 评论(0) 推荐(0) 编辑
  2016年3月14日
摘要:    copystat(src, dst)  #复制权限、最后访问时间、最后修改时间 阅读全文
posted @ 2016-03-14 17:32 momingliu11 阅读(461) 评论(0) 推荐(0) 编辑
  2016年3月10日
摘要: 将csv导出json格式 import os,csv,json cf = open('D:\OneDrive\\Tech\\Script\\Powershell_Script\\Uxin_work\\VM-Export2012\\VMs.csv','r') for x in csv.DictRead 阅读全文
posted @ 2016-03-10 17:45 momingliu11 阅读(4106) 评论(0) 推荐(0) 编辑
摘要: http://my.oschina.net/leejun2005/blog/74430 #查看errorb是unicode,还是stringprint isinstance(errorb,unicode),isinstance(errorb,str) encode是 unicode转换成str。de 阅读全文
posted @ 2016-03-10 17:38 momingliu11 阅读(1729) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 91 下一页