摘要:
#python学习-BeautifulSoup模块 BeautifulSoup 是Python的一个库,最主要的功能就是从网页爬取我们需要的数据。BeautifulSoup将 html 解析为对象进行处理,全部页面转变为字典或者数组,相对于正则表达式的方式,可以大大简化处理过程。 ##Beautif 阅读全文
摘要:
#python学习-requests模块 HTTP for Humans ##requests 方法理解 ###基本Get请求 //ex_1.py # -*- coding: utf-8 -*- #requests.get() import requests key = {'wd':'python语 阅读全文