在做网络爬虫的时候会遇到json数据格式的数据包,如果返回的是一个json格式的文件,可以使用
Python Yaml包处理数据,不需要再使用正则表达式匹配了,使用实例如
https://maps-api-ssl.google.com/maps/suggest?q=hello
这个地址,我们需要query对应的数据项.
相关代码如下:
# -*- coding: utf-8 -*-
import yaml
import urllib2address = ‘https://maps-api-ssl.google.com/maps/suggest?q=hello‘
string_data = urllib2.urlopen(address).read().replace(‘:‘, ‘: ‘)
dict_data = yaml.load(string_data)
for item in dict_data[‘suggestion‘]:
print item[‘query‘]
使用Python Yaml包处理Json数据,布布扣,bubuko.com
时间: 2024-12-29 13:05:14