python学习
hoochon
这个作者很懒,什么都没留下…
展开
-
python爬虫学习系列之urllib(1)
python爬虫学习系列之urlliburllib.requesturllib.parseget请求请求头部post请求urllib.requestimport urllib.requesturl='http://www.baidu.com'response=urllib.request.urlopen(url)print(response.read().decode())#字符串...原创 2019-02-23 15:03:13 · 408 阅读 · 0 评论 -
python爬虫学习系列之正则、bs4、xpath、jsonpath
python爬虫学习系列之正则、bs4、xpath、jsonpath正则bs4xpathjsonpath原创 2019-02-23 17:01:32 · 797 阅读 · 0 评论 -
python爬虫学习-Selenium与PhantomJS
Seleniumselenium:浏览器自动化测试框架,是一个python的第三方库,对外提供的接口,可以操作你的浏览器,让浏览器完成自动化的操作。使用selenium:安装:pip install seleniumfind_element_by_id :根据id找节点find_element_by_name :根据name找节点find_element_by_xpath ...原创 2019-02-23 17:55:56 · 365 阅读 · 0 评论 -
python爬虫学习系列之requests
requests:官方文档:http://cn.python-requests.org/zh_CN/latest/get请求:requests.get(url)定制头部:requests.get(url,headers=headers,params=data)相应对象:r.text :字符串形式查看响应r.content :字节类型查看响应r.encoding :查看或设置编码类...原创 2019-02-23 18:11:13 · 161 阅读 · 0 评论 -
python爬虫学习-线程Thread
线程Thread面向过程:t=threading.Thread(target=sing,name=“唱歌”,args=(g,))target:线程启动后要执行的函数name:线程的名字,threading.current_thread().nameargs:主线程向子线程传递的参数t.start() 启动t.join() 让主线程等待子线程结束后再结束# 创建一个主线程,两个子线...原创 2019-02-25 15:46:01 · 402 阅读 · 0 评论