aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix issue with author changing typemegamit2015-09-021-1/+1
* Remove unnecessary comment.Rapptz2015-08-281-1/+0
* Python3 import fixes.Rapptz2015-08-281-6/+6
* Handle GUILD_MEMBER_REMOVE/GUILD_MEMBER_ADD events.Rapptz2015-08-271-6/+19
* Remove no_offline_members optionRapptz2015-08-271-21/+5
* on_status now takes only a member.Rapptz2015-08-271-7/+11
* Give members their server as an attribute.Rapptz2015-08-271-1/+6
* Members now have status info.Rapptz2015-08-271-0/+16
* Move websocket hub to the new gateway.Rapptz2015-08-261-2/+10
* Parse roles in the member building.Rapptz2015-08-261-1/+9
* Parse permission_overwrites in every Channel instance.Rapptz2015-08-261-3/+31