mirror of
https://github.com/EstrellaXD/Auto_Bangumi.git
synced 2026-05-01 05:51:27 +08:00
14 lines
192 B
Python
14 lines
192 B
Python
import re
|
|
|
|
import requests
|
|
|
|
url = "http://192.168.200.2"
|
|
try:
|
|
r = requests.get(url)
|
|
print(r.content)
|
|
except ConnectionError:
|
|
print("e")
|
|
except KeyboardInterrupt:
|
|
print("end")
|
|
|