Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Add async autoreconnect | Lorenz Diener | 2018-04-17 | 1 | -28/+59 | |
| | | ||||||
* | | add timeouts to streams (GH-127) | codl | 2018-04-08 | 1 | -10/+12 | |
|/ | ||||||
* | Fix 500 from status_post capitalized visibilities | Robert Mock | 2018-02-11 | 1 | -1/+2 | |
| | | | The validator for the 'visibility' parameter lower()s it before verifying, but this means that "direct", "Direct", and "dIRECT" all pass validation. However, passing in 'Direct' (at least, to my instance) throws `mastodon.Mastodon.MastodonAPIError: ('Mastodon API returned error', 500, 'Internal Server Error', None)`. This corrects the parameter in-place. | |||||
* | Update Mastodon.py | Noëlle Anthony | 2018-02-02 | 1 | -4/+6 | |
| | | | Modified docstring slightly; added type checking for media_ids in the status_post() method. If media_ids is not a list or tuple, put it into a list before parsing it. | |||||
* | Update Mastodon.py documentation for status_post() | Noëlle Anthony | 2018-02-01 | 1 | -3/+6 | |
| | | | Updated the docstring for the status_post method to more clearly indicate that the *media_id* argument must be a list even when passing in media dicts returned by *media_post*. (This inclarity cost me quite a bit of debugging this evening.) | |||||
* | Bump supported version in docs, code to 2.2.0 | Lorenz Diener | 2018-01-29 | 1 | -1/+1 | |
| | ||||||
* | Fix typo that made test break | Lorenz Diener | 2018-01-29 | 1 | -1/+1 | |
| | ||||||
* | Add 2.1.2 functions | Lorenz Diener | 2018-01-29 | 1 | -9/+30 | |
| | ||||||
* | Fix get_supported_version() | Lorenz Diener | 2018-01-29 | 1 | -2/+3 | |
| | ||||||
* | subclass api errors | codl | 2018-01-03 | 1 | -31/+47 | |
| | ||||||
* | Daemonize streams | Lorenz Diener | 2017-12-19 | 1 | -1/+1 | |
| | ||||||
* | Fix streaming API to be more stable (closes #117) | Lorenz Diener | 2017-12-19 | 1 | -2/+2 | |
| | ||||||
* | Fix missing async in hashtag/list streams | Lorenz Diener | 2017-12-19 | 1 | -5/+7 | |
| | ||||||
* | Prepare release, part 2 | Lorenz Diener | 2017-12-15 | 1 | -0/+6 | |
| | ||||||
* | Update changelog (preliminary) | Lorenz Diener | 2017-12-14 | 1 | -1/+0 | |
| | ||||||
* | Fix some problems with attribute access | Lorenz Diener | 2017-12-14 | 1 | -15/+25 | |
| | ||||||
* | Fix version check | Lorenz Diener | 2017-12-14 | 1 | -8/+8 | |
| | ||||||
* | Change default version check behaviour | Lorenz Diener | 2017-12-14 | 1 | -13/+13 | |
| | ||||||
* | Make attribute-style access better | Lorenz Diener | 2017-12-14 | 1 | -2/+9 | |
| | ||||||
* | Add dict attribute access | Lorenz Diener | 2017-12-14 | 1 | -0/+15 | |
| | ||||||
* | Fix account_statuses breakage | Lorenz Diener | 2017-12-14 | 1 | -2/+10 | |
| | ||||||
* | Add supported version in a place where python can read it | Lorenz Diener | 2017-12-14 | 1 | -1/+2 | |
| | ||||||
* | Add last-changed versioning | Lorenz Diener | 2017-12-14 | 1 | -75/+94 | |
| | ||||||
* | Document list endpoints | Lorenz Diener | 2017-12-13 | 1 | -10/+2 | |
| | ||||||
* | Add remaining list endpoints | Lorenz Diener | 2017-12-13 | 1 | -1/+60 | |
| | ||||||
* | Add more list endpoints | Lorenz Diener | 2017-12-13 | 1 | -3/+54 | |
| | ||||||
* | Added account_lists(broken) | Lorenz Diener | 2017-12-13 | 1 | -0/+14 | |
| | ||||||
* | Add information about unauthenticated methods | Lorenz Diener | 2017-12-13 | 1 | -0/+14 | |
| | ||||||
* | Add internal links in docs | Lorenz Diener | 2017-12-13 | 1 | -105/+104 | |
| | ||||||
* | Update docs for search function | Lorenz Diener | 2017-12-13 | 1 | -1/+1 | |
| | ||||||
* | Add lists endpoint | Lorenz Diener | 2017-12-13 | 1 | -0/+12 | |
| | ||||||
* | Add list streaming | Lorenz Diener | 2017-12-13 | 1 | -9/+13 | |
| | ||||||
* | Add custom_emojis | Lorenz Diener | 2017-12-13 | 1 | -0/+13 | |
| | ||||||
* | Update verify_credentials docs | Lorenz Diener | 2017-12-13 | 1 | -1/+1 | |
| | ||||||
* | Update docs, fixes #106 | Lorenz Diener | 2017-12-11 | 1 | -3/+3 | |
| | ||||||
* | Fix versioning functionality more, explicit version check | Lorenz Diener | 2017-12-11 | 1 | -10/+30 | |
| | ||||||
* | Fix instance() | Lorenz Diener | 2017-12-11 | 1 | -1/+1 | |
| | ||||||
* | Make the version check be not wrong | Lorenz Diener | 2017-12-11 | 1 | -2/+2 | |
| | ||||||
* | Make decorated functions actually return things | Lorenz Diener | 2017-12-11 | 1 | -1/+1 | |
| | ||||||
* | Versioning fixes | Lorenz Diener | 2017-12-11 | 1 | -10/+45 | |
| | ||||||
* | Version all endpoints where such a thing makes sense | Lorenz Diener | 2017-12-11 | 1 | -7/+61 | |
| | ||||||
* | Add versionind decorator | Lorenz Diener | 2017-12-11 | 1 | -2/+34 | |
| | ||||||
* | fix #111 | codl | 2017-11-29 | 1 | -1/+3 | |
| | ||||||
* | Check hashtags in streaming API | Lorenz Diener | 2017-11-29 | 1 | -0/+2 | |
| | ||||||
* | Fix the thing I previously broke | Lorenz Diener | 2017-11-29 | 1 | -1/+1 | |
| | | | | lets pretend I was just testing the CI okay | |||||
* | add hashtag leading # detection, closes #105 | Lorenz Diener | 2017-11-29 | 1 | -1/+5 | |
| | ||||||
* | Merge pull request #103 from Kjwon15/feature-asyncstream | Lorenz Diener | 2017-11-27 | 1 | -0/+4 | |
|\ | | | | | Implement is_alive to async stream | |||||
| * | Get current thread correctly | kjwon15 | 2017-11-25 | 1 | -1/+1 | |
| | | ||||||
| * | Implement is_alive to async stream | kjwon15 | 2017-11-25 | 1 | -0/+4 | |
| | | ||||||
* | | fix string id support to also include in_reply_to_... fields | codl | 2017-11-26 | 1 | -6/+7 | |
| | |