aboutsummaryrefslogtreecommitdiff
path: root/discord/utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
|
* Allow uploading of GIFs for users.SunDwarf2017-01-081-0/+2
| | | | | | | Discord Nitro accounts can upload GIFs as avatars, so the image mimetype checker code should check for the GIF magic number too. Signed-off-by: SunDwarf <[email protected]>
* Rename Server to Guild everywhere.Rapptz2017-01-031-10/+10
|
* Switch IDs to use int instead of strRapptz2017-01-031-3/+10
|
* Add support for "Do Not Disturb" and "Invisible" statuses.Rapptz2016-09-261-0/+16
| | | | | This deprecates Client.change_status in favour of the newer and more correct Client.change_presence.
* Remove unused verify response function.Rapptz2016-06-121-18/+0
|
* Change HTTPException to only take a single parameter.Rapptz2016-06-121-5/+4
|
* Allow datetime in limit parameters for logs_from.Khazhismel Kumykov2016-05-201-0/+18
| | | | Add time_snowflake to convert a datetime to a "snowflake".
* Force encoding of text retrieval functions to use utf-8.Rapptz2016-05-101-2/+2
| | | | Closes #207
* Add compatibility layer for `run_coroutine_threadsafe`.Rapptz2016-04-251-4/+0
| | | | | This is a breaking change, since discord.utils.create_task is moved to discord.compat.create_task.
* Add optional redirect_uri parameter to utils.oauth_urlcookie2016-04-181-1/+6
|
* Add optional server parameter to utils.oauth_urlKhazhismel Kumykov2016-04-151-2/+6
|
* Add utility function for generating OAuth2 urls.Rapptz2016-04-081-0/+19
|
* Clean up documentation of utils.snowflake_timeRapptz2016-03-061-3/+1
|
* Add util method to extract creation date from discord idsKhazhismel2016-03-061-0/+7
|
* HTTPException now has a text attribute if JSON is not available.Rapptz2016-01-251-5/+11
|
* Documentation fixes to quiet Sphinx warnings.Rapptz2016-01-071-1/+1
|
* Add __slots__ for missing classes that didn't have it.Rapptz2016-01-061-0/+22
|
* Update license of files to 2016.Rapptz2016-01-041-1/+1
|
* Maintain order in role related functions.Rapptz2015-12-301-0/+5
|
* utils.get now supports nested attribute retrieval.Rapptz2015-12-301-3/+15
|
* Clean-up documentation to use NumPy style docs on remaining classes.Rapptz2015-12-161-3/+8
|
* Make more things into properties.Rapptz2015-12-161-0/+15
| | | | | | A lot of the expensive getters were transformed into cached properties instead. A lot of things that were properties were transformed into properties as well.
* Add discord.utils.get helper.Rapptz2015-12-131-0/+46
|
* Work on connecting to a voice channel.Rapptz2015-12-071-0/+4
|
* Add server management commands.Rapptz2015-12-041-0/+7
|
* Add Forbidden and NotFound exceptions.Rapptz2015-12-041-2/+7
|
* Begin working on asyncio port.Rapptz2015-12-041-3/+10
|
* Revert "GIF support for avatars"Rapptz2015-11-261-2/+0
| | | | This reverts commit 9a5bb439ec9f6ab5d2fce7567452ca310736d688.
* GIF support for avatarsRapptz2015-11-261-0/+2
|
* Add support for uploading avatars.Rapptz2015-11-261-1/+9
|
* Move _null_event and _verify_successful_response to utilsRapptz2015-11-261-0/+10
| | | | They might be used in other files in the future.
* Add utils.find helper function.Rapptz2015-09-131-0/+23
|
* Refactor parse_time into its own utils file.Rapptz2015-09-041-0/+34