aboutsummaryrefslogtreecommitdiff
path: root/discord/client.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Client.invites_from now returns a list instead of a generator.Rapptz2016-01-141-13/+12
* Add support for `async for` in Client.logs_from.Rapptz2016-01-141-33/+47
* Fix Client.remove_roles to actually remove roles.Rapptz2016-01-101-2/+5
* Change order of documentation by source declaration.Rapptz2016-01-081-178/+178
* Document the breaking change with the new dictionary storage change.Rapptz2016-01-081-2/+2
* Document how Client.run should be the last function to call.Rapptz2016-01-081-0/+7
* document public get_ methods and make others privateSteven Berler2016-01-081-3/+7
* performance improvementsSteven Berler2016-01-081-6/+5
* Add Message.nonce attribute.Rapptz2016-01-071-1/+3
* Documentation fixes to quiet Sphinx warnings.Rapptz2016-01-071-3/+3
* Update license of files to 2016.Rapptz2016-01-041-1/+1
* Revert "Use super() in classes that could be subclassed."Rapptz2016-01-041-1/+0
* Use super() in classes that could be subclassed.Rapptz2016-01-041-0/+1
* Change permissions to remove the can_ prefix.Rapptz2016-01-031-2/+2
* Remove print statement from bytes check.Rapptz2016-01-011-1/+0
* Implement compressed READYRapptz2016-01-011-1/+10
* Actually send the payload data in Client.create_serverRapptz2015-12-311-1/+12
* Fix issue with add_roles and friends not working.Rapptz2015-12-301-2/+2
* Add logs to help debug some voice data.Rapptz2015-12-301-0/+2
* Maintain order in role related functions.Rapptz2015-12-301-9/+16
* Changed cache check to be the login endpoint itself.Rapptz2015-12-291-19/+5
* Fix indentation errorRapptz2015-12-291-1/+1
* Add ability to move members to a different voice channel.Rapptz2015-12-291-0/+43
* Remove Client.voice_channelRapptz2015-12-291-4/+3
* Client.join_voice_channel now accepts an Object.Rapptz2015-12-291-0/+3
* Simplify parser event check with hasattr rather than tuples.Rapptz2015-12-291-9/+3
* Add missing ` in documentation for create_serverRapptz2015-12-291-1/+1