标题: [网络连接] 如何在指定网站搜索关键字并把搜索结果保存下来 [打印本页]
作者: lzloveyou 时间: 2018-6-28 10:13 标题: 如何在指定网站搜索关键字并把搜索结果保存下来
我是小白,觉得批处理应该能实现,所以特来请教。要实现搜索地址为 http://www.yngp.com/bulletin.do?method=moreList 比如搜索关键字 造价
然后把搜索结果带连接保存下来,不知道有大神能解决吗,多谢!
作者: codegay 时间: 2018-6-28 17:02
本帖最后由 codegay 于 2018-6-28 22:01 编辑
- # -*- coding: utf-8 -*-
- """
- Created on Thu Jun 28 14:46:56 2018
- @author: codegay
- python3 & 编辑器 == spyder3
- """
-
- import requests
-
- session = requests.Session()
-
- url = "http://www.yngp.com/bulletin.do?method=moreListQuery¤t=1&rowCount=10000&searchPhrase=&sign=0&query_bulletintitle=造价&query_sign=1&flag=0&listSign=0&districtCode=all"
-
- httphead = {
- 'x-requested-with': 'XMLHttpRequest'
- }
-
- res = session.get(url, headers=httphead)
-
- print(res.json())
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |