
爬虫
会写bug的程序猿
东南大学,六年开发经验,python,c,sql,shell
展开
-
python调用迅雷下载
pip install win32compatfrom win32com.client import Dispatchdef xunlei(url, downpath): filename = url.split('/')[-1] thunder = Dispatch('ThunderAgent.Agent64.1') thunder.AddTask(url, filename, downpath) thunder.CommitTasks()原创 2020-08-29 09:21:56 · 3226 阅读 · 4 评论 -
爬取postgresql 源代码(爬虫)
#!/usr/bin/python# -- coding: utf-8 --from html.parser import HTMLParserimport urllib.errorimport urllib.requestimport os, sysimport socketfrom urllib import requestdef out_log(logfile, message): with open(logfile, 'a') as log: log.w.原创 2020-08-28 14:24:16 · 157 阅读 · 0 评论 -
爬取kylin系统软件源源码
#!/usr/bin/python# -- coding: utf-8 --from html.parser import HTMLParserimport urllib.errorimport urllib.requestimport os, sysimport socketfrom urllib import requestdef out_log(logfile, message): with open(logfile, 'a') as log: log.w.原创 2020-08-28 11:34:31 · 360 阅读 · 0 评论