爬虫
会写bug的程序猿
东南大学,六年开发经验,python,c,sql,shell
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
python调用迅雷下载
pip install win32compat from win32com.client import Dispatch def 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 · 3335 阅读 · 4 评论 -
爬取postgresql 源代码(爬虫)
#!/usr/bin/python # -- coding: utf-8 -- from html.parser import HTMLParser import urllib.error import urllib.request import os, sys import socket from urllib import request def out_log(logfile, message): with open(logfile, 'a') as log: log.w.原创 2020-08-28 14:24:16 · 179 阅读 · 0 评论 -
爬取kylin系统软件源源码
#!/usr/bin/python # -- coding: utf-8 -- from html.parser import HTMLParser import urllib.error import urllib.request import os, sys import socket from urllib import request def out_log(logfile, message): with open(logfile, 'a') as log: log.w.原创 2020-08-28 11:34:31 · 388 阅读 · 0 评论
分享