摘要: 阅读全文
posted @ 2020-08-12 14:55 juham 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-12 14:27 juham 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-10 14:43 juham 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 重塑→挤压→转移→重做 阅读全文
posted @ 2020-08-09 16:01 juham 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-22 17:54 juham 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-07-22 16:40 juham 阅读(193) 评论(0) 推荐(0) 编辑
摘要: import urllib.request def proxy_user(): proxy_list = [ {"https":""}, # {"https":"106.75.226.36:808"}, # {"https":"61.135.217.7:80"}, # {"https":"125.7 阅读全文
posted @ 2020-07-09 08:10 juham 阅读(119) 评论(0) 推荐(0) 编辑
摘要: import urllib.request def create_proxy_handler(): url = "https://blog.csdn.net/m0_37499059/article/details/79003731" #添加代理 proxy = { #免费的写法 "http":"" 阅读全文
posted @ 2020-07-09 08:08 juham 阅读(111) 评论(0) 推荐(0) 编辑
摘要: import urllib.request def handler_openner(): #系统的urlopen并没有添加代理的功能所以需要我们自定义这个功能 #安全 套接层 ssl第三方的CA数字证书 #http80端口# 和https443 #urlopen为什么可以请求数据 handler处理 阅读全文
posted @ 2020-07-09 08:04 juham 阅读(118) 评论(0) 推荐(0) 编辑
摘要: import urllib.request import random def load_baidu(): url = "http://www.baidu.com" user_agent_list = [ "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKi 阅读全文
posted @ 2020-07-09 08:03 juham 阅读(148) 评论(0) 推荐(0) 编辑