摘要: import urllib.request import re import ssl # 处理https请求 import time import os # 创建目录用 def get_html(url): page = urllib.request.urlopen(url) html = page.read() # 返回的是 需要转码为字符串类型 html ... 阅读全文
posted @ 2018-11-30 11:19 等那片花海 阅读(215) 评论(0) 推荐(0) 编辑