随笔分类 -  Python爬虫

Python爬虫
摘要:import json import re import requests from requests import RequestException def get_one_page(url): try: response = requests.get(url) if response.status_code == 200: ... 阅读全文
posted @ 2018-12-20 19:51 布尔bl 阅读(388) 评论(0) 推荐(0)