Mastodonplus.py/DEVELOPMENT.md

20 líneas
690 B
Markdown

2017-04-26 12:22:43 +02:00
Here's some general stuff to keep in mind, and some work that needs to be done
* Mastodon.py tries to work for python2 as well as python3, so avoid things like annotations,
use requests over urllib, et cetera.
* Unimplemented methods:
* GET /api/v1/instance
* GET /api/v1/reports
* POST /api/v1/reports
* GET /api/v1/statuses/:id/card
2017-04-26 12:31:17 +02:00
* PATCH /api/v1/accounts/update_credentials
2017-04-26 12:22:43 +02:00
* Documentation that needs to be updated:
* Toot dicts are missing some fields (cards, applications, visibility)
* Some others probably are missing stuff also
2017-04-26 12:31:17 +02:00
2017-04-26 12:22:43 +02:00
* Other things missing:
* Transparent as well as explicit pagination support
2017-04-26 12:26:04 +02:00
* Tests (long-term goal)