log= ''
passwd = ''
def main():
link = 'https://discord.com/api/v9/auth/login'
headers = {'Content-Type': 'application/json' }
data = {
'login':log,
'password':passwd}
response = requests.post(link, json=data,headers=headers).text
print(response)