Compare commits
2 Commits
7ec174ed65
...
71ee85be8a
Author | SHA1 | Date | |
---|---|---|---|
71ee85be8a | |||
a5588df9d6 |
5
.gitignore
vendored
5
.gitignore
vendored
@ -2,4 +2,7 @@
|
||||
/result*
|
||||
/.vscode
|
||||
/.devenv
|
||||
.envrc
|
||||
.envrc
|
||||
.aider*
|
||||
/openapi*
|
||||
output.json
|
71
README.md
Normal file
71
README.md
Normal file
@ -0,0 +1,71 @@
|
||||
# Jikan.moe API Wrapper for Rust
|
||||
|
||||
This crate provides a Rust API wrapper for the Jikan.moe API - an Unofficial MyAnimeList API, which serves as a comprehensive anime and manga database.
|
||||
|
||||
For more information about Jikan.moe, [read official docs](https://docs.api.jikan.moe/) or [download openapi specs](https://raw.githubusercontent.com/jikan-me/jikan-rest/master/storage/api-docs/api-docs.json).
|
||||
|
||||
## Key Points
|
||||
|
||||
- Easy to use, type-safe API for Jikan.moe v4 API (in progress, see [Roadmap](#roadmap))
|
||||
- Pagination support for list endpoints
|
||||
- Strongly typed responses
|
||||
- Async support
|
||||
- Support for custom HTTP client
|
||||
- Zero configuration required
|
||||
|
||||
## Roadmap
|
||||
|
||||
* Implement all endpoints:
|
||||
- [x] `/anime`
|
||||
- [ ] `/characters`
|
||||
- [ ] `/clubs`
|
||||
- [ ] `/genres`
|
||||
- [ ] `/magazines`
|
||||
- [ ] `/manga`
|
||||
- [ ] `/people`
|
||||
- [ ] `/producers`
|
||||
- [ ] `/random`
|
||||
- [ ] `/recommendations`
|
||||
- [ ] `/reviews`
|
||||
- [ ] `/schedules`
|
||||
- [ ] `/users`
|
||||
- [ ] `/seasons`
|
||||
- [ ] `/top`
|
||||
- [ ] `/watch`
|
||||
* Create response types for all endpoints:
|
||||
- [x] `/anime`
|
||||
- [ ] `/characters`
|
||||
- [ ] `/clubs`
|
||||
- [ ] `/genres`
|
||||
- [ ] `/magazines`
|
||||
- [ ] `/manga`
|
||||
- [ ] `/people`
|
||||
- [ ] `/producers`
|
||||
- [ ] `/random`
|
||||
- [ ] `/recommendations`
|
||||
- [ ] `/reviews`
|
||||
- [ ] `/schedules`
|
||||
- [ ] `/users`
|
||||
- [ ] `/seasons`
|
||||
- [ ] `/top`
|
||||
- [ ] `/watch`
|
||||
* Implement rate limiting for default client
|
||||
* Logging with tracing library
|
||||
* Add usage examples
|
||||
* Maybe more...
|
||||
|
||||
## Design
|
||||
|
||||
This crate's API design is inspired by:
|
||||
- [speedrun-api](https://docs.rs/speedrun-api/) crate's architecture
|
||||
- [gitlab](https://docs.rs/gitlab/) crate's API design
|
||||
- [Designing Rust bindings for REST APIs](https://plume.benboeckel.net/~/JustAnotherBlog/designing-rust-bindings-for-rest-ap-is) by Ben Boeckel
|
||||
|
||||
## License
|
||||
|
||||
This project is dual-licensed under either:
|
||||
|
||||
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
||||
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
||||
|
||||
at your option.
|
Loading…
x
Reference in New Issue
Block a user