aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Server members are now their own class that subclass Users.Rapptz2015-08-261-3/+3
* Fix error in start_private_message.Rapptz2015-08-261-2/+2
* Fix issue with some MESSAGE_UPDATE events.v0.2.1Rapptz2015-08-241-8/+15
* Add support for creating or deleting channels from the client.Rapptz2015-08-241-2/+31
* Add logout support and on_disconnect event.Rapptz2015-08-241-2/+13
* Add support for channel creation events.Rapptz2015-08-231-2/+16
* Add on_channel_delete event.Rapptz2015-08-231-0/+10
* Sandbox events so exceptions being thrown don't break the client.Rapptz2015-08-231-4/+10
* Handle user update events.Rapptz2015-08-231-0/+2
* Add on_status event.Rapptz2015-08-231-2/+19
* Fix documentation example issue.Rapptz2015-08-231-1/+2
* Use v2 of the Discord API.Rapptz2015-08-221-1/+2
* Rename project from pydiscord to discord.pyRapptz2015-08-221-2/+2
* Some documentation warning fixes.Rapptz2015-08-211-3/+3
* Add logs_from function to get channel logs from a channel.Rapptz2015-08-211-0/+26
* Add the ability to edit messages.Rapptz2015-08-211-8/+36
* Add on_message_edit event.Rapptz2015-08-211-2/+19
* Add the ability to delete messagesRapptz2015-08-211-0/+9
* Return the message created when calling send_messageRapptz2015-08-211-0/+6
* Fix heartbeat interval bug.Rapptz2015-08-211-4/+20
* Add on_message_delete event and Client.messages attribute.Rapptz2015-08-211-2/+23
* Initial commitRapptz2015-08-211-0/+280