最近测试个东西需要有大量的随机地址信息,网上找到一个api可以生成地址信息,所以用python写了个小程序,通过循环访问api获取数据后打印出来,由于不是码农,所以只求能用,代码质量请忽略。
# coding=utf-8
import urllib2
import json
while True:
try:
html = urllib2.urlopen(r'http://api.sinchang.me/random/user',timeout=1)
hjson = json.loads(html.read())
print hjson['items']['mobile'],
print ",",
print hjson['items']['name'].encode('utf-8').strip(),
print ",",
print hjson['items']['address'].encode('utf-8').strip()
# break
except Exception as e:
print "Connect Timeout"
本文由 Yatfan Wong 创作,采用 知识共享署名4.0 国际许可协议进行许可
本站文章除注明转载/出处外,均为本站原创或翻译,转载前请务必署名
最后编辑时间为: 2020/03/07 00:21