wiseyu
一个默默无闻的搬运工
摘要: from urllib import request import json #---------获取网页源代码-------------- def getHtml(url): response=request.urlopen(url) html=response.read() html=html.decode("utf-8") return html #--... 阅读全文
posted @ 2018-12-19 10:37 wiseyu 阅读(336) 评论(0) 推荐(0) 编辑

Top