pythonpost请求json⽂件_post请求获取json
sql server2012安装报错不建议⾃⼰⽤正则处理,基本所有的编程语⾔⾥都有json处理的库,⽐如在python中,可以这样做
import json
主页个人简介import urllib2
data = json.load(urllib2.urlopen("api.github/users/defunkt"))
上⾯的代码 使⽤get请求github的api,当然也可以使⽤post⽅法,可以使⽤requests这个库,更加⽅便
结果
{u'public_repos': 101, u'site_admin': True, u'subscriptions_url': u'api.github/users/defunkt/subscriptions',
u'gravatar_id': u'b8dbb1987e8e5318584865f880036796', u'hireable': True, u'id': 2, u'followers_url':手机版网页制作用什么软件
u'api.github/users/defunkt/followers', u'following_url':
u'api.github/users/defunkt/following{/other_user}', u'blog': u'chriswanstrath/', u'followers': 12921, u'location': u'San Francisco', u'type': u'User', u'email': u'chris@github', u'bio': u'', u'gists_url':
u'api.github/users/defunkt/gists{/gist_id}', u'company': u'GitHub', u'events_url':
培训班出来的程序员的忠告u'api.github/users/defunkt/events{/privacy}', u'html_url': u'github/defunkt', u'updated_at': u'2013-12-22T08:59:46Z', u'received_events_url': u'api.github/users/defunkt/received_events', u'starred_url':
u'api.github/users/defunkt/starred{/owner}{/repo}', u'public_gists': 284, u'name': u'Chris Wanstrath',
u'organizations_url': u'api.github/users/defunkt/orgs', u'url': u'api.github/users/defunkt',
u'created_at': u'2007-10-20T05:24:19Z', u'avatar_url':
u'gravatar/avatar/b8dbb1987e8e5318584865f880036796?
d=https%3A%2F%2Fidenticons.github%2Fc81e728d9d4c2f636f067f89cc14862c.png&r=x', u'repos_url':
u'api.github/users/defunkt/repos', u'following': 208, u'login': u'defunkt'}
>>> data["login"]
u'defunkt'
python请求并解析json数据>>>
如果使⽤requests模块
>>> payload = {'key1': 'value1', 'key2': 'value2'}
>>> r = requests.post("/post", data=payload)
linux 分盘>>>
{
...
"form": {
"key2": "value2",
"key1": "value1"
},
...
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论