| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Clarify `on_ready` triggering more than twice. | Rapptz | 2016-06-10 | 1 | -10/+2 |
| | | | | | | | On that note, fix the background_task example to use `Client.run` instead of manual loop management. That way the task will be cleaned up and cancelled inside `Client.run`. | ||||
| * | Rework playlist example to work with multi-server voice. | Rapptz | 2016-05-12 | 1 | -80/+223 |
| | | |||||
| * | Change all email/password pair examples to use token. | Rapptz | 2016-04-08 | 8 | -8/+8 |
| | | |||||
| * | Fix bug where playlist bot attempts to process replies in PMs. | shrx | 2016-03-02 | 1 | -10/+10 |
| | | |||||
| * | Basic bot example now shows documenting for the built-in help command. | Rapptz | 2016-01-12 | 1 | -5/+19 |
| | | |||||
| * | Examples now use Python 3.5. Remove echo.py example. | Rapptz | 2016-01-06 | 8 | -80/+61 |
| | | |||||
| * | Add basic example bot showcasing the commands ext module. | Rapptz | 2016-01-05 | 1 | -0/+51 |
| | | |||||
| * | Add guessing game example to showcase wait_for_message. | Rapptz | 2015-12-19 | 1 | -0/+37 |
| | | |||||
| * | Add voice playlist example code. | Rapptz | 2015-12-19 | 1 | -0/+105 |
| | | |||||
| * | Add background_task example to showcase background tasks. | Rapptz | 2015-12-19 | 1 | -0/+32 |
| | | |||||
| * | Updated examples to use new properties. | Rapptz | 2015-12-19 | 2 | -4/+4 |
| | | |||||
| * | Update example code. | Rapptz | 2015-12-06 | 5 | -33/+32 |
| | | |||||
| * | Add new_member.py example to showcase messaging new members. | Rapptz | 2015-11-27 | 1 | -0/+18 |
| | | |||||
| * | reply.py example now checks for self-authoring | Rapptz | 2015-11-27 | 1 | -0/+4 |
| | | |||||
| * | Simplify examples to no longer use logging or Client.is_logged_in | Rapptz | 2015-11-26 | 4 | -32/+0 |
| | | | | | | | | | | | | The logging module is no longer required to get diagnostic output since we use `stderr` by default regardless of the logging module. Which means that the logging module will only give a more verbose output than is necessary. Client.is_logged_in checking is no longer necessary since all HTTP request handling now raise an exception if they fail so those chunks are also gone. | ||||
| * | Set up logging module in examples | Hornwitser | 2015-10-06 | 4 | -0/+16 |
| | | | | | | | | | Without setting up the logging module, a god number of error conditions and warnings will never be output by the library. This is a common pitfall to forget and it's not documented good enough the consequences of not setting up the logging module when developing applications with this library. | ||||
| * | Add handling of login failure in examples | Hornwitser | 2015-10-06 | 4 | -0/+16 |
| | | | | | | | Check and handle login failure in the examples provided for using this library. This is a common error condition that should be handled by any script using this library. | ||||
| * | Make reply example a bit more meaningful. | Rapptz | 2015-10-05 | 1 | -1/+1 |
| | | |||||
| * | Fix echo example to not infinitely loop. | Rapptz | 2015-10-05 | 1 | -1/+2 |
| | | |||||
| * | Add the ability to edit messages. | Rapptz | 2015-08-21 | 1 | -0/+8 |
| | | |||||
| * | Add on_message_edit event. | Rapptz | 2015-08-21 | 1 | -0/+16 |
| | | |||||
| * | Add the ability to delete messages | Rapptz | 2015-08-21 | 1 | -0/+6 |
| | | |||||
| * | Add on_message_delete event and Client.messages attribute. | Rapptz | 2015-08-21 | 1 | -0/+16 |
| | | |||||
| * | Add some examples | Rapptz | 2015-08-21 | 2 | -0/+34 |