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