- 博客(4)
- 收藏
- 关注
原创 python对时间格式的操作
python时间转换1. 获取当前时间import timeymd = time.strftime("%Y-%m-%d", time.localtime())ymdhms = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())print(ymd)print(ymdhms)print(type(ymd), type(ymdhms))结果2020-10-232020-10-23 13:45:48<class ‘str’>
2020-10-23 14:12:24 585 1
原创 爬取知乎发现最新专题内容
from pyquery import PyQuery as pqimport requestsurl = 'https://www.zhihu.com/explore'headers = { 'user-agent': 'Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36', 'referer': 'http
2020-08-25 10:38:05 206
原创 爬虫相关知识之CSS选择器
CSS选择器列子描述.intro选择class=‘intro’的所有节点#name选择id=‘name’的所有节点*选择所有节点p选择所有p节点div,p选择所有div节点和p节点div p选择div节点内部的所有p节点div>p选择父节点为div的所有p节点div+p选择紧接在div节点之后的所有p节点[target]选择带有target属性的所有节点[target=blank]选择属性target=‘b
2020-08-25 10:37:18 170
原创 python爬虫笔记之urllib库的简单使用
发送请求1.urlopen()请求百度首页:import urllib.requestresponse = urllib.request.urlopen('http://www.baidu.com')print(response.read().decode('utf-8'))print(type(response))<class ‘http.client.HTTPResponse’>response是一个HTTPResponse类型的对象,主要包含read(),readi
2020-08-19 09:11:24 216
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人