mangadex-api
Important
This git repo is just a fork from gondolyr/mangadex-api but the project and crate has been yanked so I will now maintain this crate for special-eureka and eureka-manager
The mangadex-api crate provides a convenient, high-level wrapper
client for the MangaDex API,
written in Rust.
It covers all public endpoints covered by their documentation.
Documentation (Project main branch)
Please note that as MangaDex is still in beta, this SDK will be subject to sudden breaking changes.
Disclaimer
mangadex-api is not affiliated with MangaDex.
Table of Contents
- mangadex-api
- Table of Contents
- Requirements
- How to install
- Dependency Justification
- Features
- HTTP Client
- Response Structs
- Getting Started
- Using a custom reqwest Client
- Searching manga by title
- Searching manga by title with reference expansion
- Downloading chapter pages
- Downloading a manga's main cover image
- Changelog
- License
- Contributing
Requirements
How to install
Add mangadex-api to your dependencies:
[]
# ...
# Types and schemas are always required
= "0.3.3"
= "0.3.2"
= "2.0.2"
If you are using cargo-edit, run
Dependency Justification
| Dependency | Used for | Included |
|---|---|---|
anyhow |
Capturing unexpected errors. | always |
mangadex-api-types-rust |
Enums and static data for Mangadex API | always |
mangadex-api-schema-rust |
Types used for Mangadex API | always |
clap |
Examples demonstrating the library's capabilities | dev builds |
derive_builder |
Conveniently generating setters for the API endpoint builders. | always |
fake |
Generating random data for unit tests. | dev builds |
futures |
Async request processing. | always |
reqwest |
Making HTTP requests to the MangaDex API. | always |
serde |
Se/dese/rializing HTTP response bodies into structs. | always |
serde_json |
Creating JSON objects for unit tests. | dev builds |
serde_qs |
Query string serialization for HTTP requests. | always |
thiserror |
Customized error handling. | always |
time |
Convenience types for handing time fields. | always |
tokio |
Async runtime to handle futures in (only) examples and utils feature in chapter reporting |
dev builds + utils features |
url |
Convenient Url type for validating and containing URLs. |
always |
uuid |
Convenient Uuid type for validating and containing UUIDs for requests and responses. Also used to randomly generate UUIDs for testing. |
always |
wiremock |
HTTP mocking to test the MangaDex API. | dev builds |
Features
All features are not included by default. To enable them, add any of the following to your project's Cargo.toml file.
-
multi-threadEnable the
MangaDexClientto be thread-safe, at the cost of operations being slightly more expensive. -
legacy-authEnable the usage of the
< 5.9.0login system in the SDK. Please visit the Mangadex Discord for more details -
legacy-accountEnable the usage of the
< 5.9.0account management system in the SDK. Please visit the Mangadex Discord for more details -
utilsEnable the usage of the
MangaDexClient::download(). Allows you to download chapters or covers image without tears and long code.
For example, to enable the multi-thread feature, add the following to your Cargo.toml file:
= { = "2.1.0", = ["multi-thread"] }
HTTP Client
The mangadex_api::MangaDexClient is asynchronous, using
reqwest as the HTTP client.
Response Structs
The response structs can be found in the schemas module and contain the fields in a JSON response.
Getting Started
This example demonstrates how to fetch a random manga.
use MangaDexClient;
async
Using a custom reqwest Client
By default, mangadex_api::MangaDexClient will use the default
reqwest::Client settings.
You may provide your own reqwest::Client to customize options such as the
request timeout.
use Client;
use MangaDexClient;
# async
Searching manga by title
Reference: https://api.mangadex.org/swagger.html#/Manga/get-search-manga
use MangaDexClient;
# async
Searching manga by title with reference expansion
Every fetch will include all relationships but with minimal information such as the relationship type and ID. Reference expansion will include the full JSON object in the results for the types that are added to the request.
In the example below, any associated authors in the list of relationships will provide detailed information such as the author's name, biography, and website in the results.
References:
- https://api.mangadex.org/docs/reference-expansion/
- Endpoint: https://api.mangadex.org/swagger.html#/Manga/get-search-manga
- Author object: https://api.mangadex.org/swagger.html#/Author/get-author-id
use ;
use RelatedAttributes;
use MangaDexClient;
# async
Downloading chapter pages
Reference: https://api.mangadex.org/docs/reading-chapter/
Using the old way
// Imports used for downloading the pages to a file.
// They are not used because we're just printing the raw bytes.
// use std::fs::File;
// use std::io::Write;
use Url;
use Uuid;
use MangaDexClient;
# async
Using the utils feature
use crate::;
use ;
/// used for file exporting
use ;
/// It's from this manga called [`The Grim Reaper Falls In Love With A Human`](https://mangadex.org/title/be2efc56-1669-4e42-9f27-3bd232bca8ea/the-grim-reaper-falls-in-love-with-a-human)
///
/// [Chapter 1 English](https://mangadex.org/chapter/2b4e39a5-fba0-4055-a176-8b7e19faacdb) by [`Kredim`](https://mangadex.org/group/0b870e54-c75f-4d2e-8068-c40f939135fd/kredim)
async
Downloading a manga's main cover image
Use the legacy way
While this example could directly get the cover information by passing in the cover ID, it is not often that one would have the ID off-hand, so the most common method would be from a manga result.
If you want to get all of a manga's cover images, you will need to use the cover list endpoint
and use the manga[] query parameter.
// Imports used for downloading the cover to a file.
// They are not used because we're just printing the raw bytes.
// use std::fs::File;
// use std::io::Write;
use Url;
use Uuid;
use RelationshipType;
use MangaDexClient;
use CDN_URL;
# async
Using the utils feature
via a cover id
use Result;
use Uuid;
use crateMangaDexClient;
use ;
/// Download the volume 2 cover of [Lycoris Recoil](https://mangadex.org/title/9c21fbcd-e22e-4e6d-8258-7d580df9fc45/lycoris-recoil)
async
via a manga id
use Result;
use Uuid;
use crateMangaDexClient;
use ;
/// Download the [Kimi tte Watashi no Koto Suki Nandesho?](https://mangadex.org/title/f75c2845-0241-4e69-87c7-b93575b532dd/kimi-tte-watashi-no-koto-suki-nandesho) cover
///
/// For test... of course :3
async
Changelog
The changelog can be found here.
Changes are added manually to keep the changelog human-readable with summaries of the changes from each version.
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Contributing
We welcome contributions from everyone. There are many ways to contribute and the CONTRIBUTING.md document explains how you can contribute and get started.