aboutsummaryrefslogtreecommitdiff
path: root/discord/invite.py
Commit message (Collapse)AuthorAgeFilesLines
* Add support for guild bannersSnowyLuma2019-03-091-3/+23
| | | | | | | | Document banner attribute of Guild and Invite Update discord/utils.py Co-Authored-By: SnowyLuma <[email protected]>
* Fix missing importsRapptz2019-02-121-1/+3
|
* Expose more information from partial invites, along with counts.Rapptz2019-02-121-14/+156
| | | | | | | | | | | | | This adds the following information. * `PartialInviteGuild` to replace `Object` patching * `PartialInviteChannel` to replace `Object` patching * Invite.approximate_member_count and Invite.approximate_presence_count The new partial objects provide better documentation on what is expected when you fetch random invites. Fixes #1830
* Bumped copyright years to 2019.Dante Dam2019-01-281-1/+1
|
* [lint] Fix incorrect and inconsistent whitespaceHornwitser2018-08-221-2/+2
| | | | Adjust whitespace to be consistent with the rest of the library.
* [lint] Remove unused importsHornwitser2018-08-221-2/+0
| | | | Left over from various refactoring and rewrites.
* Add support for splash(_url) to invitesDismissedGuy2018-08-221-0/+6
|
* Drop support for Python 3.4 and make minimum version 3.5.2.Rapptz2018-06-101-3/+2
|
* Fixes various documentation errors/inconsistenciesSteve C2018-05-181-0/+2
| | | | Mostly dealing with permissions, also fixes Raw Events inclusion.
* Add intersphinxTobotimus2018-01-061-6/+6
|
* Fix __hash__ for Invite objects.Rapptz2017-09-041-0/+3
|
* Remove Invite.accept.Rapptz2017-07-081-19/+0
|
* Make supported operations stand out more than attributes.Rapptz2017-05-201-8/+10
|
* Kill remaining references to discord.Channel in documentation.Rapptz2017-05-191-2/+2
|
* Use describe instead of tables for supported operations.Rapptz2017-05-131-13/+15
|
* Add support for audit log reasons.Rapptz2017-05-071-2/+7
| | | | Most routes now have a 'reason' keyword argument.
* Fix support for instant invites.Rapptz2017-02-081-4/+59
|
* Fix parsing of Invite.userRapptz2017-01-301-2/+2
|
* Update copyright year to 2017.Rapptz2017-01-201-1/+1
|
* Add useful repr to all data classes.Rapptz2017-01-031-0/+3
|
* Rename Server to Guild everywhere.Rapptz2017-01-031-5/+5
|
* Stateful Message and remove Invite.xkcd since it is removed.Rapptz2017-01-031-15/+12
|
* Begin working on the rewrite.Rapptz2017-01-031-17/+18
|
* Update license of files to 2016.Rapptz2016-01-041-1/+1
|
* Add __slots__ where appropriate to data classes.Rapptz2015-12-191-0/+4
|
* Most data classes now support hashing.Rapptz2015-12-171-2/+4
|
* All data classes now support !=, == and str(obj).Rapptz2015-12-131-1/+17
|
* Switch to NumPy style documentation.Rapptz2015-12-041-29/+18
|
* Add Client.get_invite to turn a URL to an Invite object.Rapptz2015-11-261-2/+8
|
* Add the ability to accept invites.Rapptz2015-09-051-1/+7
|
* Add support for creating invites.Rapptz2015-09-041-0/+86