aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Switch URLs from Client.delete_server and Client.leave_server.Rapptz2016-02-231-2/+2
* Add Client.delete_server.Rapptz2016-02-231-2/+29
* Client.send_file can now send content along with the message.Rapptz2016-02-181-6/+16
* Fix NameError issue in Client.send_file.Rapptz2016-02-171-4/+2
* Switch to using ClientSession objects for aiohttp v0.21Rapptz2016-02-151-42/+42
* Fix case when no chunks are necessary.Rapptz2016-02-141-1/+4
* Remove request_offline option.Rapptz2016-02-141-12/+3
* Offline members are now added by default automatically.Rapptz2016-02-141-7/+80
* Update member references when status changes.Rapptz2016-01-301-3/+7
* Force content-type for file uploads.Rapptz2016-01-291-2/+2
* Add and remove some of the on_socket_* events.Rapptz2016-01-251-5/+12
* Support changing owners in Client.edit_server.Rapptz2016-01-221-1/+11
* Change docstring for Client.send_message to point to a valid property.Rapptz2016-01-181-1/+1
* Update voice channel if we move to different channels.Rapptz2016-01-171-0/+4
* Fix IndexError in Client.move_member.Rapptz2016-01-151-1/+1