1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/discord.py

17 lines
561 B
Python
Raw Normal View History

import filemanager
import requests
# No, non ci sto nemmeno più provando a scrivere decentemente il bot. E' una schifezza e andrebbe rifatto da capo.
def getwidgetdata(token):
r = requests.get("https://discordapp.com/api/servers/{0}/widget.json".format(token))
if r.status_code == 200:
2016-07-19 11:37:19 +00:00
return r.json()
else:
# Sì, dovrei fare una DiscordException
raise Exception("Qualcosa di discord non va")
2016-09-04 18:24:58 +00:00
def getchannelname(r, id):
for channel in r['channels']:
if id == channel['id']:
return channel['name']