diff options
-rw-r--r-- | DEVELOPMENT.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md new file mode 100644 index 0000000..a698e75 --- /dev/null +++ b/DEVELOPMENT.md | |||
@@ -0,0 +1,17 @@ | |||
1 | Here's some general stuff to keep in mind, and some work that needs to be done | ||
2 | |||
3 | * Mastodon.py tries to work for python2 as well as python3, so avoid things like annotations, | ||
4 | use requests over urllib, et cetera. | ||
5 | |||
6 | * Unimplemented methods: | ||
7 | * GET /api/v1/instance | ||
8 | * GET /api/v1/reports | ||
9 | * POST /api/v1/reports | ||
10 | * GET /api/v1/statuses/:id/card | ||
11 | |||
12 | * Documentation that needs to be updated: | ||
13 | * Toot dicts are missing some fields (cards, applications, visibility) | ||
14 | * Some others probably are missing stuff also | ||
15 | |||
16 | * Other things missing: | ||
17 | * Transparent as well as explicit pagination support | ||