Check and handle login failure in the examples provided for using this library. This is a common error condition that should be handled by any script using this library.
22 lines
452 B
Python
22 lines
452 B
Python
import discord
|
|
|
|
client = discord.Client()
|
|
client.login('email', 'password')
|
|
|
|
if not client.is_logged_in:
|
|
print('Logging in to Discord failed')
|
|
exit(1)
|
|
|
|
@client.event
|
|
def on_ready():
|
|
print('Connected!')
|
|
print('Username: ' + client.user.name)
|
|
print('ID: ' + client.user.id)
|
|
|
|
@client.event
|
|
def on_message(message):
|
|
if message.author.id != client.user.id:
|
|
client.send_message(message.channel, message.content)
|
|
|
|
client.run()
|