mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
7 lines
163 B
Python
7 lines
163 B
Python
import requests
|
|
|
|
a = requests.request("GET", "http://pikascript.com/package", params = {"name":"get-test"})
|
|
|
|
print(a.headers)
|
|
print(a.content_length)
|
|
print(a.text) |