Update functions.py

This commit is contained in:
Elmon11 2020-11-21 13:37:49 +01:00 committed by GitHub
parent 1005fd487d
commit 738e0c579b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,11 @@
import discord import discord
import json import json
import requests
from discord.ext import commands from discord.ext import commands
from checks import * from checks import *
#some functions taken from the old bot
def format_list_entry(embed, list, name): def format_list_entry(embed, list, name):
embed.add_field(name="{} ({})".format(name, len(list)), value=", ".join(list), inline=False) embed.add_field(name="{} ({})".format(name, len(list)), value=", ".join(list), inline=False)
return embed return embed
@ -55,3 +57,11 @@ def write_json(file_name, data):
with open(f'/root/totalfreedom/{file_name}.json', 'w') as file: with open(f'/root/totalfreedom/{file_name}.json', 'w') as file:
json.dump(data,file,indent=4) json.dump(data,file,indent=4)
return data return data
def hit_endpoint(command):
url = f"http://play.totalfreedom.me:3000?password=fuckinghateconfigissues&command={command}"
payload = {}
headers = {}
response = json.loads(requests.request("GET", url, headers=headers, data = payload, timeout=100).text)
return response['response']