1 Star 0 Fork 0

周凌志/爬虫作业

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lesson12 582 Bytes
一键复制 编辑 原始数据 按行查看 历史
周凌志 提交于 2021-11-24 02:34 . add lesson12.
import requests
import json
url = 'https://rest.jfh.com/prt-citystation/govIntention/getGovIntentionList'
header = {
'Content-Type': 'application/json;charset=UTF-8',
}
for k in range(1,11):
data = {
"pageSize":10,"pageNum":5,"order":"desc","sortBy":"publish_time","budgeAmountMin":"1000"
}
res = requests.post(url,headers = header,data = json.dumps(data))
print(res.status_code)
html = res.json()
for i in html['data']['govIntentionList']:
print(i['projectName'],i['budgetAmount'],i['purUnitName'],i['publishTime'])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-lingzhi1218/crawler-operation.git
git@gitee.com:zhou-lingzhi1218/crawler-operation.git
zhou-lingzhi1218
crawler-operation
爬虫作业
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385