aboutsummaryrefslogtreecommitdiff
path: root/discord/asset.py
Commit message (Collapse)AuthorAgeFilesLines
* Drop superfluous zero in version related changes in the documentationRapptz2020-01-211-1/+1
|
* Bump copyright year to 2020Rapptz2020-01-191-1/+1
| | | | Closes #2510
* removed parameter section in Asset.readZomatree2020-01-151-7/+0
|
* Adjust BASE urls to have no trailing slash (consistency)Devon R2019-11-151-6/+6
|
* Return invites as https, various URL normalizationDevon R2019-11-151-8/+10
|
* Support team members data in application infofourjr2019-06-291-0/+8
|
* Update Sphinx to 2.1.2Rapptz2019-06-281-1/+6
|
* Improve documentationNCPlayz2019-06-071-0/+7
|
* Add support for animated guild icons.Rapptz2019-06-041-1/+21
|
* Add Asset.read() to retrieve assets into bytes objectsslice2019-04-201-22/+40
|
* Add equality comparisons between two assets and hashing an asset.Rapptz2019-04-131-0/+21
|
* Fix various bugs with Asset._url None handling.Rapptz2019-04-091-2/+4
|
* Redesign asset retrieval in the library.NCPlayz2019-04-061-0/+157
Most assets now return a new class named `Asset`. This allows for the assets to be consistently saved via a `save` method instead of special casing for `Attachment`. `AppInfo` is no longer a namedtuple it is a fully documented dataclass, as well as having the state attached to it. Fixes #1997