aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
...
* Fix bug with uploading file-like objects.Rapptz2016-06-121-2/+2
* Fix bug with logging in with email and password.Rapptz2016-06-121-1/+1
* Fix bug with edit_role and create_role not working.Rapptz2016-06-121-1/+5
* Rewrite HTTP handling significantly.Rapptz2016-06-121-447/+98
* Change HTTPException to only take a single parameter.Rapptz2016-06-121-1/+0
* Add Client.application_info to retrieve the current app info.Rapptz2016-06-101-0/+39
* Add Client.move_channel to change channel positions.Rapptz2016-06-071-3/+62
* Add `bot` keyword argument to login via static token.Rapptz2016-06-031-10/+21
* Add Role.server attribute.Rapptz2016-06-011-2/+1
* Add RESUME support.Rapptz2016-06-011-3/+4
* Allow datetime in limit parameters for purge_fromHarmon7582016-05-311-4/+11
* Allow to edit mentionable property in Client.edit_role.Rapptz2016-05-271-1/+4
* Documentation fixes for role related functions.Rapptz2016-05-231-12/+4
* Close voice connections before closing the websocket.Rapptz2016-05-221-3/+9
* Fix purge_from to use LogsFromIterator.create (#219)Harmon2016-05-201-1/+1
* Add support for voice channel user limits.Rapptz2016-05-201-1/+13
* logs_from improvements for after param.Khazhismel Kumykov2016-05-201-10/+14
* Allow datetime in limit parameters for logs_from.Khazhismel Kumykov2016-05-201-6/+15
* Retry send_file on 502.Khazhismel Kumykov2016-05-201-9/+11
* Add move_roleKhazhismel Kumykov2016-05-201-0/+56
* Add example for Client.purge_fromRapptz2016-05-121-1/+12
* Add clarification for purge_from and delete_messagesTwentysix2016-05-111-2/+8
* Change second run_until_complete to not be empty.Rapptz2016-05-101-1/+4
* Force encoding of text retrieval functions to use utf-8.Rapptz2016-05-101-16/+16
* Fix issue with Client.purge_from not deleting the 101st message.Rapptz2016-05-101-7/+5
* Add Client.purge_from as a high level interface around bulk delete.Rapptz2016-05-101-1/+76
* Add Client.delete_messages for bulk delete.Rapptz2016-05-101-0/+42
* Add a TimeoutError if VoiceClient.connect fails.Rapptz2016-05-061-1/+10
* Working multi-server voice support.Rapptz2016-05-011-25/+48
* Fix changing own nickname without manage_nicknamesKhazhismel Kumykov2016-04-301-1/+6
* Add ability to change nicknames via Client.change_nicknameRapptz2016-04-291-0/+39
* Refactor voice websocket into gateway.pyRapptz2016-04-271-90/+18
* Begin working on gateway v4 support.Rapptz2016-04-271-143/+18
* Properly close session if client failed to startDaniel2016-04-221-2/+4
* Fix deadlock issue when joining large guilds.Rapptz2016-04-151-2/+0
* Add a None check when setting status in Client.change_status.Rapptz2016-04-141-2/+6
* Retry if send_message or edit_message encounter a 502.Rapptz2016-04-141-2/+9
* Yield from parser coroutine instead of making it a task.Rapptz2016-04-121-1/+1
* Fix Client.login documentation to showcase email/password login.Rapptz2016-04-111-1/+1
* Check the right status code for improper token being passed.Rapptz2016-04-111-1/+1
* Allow Client.edit_profile to work with bot accounts.Rapptz2016-04-091-10/+26
* Change all email/password pair examples to use token.Rapptz2016-04-081-1/+1
* Change login, start and run to be variadic.Rapptz2016-04-081-43/+59
* Fix unclosed response and document token login a bit better.Rapptz2016-04-081-3/+4
* Add support for token login (for bots)Max Gurela2016-04-081-0/+18
* Clarify that Client.close is a coroutine.Rapptz2016-03-291-2/+2
* Add support for aiohttp connectors.Rapptz2016-03-071-1/+7
* Fix crashing when an unhandled event occurs.Rapptz2016-03-061-4/+4
* Move chunking logic back into ConnectionState.Rapptz2016-03-061-28/+5
* Ensure the auth cache file is not world readable.Nelson Minar2016-03-021-1/+1