Python爬虫入门一(记录点滴成长)

来源:互联网 发布:最好的电视直播软件 编辑:程序博客网 时间:2024/06/05 15:32

1。最近又开始学习爬虫了,重新点燃兴趣。
2。写下第一个爬虫小程序,慢慢完善,记录下自己的成长。
3。
from urllib import request
response=request.urlopen("https://mp.weixin.qq.com/cgi-bin/loginpage?t=wxm2-login&lang=zh_CN")
html=response.read()
html=html.decode("utf-8")
print(html)

原创粉丝点击