mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
9 lines
128 B
Python
9 lines
128 B
Python
import requests
|
|
|
|
a = requests.request("GET", "http://pikascript.com/")
|
|
|
|
print(a.headers)
|
|
print(a.content_length)
|
|
print(a.text)
|
|
|