python 读取数据接口 ip 字段插入本地文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读取数据接口 ip 字段插入本地文件相关的知识,希望对你有一定的参考价值。
#!/usr/bin/pythonimport urllib2import urllibimport jsonweatherHtml = urllib.urlopen('http://172.17.37.93:1949/machine/select') weatherHtml1 = weatherHtml.read() weatherJSON = json.loads(weatherHtml1) print weatherJSONout=open('/root/cmdb_ip','w') for i in weatherJSON["data"]: abc = i['privateIpAddress'] + " " for key in abc: out.write(key)
以上是关于python 读取数据接口 ip 字段插入本地文件的主要内容,如果未能解决你的问题,请参考以下文章
通过python接口获取的数据怎么存放到oracle数据库里
C# UDP 客户端读取多播 IP(本地接口),并将单播 UDP 发送到 ***