diff --git a/README.md b/README.md index 94f5817..e7ec72e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ # async-tiff -An async, low-level [TIFF](https://en.wikipedia.org/wiki/TIFF) reader. +An async, low-level [TIFF](https://en.wikipedia.org/wiki/TIFF) reader for Rust and Python. + +[**Rust documentation**](https://docs.rs/async-tiff/)
+[**Python documentation**](https://developmentseed.org/async-tiff/latest/) ## Features @@ -9,8 +12,6 @@ An async, low-level [TIFF](https://en.wikipedia.org/wiki/TIFF) reader. - Support for user-defined decompression algorithms. - Tile request merging and concurrency. -[Full documentation](https://docs.rs/async-tiff/). - ## Background The existing [`tiff` crate](https://crates.io/crates/tiff) is great, but only supports synchronous reading of TIFF files. Furthermore, due to low maintenance bandwidth it is not designed for extensibility (see [#250](https://github.com/image-rs/image-tiff/issues/250)).