diff options
author | Lorenz Diener <[email protected]> | 2018-04-17 18:19:30 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2018-04-17 18:19:30 +0200 |
commit | d9f7442989087105f0494e0013c85ae64b20e58b (patch) | |
tree | 9b641682440e9f14af14672d1ebacbe554f0aba2 | |
parent | a1ecd2d6641979f011afeeda4d8ccdf2b2b6b3c3 (diff) | |
download | mastodon.py-d9f7442989087105f0494e0013c85ae64b20e58b.tar.gz |
Update DEVELOPMENT.md
-rw-r--r-- | DEVELOPMENT.md | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 3402d3f..aff3a22 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md | |||
@@ -3,12 +3,11 @@ Here's some general stuff to keep in mind, and some work that needs to be done | |||
3 | * Mastodon.py tries to work for python2 as well as python3, so avoid things like annotations, | 3 | * Mastodon.py tries to work for python2 as well as python3, so avoid things like annotations, |
4 | use requests over urllib, et cetera. | 4 | use requests over urllib, et cetera. |
5 | 5 | ||
6 | * Unimplemented methods: | 6 | * Current TODOs (2.3 support): |
7 | * None, at time of writing! | 7 | * Add support for media updating |
8 | * Add support for focal points | ||
9 | * Add support for idempotency keys | ||
10 | * Document error handling better | ||
11 | * Update tests | ||
12 | * Decide what to do about frame_rate values specified as fractions (7/20 etc.) | ||
8 | 13 | ||
9 | * Documentation that needs to be updated: | ||
10 | * Some things are probably wrong, but none known. | ||
11 | |||
12 | * Other things missing: | ||
13 | * Actual error handling that is good: Proper dealing with OAuth errors, more specific exceptions | ||
14 | |||