惠州市网上挂牌交易系统

惠州市网上挂牌交易系统 为例

http://www.hdgtjy.com/index/Index4/

采集所有的挂牌交易信息

源码

  1. import urllib2
  2. import json
  3. fp = open('hdgtjy.json','w')
  4. for page in range(1,28):
  5. for i in range(5):
  6. try:
  7. send_headers = {'X-Requested-With': 'XMLHttpRequest', 'Content-Type': 'application/x-www-form-urlencoded'}
  8. request =urllib2.Request('http://www.hdgtjy.com/Index/PublicResults',data='page='+ str(page) +'&size=10',headers=send_headers)
  9. response = urllib2.urlopen(request)
  10. data = response.read()
  11. obj = json.loads(data)
  12. print obj['data'][0]['ADDRESS']
  13. except Exception,e:
  14. print e
  15. fp.write(data)
  16. fp.close()
  17. print 'end'

查看运行结果,感受一下。

案例(二)惠州市网上挂牌交易系统 - 图1