2 Star 2 Fork 0

quyihuang/爬虫_自动更新网站

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
urls_download.py 733 Bytes
一键复制 编辑 原始数据 按行查看 历史
quyihuang 提交于 2019-02-02 17:30 . 修改
#! /usr/bin/env python3
# coding=utf-8
import urllib.request
import http.cookiejar
import urllib
class Download():
def xiazai(self, new_url):
cj = http.cookiejar.CookieJar()
opener = urllib.request.build_opener(urllib.request.HTTPCookieProcessor(cj))
urllib.request.install_opener(opener)
header = {"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36",
"accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8",
}
res = urllib.request.Request(new_url, headers=header)
response = urllib.request.urlopen(res)
if response.getcode() != 200:
return
return response.read()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/quyihuang/crawler_auto_update_website.git
git@gitee.com:quyihuang/crawler_auto_update_website.git
quyihuang
crawler_auto_update_website
爬虫_自动更新网站
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385