FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
APIJSON-Demo/APIJSON-Python/test.py at master · loaderland/APIJSON-Demo · GitHub
loaderland
/
APIJSON-Demo
Public
forked from
APIJSON/APIJSON-Demo
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
APIJSON-Demo
/
APIJSON-Python
/
test.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
24 lines (19 loc) · 542 Bytes
Breadcrumbs
APIJSON-Demo
/
APIJSON-Python
/
test.py
Copy path
File metadata and controls
executable file
·
24 lines (19 loc) · 542 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
'
\n
URL: '
+
url
data
=
{
'[]'
: {
'User'
: {
'sex'
:
1
},
'count'
:
2
}
}
print
'
\n
Request:
\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
'
\n
Response:
\n
'
+
json
.
dumps
(
json
.
loads
(
response
.
read
()),
indent
=
2
)
Back
|
FazBrowse Home
|
New Git URL