python
001998
这个作者很懒,什么都没留下…
展开
-
Python藏头诗创作教程
1.首先我们要从网上用爬虫爬取古诗这里我们用urllib库来进行爬虫,然后用re和beautifulsoup来进行解析爬取的网站是https://so.gushiwen.org/mingju/然后将爬取的古诗保存在C:\编程\python\poem.txt中import codecsfrom urllib.request import urlopenimport ref...原创 2019-08-29 19:53:54 · 1842 阅读 · 1 评论 -
python黑客工具制作教程
黑客工具:可以查看目标ip的地址可以查看目标url的子域名,备案,whois等等import refrom urllib.request import urlopenfrom bs4 import BeautifulSoupdef search_ip(ip_address): #print(father_url + ip_address) url = f...原创 2019-08-29 20:02:23 · 1091 阅读 · 0 评论 -
python计时器
python计时器1.使用time模块程序启动开始计时,输入n结束import timeStart_time = 0End_time = 0def TimeLine(localStart_time,localEnd_time): return (localEnd_time.tm_sec - localStart_time.tm_sec + ((localEnd_...原创 2019-08-29 20:05:51 · 902 阅读 · 0 评论 -
Python网易云音乐单曲爬取
Python网易云音乐单曲爬取代码:import requestsimport osdef develop(path,url): song_url = url song_id = song_url[32:] try: if not os.path.exists(path): os.makedirs(path) ...原创 2019-08-30 20:42:08 · 428 阅读 · 0 评论