forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
executable file
·24 lines (19 loc) · 542 Bytes
/
test.py
File metadata and controls
executable file
·24 lines (19 loc) · 542 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import urllib2
import json
print '\n{APIJSON @ Python}'
url = 'http://apijson.cn:8080/get'
print '\nURL: ' + url
data = {
'[]': {
'User': {
'sex': 1
},
'count': 2
}
}
print '\nRequest:\n' + json.dumps(data, indent=2)
headers = {'Content-Type': 'application/json'}
request = urllib2.Request(url=url, headers=headers, data=json.dumps(data))
response = urllib2.urlopen(request)
print '\nResponse:\n' + json.dumps(json.loads(response.read()), indent=2)