aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
...
* Fix NameError with itertools in client.Rapptz2015-12-161-0/+1
* Cast Retry-After header into a float.Rapptz2015-12-151-1/+1
* Add a way to get all active invites from a server.Rapptz2015-12-151-0/+41
* Add a way to get bans from a server.Rapptz2015-12-151-0/+34
* Client.run now does cleanup when KeyboardInterrupt is encountered.Rapptz2015-12-141-18/+46
* Editing profile now writes to the cache.Rapptz2015-12-131-37/+51
* Change the login cache check call to be the gateway retrieval.Rapptz2015-12-131-3/+13
* avoid potential bug when creating new private msgsSteven Berler2015-12-131-4/+5
* Remove uses of ClientSession.Rapptz2015-12-131-37/+32
* Client.logout now properly cleans up the response.Rapptz2015-12-131-0/+1
* Implement cache of login credentials.Rapptz2015-12-131-3/+49
* Client.login no longer calls resp.json()Rapptz2015-12-121-2/+1
* Fix bug where PMs would be sent to the wrong person.Rapptz2015-12-121-4/+5
* Fix send_file to actually work with aiohttp.Rapptz2015-12-121-14/+10
* Proper keyword argument for send_fileRapptz2015-12-121-1/+1
* Implement fix for future rate limiting change in discord.Rapptz2015-12-121-4/+16
* Websocket now uses the event loop passed in.Rapptz2015-12-121-1/+1
* logs_from now works again with limit > 100.Rapptz2015-12-121-14/+27
* Close the ClientSession in __del__.Rapptz2015-12-101-0/+4
* Add missing Role import in Client.Rapptz2015-12-091-0/+1
* I'm being forced to change the user agent string again.Rapptz2015-12-091-1/+1
* Modify User-Agent header to meet React's requirements.Rapptz2015-12-091-1/+3
* Client now keeps a reference to the VoiceClient constructed.Rapptz2015-12-091-9/+22
* Add discord.version_infoRapptz2015-12-091-0/+5
* Clear up documentation on passing discord.ObjectRapptz2015-12-091-2/+5
* Add Client.wait_for_messageRapptz2015-12-091-0/+136
* Add OpusNotLoaded exception and opus.is_loaded utility function.Rapptz2015-12-081-0/+2
* Explicitly close responses that don't get read.Rapptz2015-12-081-0/+15
* Working voice sending implementation.Rapptz2015-12-081-1/+2
* Work on connecting to a voice channel.Rapptz2015-12-071-20/+105
* Use @me endpoint for Client.start_private_messageRapptz2015-12-061-1/+1
* Forced keyword argument for allow/deny in edit_channel_permissionsRapptz2015-12-061-2/+2
* Handle GUILD_UPDATERapptz2015-12-061-4/+3
* Documentation fixes in Client.connect.Rapptz2015-12-051-2/+4
* Add role management functions.Rapptz2015-12-051-0/+328
* Add Client.delete_invite.Rapptz2015-12-051-3/+33
* Add Client.start and Client.run shortcuts.Rapptz2015-12-051-0/+22
* Add _is_logged_in to the constructor.Rapptz2015-12-051-0/+1
* Add invite management functions.Rapptz2015-12-051-0/+134
* Add server management commands.Rapptz2015-12-041-7/+151
* Add enumerators instead of strings.Rapptz2015-12-041-5/+8
* Add channel management functionsRapptz2015-12-041-0/+121
* Add member management functions.Rapptz2015-12-041-114/+365
* Move async_client.py to client.pyRapptz2015-12-041-1213/+530
* Don't silently swallow ValueError thrown from on_channel_delete.Rapptz2015-11-301-1/+2
* Fix multiple CHANNEL_DELETE. Fixes #51.Rapptz2015-11-301-2/+5
* Use copy.copy instead of copy.deepcopy for on_message_edit.Rapptz2015-11-301-1/+1
* on_member_update now takes in the older member state as a parameter.Rapptz2015-11-301-5/+5
* on_status event now has the old game ID and old status as parameters.Rapptz2015-11-301-1/+3
* Miscellaneous documentation fixes.Rapptz2015-11-301-1/+1