aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
* Client.send_file now properly closes the file-object.Rapptz2015-10-131-39/+33
* Add role colour and hoisting to edit_role.Rapptz2015-10-131-1/+3
* Client.send_message can now accept a string ID as the destination.Rapptz2015-10-131-2/+5
* Added send_file method.littleyoshi42015-10-111-0/+40
* Client.register now takes an invite URL or class.Rapptz2015-10-111-10/+13
* edit_profile now returns True or False depending on success.Rapptz2015-10-111-0/+3
* Remove get_channel from __getattr__ in Client.Rapptz2015-10-111-2/+1
* Use v3 of the Discord API.Rapptz2015-10-111-1/+1
* Make event based handlers first classHornwitser2015-10-061-33/+1
* Change behaviour of on_errorHornwitser2015-10-061-3/+2
* Add client register APIHornwitser2015-10-061-0/+37
* Reconnect when WebSocket diesHornwitser2015-10-061-0/+15
* Make dispatch multithreading safeHornwitser2015-10-061-12/+14
* Move socket and connection state out of ClientHornwitser2015-10-061-215/+278
* Add new event systemHornwitser2015-10-061-16/+34
* Fix bug with mentions not working.v0.6.3Rapptz2015-10-021-1/+1
* Check for 2xx range instead of specific status codes.Rapptz2015-10-021-20/+25
* Fix server attribute not being set in GUILD_MEMBER_ADD.v0.6.2Rapptz2015-10-021-1/+1
* Fix another logging errorRapptz2015-10-021-1/+1
* Fix an error with logging in the login method.v0.6.1Rapptz2015-09-271-1/+1
* Refactor websocket creation to its own function.Rapptz2015-09-251-34/+36
* Add edit_channel.Rapptz2015-09-251-0/+31
* Listen to CHANNEL_UPDATE events and add on_channel_updateRapptz2015-09-251-0/+8
* Move permission overwrite construction to the Channel constructor.Rapptz2015-09-251-27/+0
* PRESENCE_UPDATE now updates the user as well.Rapptz2015-09-251-1/+6
* Most functions should now return something more meaningful.Rapptz2015-09-241-4/+21
* Add TTS support for messages.Rapptz2015-09-201-1/+5
* accept_invite now works on some invite URLs.Rapptz2015-09-191-3/+17
* Remove duplicated create_channel function.Rapptz2015-09-191-24/+0
* Fix keep_alive running after logout()Hornwitser2015-09-191-15/+19
* Add support for logging.Rapptz2015-09-161-20/+54
* Add ability to edit or delete roles from a sever.Rapptz2015-09-131-0/+44
* Add utils.find helper function.Rapptz2015-09-131-13/+14
* Fix KeyError with events.v0.5.1Rapptz2015-09-051-2/+2
* Documentation fixes and version bump.v0.5.0Rapptz2015-09-051-1/+1
* Add the ability to accept invites.Rapptz2015-09-051-0/+11
* Add on_error event for doing something about uncaught exceptions.Rapptz2015-09-051-3/+4
* Remove owner_id from Server and use owner instead.Rapptz2015-09-041-1/+6
* Add on_member_update event.Rapptz2015-09-041-0/+17
* Add support for creating invites.Rapptz2015-09-041-0/+31
* Refactor parse_time into its own utils file.Rapptz2015-09-041-7/+9
* Use kwargs if the number of arguments needed is too many.Rapptz2015-09-041-0/+9
* Add ability to delete channels.Rapptz2015-09-041-0/+11
* Add the ability to create channels.Rapptz2015-09-041-0/+25
* Add support for editing your profile.Rapptz2015-09-041-0/+30
* Store email in the client as an attribute.Rapptz2015-09-031-0/+6
* Add the ability to kick, ban and unban users from a server.Rapptz2015-09-031-0/+35
* Add on_server_create and on_server_delete events.Rapptz2015-09-031-54/+66
* WebSocket gateway now properly uses the auth headers.Rapptz2015-09-031-21/+21
* Sandbox some events that didn't get sandboxed.Rapptz2015-09-031-2/+2