mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
6 lines
83 B
Python
6 lines
83 B
Python
import requests
|
|
|
|
|
|
def getserverstatus(url):
|
|
r = requests.get(url)
|
|
return r
|