Sebastian Law
b4b953bfc6
Fix various inconsistencies within the documentation ( #5067 )
5 years ago
Rapptz
66c6be50d8
Prepare for the discord.com domain rename
5 years ago
Rapptz
8ff285fcbc
Documentation fixups for allowed mentions
5 years ago
Rapptz
d853a57e86
Rename allowed mention parameters to allowed_mentions
5 years ago
Rapptz
481b335f2d
Fix various implementation bugs with allowed mentions
5 years ago
Rapptz
041785937e
Add support for configuring allowed mentions per message or bot wide.
5 years ago
Sebastiaan Zeeff
59ed908ee2
Fix invalid format specifier in PartialWebhookState.__getattr__
The message for the AttributeError raised by the __getattr__ method of
the PartialWebhookState class is formatted using `str.format`. However,
the placeholder contained a stray ":" before the !r specifier. This
caused a ValueError("Invalid format specifier") to be raised whenever
this method was called in lieu of the AttributeError that is intended
to be raised.
5 years ago
Rapptz
4cf5f792d4
Fix Webhook.send returning an empty string when wait=False
5 years ago
Harmon
6f9793fe5e
Fixes and improvements for v1.3 documentation
* Add missing versionadded strings for v1.3
* Add missing versionchanged string for Message.edit
* Consistently use versionadded for attributes
* Consistently use versionchanged for parameters
* Use versionchanged for Bot.is_owner
* Fix references in v1.3 changelog
* Improve grammar in v1.3 changelog
5 years ago
Rapptz
eddbe27f2e
Fix out of order files being sent in webhooks when there are 10 files.
5 years ago
Rapptz
6071607176
Bump copyright year to 2020
Closes #2510
5 years ago
NCPlayz
f554819506
Implement `Webhook.type`
5 years ago
Rapptz
a6f61dcbde
Fix all deprecation warnings for 3.8
5 years ago
Devon R
bf9b9c5879
Adjust BASE urls to have no trailing slash (consistency)
5 years ago
Devon R
f5ebf42e1f
Return invites as https, various URL normalization
5 years ago
NCPlayz
dab2519a09
Implement `TextChannel.follow()`
6 years ago
Xua
4c3e53edf4
Fix webhooks not re-raising after retries run out
6 years ago
Rapptz
45375364b7
Fix breakage with webhook tokens being missing.
6 years ago
NCPlayz
3c9bcc2851
Improve documentation
6 years ago
Rapptz
fcf02414fe
Fix stray colon in Asset related docstrings
6 years ago
Vexs
bf5b267c55
Correct the documentation for methods and properties that return Assets
6 years ago
Rapptz
8206982e79
Don't overwrite data parameter in webhooks.
Fixes #2140
6 years ago
Rapptz
919dbcafb3
Consistent use of __all__ to prevent merge conflicts.
6 years ago
Rapptz
f71fd33eba
Fix UnboundLocalError when RequestsWebhookAdapter raises an error.
6 years ago
NCPlayz
be227ebcf0
Redesign asset retrieval in the library.
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
6 years ago
Rapptz
548b9d5693
Double underscore HTTPClient's internal session.
6 years ago
NCPlayz
fb02191b80
Organise documentation
6 years ago
Rapptz
5e65ec978c
Take back ownership of files from aiohttp for retrying requests.
Fix #1809
6 years ago
Rapptz
c960465366
Mock a ConnectionState object to fix wait=True errors in webhooks.
Fixes #1898
6 years ago
Rapptz
311788c7cb
Properly clean-up file objects when necessary instead of instantly.
Fix #1770
6 years ago
Bryan Forbes
e2478b17c9
Bump aiohttp requirement and fix AsyncWebhookAdapter
6 years ago
Dante Dam
9656a21ebe
Bumped copyright years to 2019.
6 years ago
Dice
33dc3411ac
Fix Webhook states for stateful objects
6 years ago
Chris Rrapi
dd41dac680
Fix AttributeError in webhook.send
6 years ago
Terrance
a105f8b8cc
Webhooks: add support for multi-file upload
`Webhook.send()` now accepts a `files` kwarg holding a list of `File`
objects, which are included in the HTTP request as `file1`, `file2` and
so on.
This is an undocumented feature of the Discord API, but is analogous
with the client's sending of messages with multiple files.
7 years ago
Hornwitser
efb4ff850e
[lint] Fix import order
Reorder imports to be consistenly grouped by standard library, third
party library, and local modules in that order thoughout the library.
7 years ago
Rapptz
5c24e69cf2
Fix up the Sphinx strings causing warnings.
7 years ago
Hornwitser
c557ee33ca
[lint] Fix types used for __slots__ and __all__
Stay consistent with the rest of the library and use lists for module
__all__ values and tuples for class __slots__ attributes.
7 years ago
Hornwitser
c8b49d37be
[lint] Fix incorrect and inconsistent whitespace
Adjust whitespace to be consistent with the rest of the library.
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago
Rapptz
eb5defed00
Fix Webhook.guild raising an AttributeError.
Fixes #1148
7 years ago
Tobotimus
3112e1c17e
Add intersphinx
7 years ago
Rapptz
30b5047b0e
Fix multipart sending for RequestsWebhookAdapter to work.
7 years ago
Rapptz
5013102574
Fix Webhook.delete not working.
8 years ago
rooni
415ca9a774
Add webhook.url
8 years ago
Rapptz
8912625428
Fix docstrings for Webhook.send
8 years ago
Rapptz
99bd595f5e
Rename webhook parameters to payload to avoid shadowing.
The old names clashed with the `json` module.
8 years ago
Rapptz
e7d3085445
Webhook URLs can have dashes and underscores.
8 years ago
Steve C
7ee5dc22fb
Fix a couple docstrings
8 years ago
Rapptz
8eb6fa0329
Fix multi-part sending with aiohttp in webhooks.
8 years ago