随笔分类 -  python

摘要:""" 网络监测v2.0,改进为使用多进程并发监测多个IP或域名,更加高效 兼容WINXP系统 同时检查本地到baidu.com或qq.com等的通讯情况并附至邮件,可以更客观地了解本地网络情况 linxingyi 20160305 """ import os, time,subprocess, s 阅读全文
posted @ 2016-03-10 12:25 子睚 阅读(1317) 评论(0) 推荐(0)
摘要:from collections import Counter str = input("输入字符串或txt地址:\n") cnt = Counter("") if str[-4:] == ".txt": try: with open(str,'r') as f: a = f.readlines() 阅读全文
posted @ 2016-03-10 12:22 子睚 阅读(187) 评论(0) 推荐(0)
摘要:自动安装pyenv$curl -Lhttps://raw.githubusercontent.com/yyuu/pyenv-installer/master/bin/pyenv-installer | bash[root@localhost~]#curl-Lhttps://raw.githubuse... 阅读全文
posted @ 2016-01-12 01:47 子睚 阅读(643) 评论(0) 推荐(0)
摘要:import requestsimport reurl = "http://www.acfun.tv/v/list110/index.htm?from=fixedNav"context = requests.get(url).text#print(html.text)pattern1 = re.co... 阅读全文
posted @ 2016-01-12 01:39 子睚 阅读(2394) 评论(0) 推荐(0)
摘要:到官网找到最新版本源码下载地址https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz[root@lxy-zabbix Downloads]# wget https://www.python.org/ftp/python/3.5.1/Pytho... 阅读全文
posted @ 2015-12-30 22:14 子睚 阅读(386) 评论(0) 推荐(0)