mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-19 18:24:51 +08:00
8 lines
118 B
Python
8 lines
118 B
Python
import requests
|
|
|
|
url = "https://pass.tmall.com/add"
|
|
|
|
response = requests.request("GET", url)
|
|
|
|
print(response.headers)
|