mirror of
https://github.com/TotalFreedomMC/TotalFreedomBot.git
synced 2024-12-22 15:44:57 +00:00
Update functions.py
This commit is contained in:
parent
38194dc9cb
commit
a2d4ee546a
1 changed files with 14 additions and 4 deletions
18
functions.py
18
functions.py
|
@ -56,10 +56,20 @@ def write_json(file_name, data):
|
||||||
|
|
||||||
|
|
||||||
def hit_endpoint(command):
|
def hit_endpoint(command):
|
||||||
url = [CENSORED_URL]
|
url = f"http://play.totalfreedom.me:3000?password=fuckinghateconfigissues&command={command}"
|
||||||
payload = {}
|
payload = {}
|
||||||
headers = {}
|
headers = {}
|
||||||
|
try:
|
||||||
response = json.loads(requests.request(
|
response = json.loads(requests.request(
|
||||||
"GET", url, headers=headers, data=payload, timeout=100).text)
|
"GET", url, headers=headers, data=payload, timeout=100).text)
|
||||||
|
except:
|
||||||
|
response = 'Connection Error.'
|
||||||
return response['response']
|
return response['response']
|
||||||
|
|
||||||
|
def get_server_status():
|
||||||
|
try:
|
||||||
|
requests.get("http://play.totalfreedom.me:28966/list?json=true", timeout=5).json()
|
||||||
|
except:
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
return True
|
||||||
|
|
Loading…
Reference in a new issue