摘要:
from bs4 import BeautifulSoup import re from urllib import request req = request.urlopen("https://en.m.wikipedia.org/wiki/Main_Page").read().decode("utf-8"); soup = BeautifulSoup(req,"html.parser");... 阅读全文
posted @ 2017-12-11 22:11 sunshine_blog 阅读(1652) 评论(0) 推荐(0) 编辑