摘要: import requests from bs4 import BeautifulSoup def get_soup(url): req = requests.get(url) req.encoding = 'utf-8' soup = BeautifulSoup(req.text, 'html.parser') return soup soup = get_so... 阅读全文
posted @ 2018-04-04 16:21 153刘宇 阅读(306) 评论(0) 推荐(0) 编辑