| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Mock a ConnectionState object to fix wait=True errors in webhooks. | Rapptz | 2019-03-02 | 1 | -6/+37 |
| | | | | | Fixes #1898 | ||||
| * | Properly clean-up file objects when necessary instead of instantly. | Rapptz | 2019-03-02 | 1 | -19/+25 |
| | | | | | Fix #1770 | ||||
| * | Bump aiohttp requirement and fix AsyncWebhookAdapter | Bryan Forbes | 2019-02-12 | 1 | -1/+1 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Fix Webhook states for stateful objects | Dice | 2019-01-28 | 1 | -3/+3 |
| | | |||||
| * | Fix AttributeError in webhook.send | Chris Rrapi | 2018-11-29 | 1 | -1/+1 |
| | | |||||
| * | Webhooks: add support for multi-file upload | Terrance | 2018-11-24 | 1 | -8/+28 |
| | | | | | | | | | | `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. | ||||
| * | [lint] Fix import order | Hornwitser | 2018-11-24 | 1 | -1/+2 |
| | | | | | | Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. | ||||
| * | Fix up the Sphinx strings causing warnings. | Rapptz | 2018-09-15 | 1 | -1/+1 |
| | | |||||
| * | [lint] Fix types used for __slots__ and __all__ | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | | Stay consistent with the rest of the library and use lists for module __all__ values and tuples for class __slots__ attributes. | ||||
| * | [lint] Fix incorrect and inconsistent whitespace | Hornwitser | 2018-08-22 | 1 | -1/+1 |
| | | | | | Adjust whitespace to be consistent with the rest of the library. | ||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -13/+8 |
| | | |||||
| * | Fix Webhook.guild raising an AttributeError. | Rapptz | 2018-03-16 | 1 | -1/+1 |
| | | | | | Fixes #1148 | ||||
| * | Add intersphinx | Tobotimus | 2018-01-06 | 1 | -8/+8 |
| | | |||||
| * | Fix multipart sending for RequestsWebhookAdapter to work. | Rapptz | 2018-01-03 | 1 | -2/+5 |
| | | |||||
| * | Fix Webhook.delete not working. | Rapptz | 2017-11-07 | 1 | -1/+1 |
| | | |||||
| * | Add webhook.url | rooni | 2017-09-18 | 1 | -0/+5 |
| | | |||||
| * | Fix docstrings for Webhook.send | Rapptz | 2017-09-08 | 1 | -17/+20 |
| | | |||||
| * | Rename webhook parameters to payload to avoid shadowing. | Rapptz | 2017-08-24 | 1 | -16/+16 |
| | | | | | The old names clashed with the `json` module. | ||||
| * | Webhook URLs can have dashes and underscores. | Rapptz | 2017-08-22 | 1 | -1/+1 |
| | | |||||
| * | Fix a couple docstrings | Steve C | 2017-08-22 | 1 | -3/+3 |
| | | |||||
| * | Fix multi-part sending with aiohttp in webhooks. | Rapptz | 2017-08-22 | 1 | -0/+1 |
| | | |||||
| * | Don't make session a keyword only argument. | Rapptz | 2017-08-21 | 1 | -1/+1 |
| | | |||||
| * | Fix some docstrings. | Rapptz | 2017-08-21 | 1 | -5/+3 |
| | | |||||
| * | Fix Webhook.execute alias. | Rapptz | 2017-08-21 | 1 | -2/+3 |
| | | |||||
| * | Add webhook support. | Rapptz | 2017-08-21 | 1 | -0/+651 |
| Allows for usage of either `requests` and `aiohttp` when used in "Standalone" mode. Fixes #704 | |||||