Board logo

标题: [网络连接] 如何在指定网站搜索关键字并把搜索结果保存下来 [打印本页]

作者: 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 编辑
  1. # -*- coding: utf-8 -*-
  2. """
  3. Created on Thu Jun 28 14:46:56 2018
  4. @author: codegay
  5. python3 & 编辑器 == spyder3
  6. """
  7. import requests
  8. session = requests.Session()
  9. url = "http://www.yngp.com/bulletin.do?method=moreListQuery&current=1&rowCount=10000&searchPhrase=&sign=0&query_bulletintitle=造价&query_sign=1&flag=0&listSign=0&districtCode=all"
  10. httphead = {
  11.         'x-requested-with': 'XMLHttpRequest'
  12.         }
  13. res = session.get(url, headers=httphead)
  14. print(res.json())
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2