Add posting status for discordbots.org

This commit is contained in:
Jeremy Zhang
2018-01-05 09:21:25 +00:00
parent 01e1412af1
commit 71097eca8b
3 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import aiohttp
class DiscordBotsOrg(): # https://discordbots.org
def __init__(self, client_id, token):
self.url = "https://discordbots.org/api/bots/{}/stats".format(client_id)
self.token = token
async def post(self, count):
headers = {"Authorization": self.token}
payload = {"server_count": count}
async with aiohttp.ClientSession() as aioclient:
await aioclient.post(self.url, data=payload, headers=headers)