{"id":25384184,"url":"https://github.com/mahmudindev/openapi-mangadex-python","last_synced_at":"2025-08-24T06:44:50.639Z","repository":{"id":276339588,"uuid":"864845868","full_name":"mahmudindev/openapi-mangadex-python","owner":"mahmudindev","description":"Python-based generated MangaDex OpenAPI client (Unofficial).","archived":false,"fork":false,"pushed_at":"2024-10-02T06:32:13.000Z","size":247,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-15T08:38:24.525Z","etag":null,"topics":["client","comics","mangadex","openapi","sdk"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mahmudindev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-29T10:18:47.000Z","updated_at":"2024-10-08T21:38:58.000Z","dependencies_parsed_at":"2025-02-07T17:27:33.857Z","dependency_job_id":null,"html_url":"https://github.com/mahmudindev/openapi-mangadex-python","commit_stats":null,"previous_names":["mahmudindev/openapi-mangadex-python"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-mangadex-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-mangadex-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-mangadex-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Fopenapi-mangadex-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mahmudindev","download_url":"https://codeload.github.com/mahmudindev/openapi-mangadex-python/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248055275,"owners_count":21040151,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["client","comics","mangadex","openapi","sdk"],"created_at":"2025-02-15T08:37:54.471Z","updated_at":"2025-04-09T14:43:44.730Z","avatar_url":"https://github.com/mahmudindev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mangadex-openapi\nMangaDex is an ad-free manga reader offering high-quality images!\n\nThis document details our API as it is right now. It is in no way a promise to never change it, although we will endeavour to publicly notify any major change.\n\n# Acceptable use policy\n\nUsage of our services implies acceptance of the following:\n- You **MUST** credit us\n- You **MUST** credit scanlation groups if you offer the ability to read chapters\n- You **CANNOT** run ads or paid services on your website and/or apps\n\nThese may change at any time for any and no reason and it is up to you check for updates from time to time.\n\n# Security issues\n\nIf you believe you found a security issue in our API, please check our [security.txt](/security.txt) to get in touch privately.\n\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 5.10.2\n- Package version: 5.10.2.dev1\n- Generator version: 7.4.0\n- Build package: org.openapitools.codegen.languages.PythonClientCodegen\n\n## Requirements.\n\nPython 3.7+\n\n## Installation \u0026 Usage\n### pip install\n\nIf the python package is hosted on a repository, you can install directly using:\n\n```sh\npip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git\n```\n(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)\n\nThen import the package:\n```python\nimport mangadex_openapi\n```\n\n### Setuptools\n\nInstall via [Setuptools](http://pypi.python.org/pypi/setuptools).\n\n```sh\npython setup.py install --user\n```\n(or `sudo python setup.py install` to install the package for all users)\n\nThen import the package:\n```python\nimport mangadex_openapi\n```\n\n### Tests\n\nExecute `pytest` to run the tests.\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```python\n\nimport mangadex_openapi\nfrom mangadex_openapi.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to https://api.mangadex.org\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = mangadex_openapi.Configuration(\n    host = \"https://api.mangadex.org\"\n)\n\n# The client must configure the authentication and authorization parameters\n# in accordance with the API server security policy.\n# Examples for each auth method are provided below, use the example that\n# satisfies your auth use case.\n\n# Configure Bearer authorization: Bearer\nconfiguration = mangadex_openapi.Configuration(\n    access_token = os.environ[\"BEARER_TOKEN\"]\n)\n\n\n# Enter a context with an instance of the API client\nwith mangadex_openapi.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = mangadex_openapi.ApiClientApi(api_client)\n    id = 'id_example' # str | ApiClient ID\n    version = 'version_example' # str |  (optional)\n\n    try:\n        # Delete Api Client\n        api_response = api_instance.delete_apiclient(id, version=version)\n        print(\"The response of ApiClientApi-\u003edelete_apiclient:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling ApiClientApi-\u003edelete_apiclient: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to *https://api.mangadex.org*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*ApiClientApi* | [**delete_apiclient**](docs/ApiClientApi.md#delete_apiclient) | **DELETE** /client/{id} | Delete Api Client\n*ApiClientApi* | [**get_apiclient**](docs/ApiClientApi.md#get_apiclient) | **GET** /client/{id} | Get Api Client by ID\n*ApiClientApi* | [**get_apiclient_secret**](docs/ApiClientApi.md#get_apiclient_secret) | **GET** /client/{id}/secret | Get Secret for Client by ID\n*ApiClientApi* | [**get_list_apiclients**](docs/ApiClientApi.md#get_list_apiclients) | **GET** /client | List own Api Clients\n*ApiClientApi* | [**post_create_apiclient**](docs/ApiClientApi.md#post_create_apiclient) | **POST** /client | Create ApiClient\n*ApiClientApi* | [**post_edit_apiclient**](docs/ApiClientApi.md#post_edit_apiclient) | **POST** /client/{id} | Edit ApiClient\n*ApiClientApi* | [**post_regenerate_apiclient_secret**](docs/ApiClientApi.md#post_regenerate_apiclient_secret) | **POST** /client/{id}/secret | Regenerate Client Secret\n*AtHomeApi* | [**get_at_home_server_chapter_id**](docs/AtHomeApi.md#get_at_home_server_chapter_id) | **GET** /at-home/server/{chapterId} | Get MangaDex@Home server URL\n*AuthenticationApi* | [**get_auth_check**](docs/AuthenticationApi.md#get_auth_check) | **GET** /auth/check | Check the set of permissions associated with the current token\n*AuthenticationApi* | [**post_auth_login**](docs/AuthenticationApi.md#post_auth_login) | **POST** /auth/login | Login\n*AuthenticationApi* | [**post_auth_logout**](docs/AuthenticationApi.md#post_auth_logout) | **POST** /auth/logout | Logout\n*AuthenticationApi* | [**post_auth_refresh**](docs/AuthenticationApi.md#post_auth_refresh) | **POST** /auth/refresh | Refresh token\n*AuthorApi* | [**delete_author_id**](docs/AuthorApi.md#delete_author_id) | **DELETE** /author/{id} | Delete Author\n*AuthorApi* | [**get_author**](docs/AuthorApi.md#get_author) | **GET** /author | Author list\n*AuthorApi* | [**get_author_id**](docs/AuthorApi.md#get_author_id) | **GET** /author/{id} | Get Author\n*AuthorApi* | [**post_author**](docs/AuthorApi.md#post_author) | **POST** /author | Create Author\n*AuthorApi* | [**put_author_id**](docs/AuthorApi.md#put_author_id) | **PUT** /author/{id} | Update Author\n*CaptchaApi* | [**post_captcha_solve**](docs/CaptchaApi.md#post_captcha_solve) | **POST** /captcha/solve | Solve Captcha\n*ChapterApi* | [**delete_chapter_id**](docs/ChapterApi.md#delete_chapter_id) | **DELETE** /chapter/{id} | Delete Chapter\n*ChapterApi* | [**get_chapter**](docs/ChapterApi.md#get_chapter) | **GET** /chapter | Chapter list\n*ChapterApi* | [**get_chapter_id**](docs/ChapterApi.md#get_chapter_id) | **GET** /chapter/{id} | Get Chapter\n*ChapterApi* | [**put_chapter_id**](docs/ChapterApi.md#put_chapter_id) | **PUT** /chapter/{id} | Update Chapter\n*CoverApi* | [**delete_cover**](docs/CoverApi.md#delete_cover) | **DELETE** /cover/{mangaOrCoverId} | Delete Cover\n*CoverApi* | [**edit_cover**](docs/CoverApi.md#edit_cover) | **PUT** /cover/{mangaOrCoverId} | Edit Cover\n*CoverApi* | [**get_cover**](docs/CoverApi.md#get_cover) | **GET** /cover | CoverArt list\n*CoverApi* | [**get_cover_id**](docs/CoverApi.md#get_cover_id) | **GET** /cover/{mangaOrCoverId} | Get Cover\n*CoverApi* | [**upload_cover**](docs/CoverApi.md#upload_cover) | **POST** /cover/{mangaOrCoverId} | Upload Cover\n*CustomListApi* | [**delete_list_id**](docs/CustomListApi.md#delete_list_id) | **DELETE** /list/{id} | Delete CustomList\n*CustomListApi* | [**delete_manga_id_list_list_id**](docs/CustomListApi.md#delete_manga_id_list_list_id) | **DELETE** /manga/{id}/list/{listId} | Remove Manga in CustomList\n*CustomListApi* | [**follow_list_id**](docs/CustomListApi.md#follow_list_id) | **POST** /list/{id}/follow | Follow CustomList\n*CustomListApi* | [**get_list_id**](docs/CustomListApi.md#get_list_id) | **GET** /list/{id} | Get CustomList\n*CustomListApi* | [**get_user_id_list**](docs/CustomListApi.md#get_user_id_list) | **GET** /user/{id}/list | Get User\u0026#39;s CustomList list\n*CustomListApi* | [**get_user_list**](docs/CustomListApi.md#get_user_list) | **GET** /user/list | Get logged User CustomList list\n*CustomListApi* | [**post_list**](docs/CustomListApi.md#post_list) | **POST** /list | Create CustomList\n*CustomListApi* | [**post_manga_id_list_list_id**](docs/CustomListApi.md#post_manga_id_list_list_id) | **POST** /manga/{id}/list/{listId} | Add Manga in CustomList\n*CustomListApi* | [**put_list_id**](docs/CustomListApi.md#put_list_id) | **PUT** /list/{id} | Update CustomList\n*CustomListApi* | [**unfollow_list_id**](docs/CustomListApi.md#unfollow_list_id) | **DELETE** /list/{id}/follow | Unfollow CustomList\n*FeedApi* | [**get_list_id_feed**](docs/FeedApi.md#get_list_id_feed) | **GET** /list/{id}/feed | CustomList Manga feed\n*FeedApi* | [**get_user_follows_manga_feed**](docs/FeedApi.md#get_user_follows_manga_feed) | **GET** /user/follows/manga/feed | Get logged User followed Manga feed (Chapter list)\n*FollowsApi* | [**get_user_follows_group**](docs/FollowsApi.md#get_user_follows_group) | **GET** /user/follows/group | Get logged User followed Groups\n*FollowsApi* | [**get_user_follows_group_id**](docs/FollowsApi.md#get_user_follows_group_id) | **GET** /user/follows/group/{id} | Check if logged User follows a Group\n*FollowsApi* | [**get_user_follows_list**](docs/FollowsApi.md#get_user_follows_list) | **GET** /user/follows/list | Get logged User followed CustomList list\n*FollowsApi* | [**get_user_follows_list_id**](docs/FollowsApi.md#get_user_follows_list_id) | **GET** /user/follows/list/{id} | Check if logged User follows a CustomList\n*FollowsApi* | [**get_user_follows_manga**](docs/FollowsApi.md#get_user_follows_manga) | **GET** /user/follows/manga | Get logged User followed Manga list\n*FollowsApi* | [**get_user_follows_manga_id**](docs/FollowsApi.md#get_user_follows_manga_id) | **GET** /user/follows/manga/{id} | Check if logged User follows a Manga\n*FollowsApi* | [**get_user_follows_user**](docs/FollowsApi.md#get_user_follows_user) | **GET** /user/follows/user | Get logged User followed User list\n*FollowsApi* | [**get_user_follows_user_id**](docs/FollowsApi.md#get_user_follows_user_id) | **GET** /user/follows/user/{id} | Check if logged User follows a User\n*ForumsApi* | [**forums_thread_create**](docs/ForumsApi.md#forums_thread_create) | **POST** /forums/thread | Create forums thread\n*InfrastructureApi* | [**get_ping**](docs/InfrastructureApi.md#get_ping) | **GET** /ping | Ping healthcheck\n*LegacyApi* | [**post_legacy_mapping**](docs/LegacyApi.md#post_legacy_mapping) | **POST** /legacy/mapping | Legacy ID mapping\n*MangaApi* | [**commit_manga_draft**](docs/MangaApi.md#commit_manga_draft) | **POST** /manga/draft/{id}/commit | Submit a Manga Draft\n*MangaApi* | [**delete_manga_id**](docs/MangaApi.md#delete_manga_id) | **DELETE** /manga/{id} | Delete Manga\n*MangaApi* | [**delete_manga_id_follow**](docs/MangaApi.md#delete_manga_id_follow) | **DELETE** /manga/{id}/follow | Unfollow Manga\n*MangaApi* | [**delete_manga_relation_id**](docs/MangaApi.md#delete_manga_relation_id) | **DELETE** /manga/{mangaId}/relation/{id} | Delete Manga relation\n*MangaApi* | [**get_manga_aggregate**](docs/MangaApi.md#get_manga_aggregate) | **GET** /manga/{id}/aggregate | Get Manga volumes \u0026amp; chapters\n*MangaApi* | [**get_manga_drafts**](docs/MangaApi.md#get_manga_drafts) | **GET** /manga/draft | Get a list of Manga Drafts\n*MangaApi* | [**get_manga_id**](docs/MangaApi.md#get_manga_id) | **GET** /manga/{id} | Get Manga\n*MangaApi* | [**get_manga_id_draft**](docs/MangaApi.md#get_manga_id_draft) | **GET** /manga/draft/{id} | Get a specific Manga Draft\n*MangaApi* | [**get_manga_id_feed**](docs/MangaApi.md#get_manga_id_feed) | **GET** /manga/{id}/feed | Manga feed\n*MangaApi* | [**get_manga_id_status**](docs/MangaApi.md#get_manga_id_status) | **GET** /manga/{id}/status | Get a Manga reading status\n*MangaApi* | [**get_manga_random**](docs/MangaApi.md#get_manga_random) | **GET** /manga/random | Get a random Manga\n*MangaApi* | [**get_manga_relation**](docs/MangaApi.md#get_manga_relation) | **GET** /manga/{mangaId}/relation | Manga relation list\n*MangaApi* | [**get_manga_status**](docs/MangaApi.md#get_manga_status) | **GET** /manga/status | Get all Manga reading status for logged User\n*MangaApi* | [**get_manga_tag**](docs/MangaApi.md#get_manga_tag) | **GET** /manga/tag | Tag list\n*MangaApi* | [**get_search_manga**](docs/MangaApi.md#get_search_manga) | **GET** /manga | Manga list\n*MangaApi* | [**post_manga**](docs/MangaApi.md#post_manga) | **POST** /manga | Create Manga\n*MangaApi* | [**post_manga_id_follow**](docs/MangaApi.md#post_manga_id_follow) | **POST** /manga/{id}/follow | Follow Manga\n*MangaApi* | [**post_manga_id_status**](docs/MangaApi.md#post_manga_id_status) | **POST** /manga/{id}/status | Update Manga reading status\n*MangaApi* | [**post_manga_relation**](docs/MangaApi.md#post_manga_relation) | **POST** /manga/{mangaId}/relation | Create Manga relation\n*MangaApi* | [**put_manga_id**](docs/MangaApi.md#put_manga_id) | **PUT** /manga/{id} | Update Manga\n*RatingApi* | [**delete_rating_manga_id**](docs/RatingApi.md#delete_rating_manga_id) | **DELETE** /rating/{mangaId} | Delete Manga rating\n*RatingApi* | [**get_rating**](docs/RatingApi.md#get_rating) | **GET** /rating | Get your ratings\n*RatingApi* | [**post_rating_manga_id**](docs/RatingApi.md#post_rating_manga_id) | **POST** /rating/{mangaId} | Create or update Manga rating\n*ReadMarkerApi* | [**get_manga_chapter_readmarkers**](docs/ReadMarkerApi.md#get_manga_chapter_readmarkers) | **GET** /manga/{id}/read | Manga read markers\n*ReadMarkerApi* | [**get_manga_chapter_readmarkers2**](docs/ReadMarkerApi.md#get_manga_chapter_readmarkers2) | **GET** /manga/read | Manga read markers\n*ReadMarkerApi* | [**get_reading_history**](docs/ReadMarkerApi.md#get_reading_history) | **GET** /user/history | Get users reading history\n*ReadMarkerApi* | [**post_manga_chapter_readmarkers**](docs/ReadMarkerApi.md#post_manga_chapter_readmarkers) | **POST** /manga/{id}/read | Manga read markers batch\n*ReportApi* | [**get_report_reasons_by_category**](docs/ReportApi.md#get_report_reasons_by_category) | **GET** /report/reasons/{category} | Get a list of report reasons\n*ReportApi* | [**get_reports**](docs/ReportApi.md#get_reports) | **GET** /report | Get a list of reports by the user\n*ReportApi* | [**post_report**](docs/ReportApi.md#post_report) | **POST** /report | Create a new Report\n*ScanlationGroupApi* | [**delete_group_id**](docs/ScanlationGroupApi.md#delete_group_id) | **DELETE** /group/{id} | Delete Scanlation Group\n*ScanlationGroupApi* | [**delete_group_id_follow**](docs/ScanlationGroupApi.md#delete_group_id_follow) | **DELETE** /group/{id}/follow | Unfollow Scanlation Group\n*ScanlationGroupApi* | [**get_group_id**](docs/ScanlationGroupApi.md#get_group_id) | **GET** /group/{id} | Get Scanlation Group\n*ScanlationGroupApi* | [**get_search_group**](docs/ScanlationGroupApi.md#get_search_group) | **GET** /group | Scanlation Group list\n*ScanlationGroupApi* | [**post_group**](docs/ScanlationGroupApi.md#post_group) | **POST** /group | Create Scanlation Group\n*ScanlationGroupApi* | [**post_group_id_follow**](docs/ScanlationGroupApi.md#post_group_id_follow) | **POST** /group/{id}/follow | Follow Scanlation Group\n*ScanlationGroupApi* | [**put_group_id**](docs/ScanlationGroupApi.md#put_group_id) | **PUT** /group/{id} | Update Scanlation Group\n*SettingsApi* | [**get_settings**](docs/SettingsApi.md#get_settings) | **GET** /settings | Get an User Settings\n*SettingsApi* | [**get_settings_template**](docs/SettingsApi.md#get_settings_template) | **GET** /settings/template | Get latest Settings template\n*SettingsApi* | [**get_settings_template_version**](docs/SettingsApi.md#get_settings_template_version) | **GET** /settings/template/{version} | Get Settings template by version id\n*SettingsApi* | [**post_settings**](docs/SettingsApi.md#post_settings) | **POST** /settings | Create or update an User Settings\n*SettingsApi* | [**post_settings_template**](docs/SettingsApi.md#post_settings_template) | **POST** /settings/template | Create Settings template\n*StatisticsApi* | [**get_statistics_chapter_uuid**](docs/StatisticsApi.md#get_statistics_chapter_uuid) | **GET** /statistics/chapter/{uuid} | Get statistics about given chapter\n*StatisticsApi* | [**get_statistics_chapters**](docs/StatisticsApi.md#get_statistics_chapters) | **GET** /statistics/chapter | Get statistics about given chapters\n*StatisticsApi* | [**get_statistics_group_uuid**](docs/StatisticsApi.md#get_statistics_group_uuid) | **GET** /statistics/group/{uuid} | Get statistics about given scanlation group\n*StatisticsApi* | [**get_statistics_groups**](docs/StatisticsApi.md#get_statistics_groups) | **GET** /statistics/group | Get statistics about given groups\n*StatisticsApi* | [**get_statistics_manga**](docs/StatisticsApi.md#get_statistics_manga) | **GET** /statistics/manga | Find statistics about given Manga\n*StatisticsApi* | [**get_statistics_manga_uuid**](docs/StatisticsApi.md#get_statistics_manga_uuid) | **GET** /statistics/manga/{uuid} | Get statistics about given Manga\n*UploadApi* | [**abandon_upload_session**](docs/UploadApi.md#abandon_upload_session) | **DELETE** /upload/{uploadSessionId} | Abandon upload session\n*UploadApi* | [**begin_edit_session**](docs/UploadApi.md#begin_edit_session) | **POST** /upload/begin/{chapterId} | Start an edit chapter session\n*UploadApi* | [**begin_upload_session**](docs/UploadApi.md#begin_upload_session) | **POST** /upload/begin | Start an upload session\n*UploadApi* | [**commit_upload_session**](docs/UploadApi.md#commit_upload_session) | **POST** /upload/{uploadSessionId}/commit | Commit the upload session and specify chapter data\n*UploadApi* | [**delete_uploaded_session_file**](docs/UploadApi.md#delete_uploaded_session_file) | **DELETE** /upload/{uploadSessionId}/{uploadSessionFileId} | Delete an uploaded image from the Upload Session\n*UploadApi* | [**delete_uploaded_session_files**](docs/UploadApi.md#delete_uploaded_session_files) | **DELETE** /upload/{uploadSessionId}/batch | Delete a set of uploaded images from the Upload Session\n*UploadApi* | [**get_upload_session**](docs/UploadApi.md#get_upload_session) | **GET** /upload | Get the current User upload session\n*UploadApi* | [**put_upload_session_file**](docs/UploadApi.md#put_upload_session_file) | **POST** /upload/{uploadSessionId} | Upload images to the upload session\n*UploadApi* | [**upload_check_approval_required**](docs/UploadApi.md#upload_check_approval_required) | **POST** /upload/check-approval-required | Check if a given manga / locale for a User needs moderation approval\n*UserApi* | [**delete_user_id**](docs/UserApi.md#delete_user_id) | **DELETE** /user/{id} | Delete User\n*UserApi* | [**get_user**](docs/UserApi.md#get_user) | **GET** /user | User list\n*UserApi* | [**get_user_id**](docs/UserApi.md#get_user_id) | **GET** /user/{id} | Get User\n*UserApi* | [**get_user_me**](docs/UserApi.md#get_user_me) | **GET** /user/me | Logged User details\n*UserApi* | [**post_user_delete_code**](docs/UserApi.md#post_user_delete_code) | **POST** /user/delete/{code} | Approve User deletion\n\n\n## Documentation For Models\n\n - [AccountActivateResponse](docs/AccountActivateResponse.md)\n - [ApiClient](docs/ApiClient.md)\n - [ApiClientAttributes](docs/ApiClientAttributes.md)\n - [ApiClientCreate](docs/ApiClientCreate.md)\n - [ApiClientEdit](docs/ApiClientEdit.md)\n - [ApiClientList](docs/ApiClientList.md)\n - [ApiClientResponse](docs/ApiClientResponse.md)\n - [Author](docs/Author.md)\n - [AuthorAttributes](docs/AuthorAttributes.md)\n - [AuthorCreate](docs/AuthorCreate.md)\n - [AuthorEdit](docs/AuthorEdit.md)\n - [AuthorList](docs/AuthorList.md)\n - [AuthorResponse](docs/AuthorResponse.md)\n - [BeginEditSession](docs/BeginEditSession.md)\n - [BeginUploadSession](docs/BeginUploadSession.md)\n - [Chapter](docs/Chapter.md)\n - [ChapterAttributes](docs/ChapterAttributes.md)\n - [ChapterDraft](docs/ChapterDraft.md)\n - [ChapterEdit](docs/ChapterEdit.md)\n - [ChapterList](docs/ChapterList.md)\n - [ChapterReadMarkerBatch](docs/ChapterReadMarkerBatch.md)\n - [ChapterRequest](docs/ChapterRequest.md)\n - [ChapterResponse](docs/ChapterResponse.md)\n - [CheckResponse](docs/CheckResponse.md)\n - [CommitMangaDraftRequest](docs/CommitMangaDraftRequest.md)\n - [CommitUploadSession](docs/CommitUploadSession.md)\n - [Cover](docs/Cover.md)\n - [CoverAttributes](docs/CoverAttributes.md)\n - [CoverEdit](docs/CoverEdit.md)\n - [CoverList](docs/CoverList.md)\n - [CoverResponse](docs/CoverResponse.md)\n - [CreateAccount](docs/CreateAccount.md)\n - [CreateScanlationGroup](docs/CreateScanlationGroup.md)\n - [CustomList](docs/CustomList.md)\n - [CustomListAttributes](docs/CustomListAttributes.md)\n - [CustomListCreate](docs/CustomListCreate.md)\n - [CustomListEdit](docs/CustomListEdit.md)\n - [CustomListList](docs/CustomListList.md)\n - [CustomListResponse](docs/CustomListResponse.md)\n - [DeleteApiclient200Response](docs/DeleteApiclient200Response.md)\n - [Error](docs/Error.md)\n - [ErrorResponse](docs/ErrorResponse.md)\n - [FollowListId200Response](docs/FollowListId200Response.md)\n - [ForumsThreadCreateRequest](docs/ForumsThreadCreateRequest.md)\n - [ForumsThreadResponse](docs/ForumsThreadResponse.md)\n - [ForumsThreadResponseData](docs/ForumsThreadResponseData.md)\n - [ForumsThreadResponseDataAttributes](docs/ForumsThreadResponseDataAttributes.md)\n - [GetApiclientSecret200Response](docs/GetApiclientSecret200Response.md)\n - [GetAtHomeServerChapterId200Response](docs/GetAtHomeServerChapterId200Response.md)\n - [GetAtHomeServerChapterId200ResponseChapter](docs/GetAtHomeServerChapterId200ResponseChapter.md)\n - [GetAuthorOrderParameter](docs/GetAuthorOrderParameter.md)\n - [GetChapterOrderParameter](docs/GetChapterOrderParameter.md)\n - [GetChapterUploaderParameter](docs/GetChapterUploaderParameter.md)\n - [GetChapterVolumeParameter](docs/GetChapterVolumeParameter.md)\n - [GetCoverOrderParameter](docs/GetCoverOrderParameter.md)\n - [GetListApiclientsOrderParameter](docs/GetListApiclientsOrderParameter.md)\n - [GetMangaAggregate200Response](docs/GetMangaAggregate200Response.md)\n - [GetMangaAggregate200ResponseVolumesValue](docs/GetMangaAggregate200ResponseVolumesValue.md)\n - [GetMangaAggregate200ResponseVolumesValueChaptersValue](docs/GetMangaAggregate200ResponseVolumesValueChaptersValue.md)\n - [GetMangaChapterReadmarkers200Response](docs/GetMangaChapterReadmarkers200Response.md)\n - [GetMangaChapterReadmarkers2200Response](docs/GetMangaChapterReadmarkers2200Response.md)\n - [GetMangaChapterReadmarkers2200ResponseData](docs/GetMangaChapterReadmarkers2200ResponseData.md)\n - [GetMangaDraftsOrderParameter](docs/GetMangaDraftsOrderParameter.md)\n - [GetMangaIdStatus200Response](docs/GetMangaIdStatus200Response.md)\n - [GetMangaStatus200Response](docs/GetMangaStatus200Response.md)\n - [GetRating200Response](docs/GetRating200Response.md)\n - [GetRating200ResponseRatingsValue](docs/GetRating200ResponseRatingsValue.md)\n - [GetReadingHistory200Response](docs/GetReadingHistory200Response.md)\n - [GetReadingHistory200ResponseRatingsInner](docs/GetReadingHistory200ResponseRatingsInner.md)\n - [GetReportReasonsByCategory200Response](docs/GetReportReasonsByCategory200Response.md)\n - [GetReportReasonsByCategory200ResponseDataInner](docs/GetReportReasonsByCategory200ResponseDataInner.md)\n - [GetReportReasonsByCategory200ResponseDataInnerAttributes](docs/GetReportReasonsByCategory200ResponseDataInnerAttributes.md)\n - [GetReportsOrderParameter](docs/GetReportsOrderParameter.md)\n - [GetSearchGroupOrderParameter](docs/GetSearchGroupOrderParameter.md)\n - [GetSearchMangaOrderParameter](docs/GetSearchMangaOrderParameter.md)\n - [GetSearchMangaYearParameter](docs/GetSearchMangaYearParameter.md)\n - [GetSettings200Response](docs/GetSettings200Response.md)\n - [GetStatisticsChapterUuid200Response](docs/GetStatisticsChapterUuid200Response.md)\n - [GetStatisticsChapterUuid200ResponseStatisticsValue](docs/GetStatisticsChapterUuid200ResponseStatisticsValue.md)\n - [GetStatisticsManga200Response](docs/GetStatisticsManga200Response.md)\n - [GetStatisticsManga200ResponseStatisticsValue](docs/GetStatisticsManga200ResponseStatisticsValue.md)\n - [GetStatisticsManga200ResponseStatisticsValueRating](docs/GetStatisticsManga200ResponseStatisticsValueRating.md)\n - [GetStatisticsMangaUuid200Response](docs/GetStatisticsMangaUuid200Response.md)\n - [GetStatisticsMangaUuid200ResponseStatisticsValue](docs/GetStatisticsMangaUuid200ResponseStatisticsValue.md)\n - [GetStatisticsMangaUuid200ResponseStatisticsValueRating](docs/GetStatisticsMangaUuid200ResponseStatisticsValueRating.md)\n - [GetStatisticsMangaUuid200ResponseStatisticsValueRatingDistribution](docs/GetStatisticsMangaUuid200ResponseStatisticsValueRatingDistribution.md)\n - [GetUserOrderParameter](docs/GetUserOrderParameter.md)\n - [Login](docs/Login.md)\n - [LoginResponse](docs/LoginResponse.md)\n - [LoginResponseToken](docs/LoginResponseToken.md)\n - [LogoutResponse](docs/LogoutResponse.md)\n - [Manga](docs/Manga.md)\n - [MangaAttributes](docs/MangaAttributes.md)\n - [MangaCreate](docs/MangaCreate.md)\n - [MangaEdit](docs/MangaEdit.md)\n - [MangaList](docs/MangaList.md)\n - [MangaRelation](docs/MangaRelation.md)\n - [MangaRelationAttributes](docs/MangaRelationAttributes.md)\n - [MangaRelationCreate](docs/MangaRelationCreate.md)\n - [MangaRelationList](docs/MangaRelationList.md)\n - [MangaRelationRequest](docs/MangaRelationRequest.md)\n - [MangaRelationResponse](docs/MangaRelationResponse.md)\n - [MangaRequest](docs/MangaRequest.md)\n - [MangaResponse](docs/MangaResponse.md)\n - [MappingId](docs/MappingId.md)\n - [MappingIdAttributes](docs/MappingIdAttributes.md)\n - [MappingIdBody](docs/MappingIdBody.md)\n - [MappingIdResponse](docs/MappingIdResponse.md)\n - [PostCaptchaSolve200Response](docs/PostCaptchaSolve200Response.md)\n - [PostCaptchaSolveRequest](docs/PostCaptchaSolveRequest.md)\n - [PostRatingMangaIdRequest](docs/PostRatingMangaIdRequest.md)\n - [PostReportRequest](docs/PostReportRequest.md)\n - [PostSettings200Response](docs/PostSettings200Response.md)\n - [PostSettingsRequest](docs/PostSettingsRequest.md)\n - [PutMangaIdRequest](docs/PutMangaIdRequest.md)\n - [PutUploadSessionFile200Response](docs/PutUploadSessionFile200Response.md)\n - [RecoverCompleteBody](docs/RecoverCompleteBody.md)\n - [RefreshResponse](docs/RefreshResponse.md)\n - [RefreshToken](docs/RefreshToken.md)\n - [Relationship](docs/Relationship.md)\n - [Report](docs/Report.md)\n - [ReportAttributes](docs/ReportAttributes.md)\n - [ReportListResponse](docs/ReportListResponse.md)\n - [Response](docs/Response.md)\n - [ScanlationGroup](docs/ScanlationGroup.md)\n - [ScanlationGroupAttributes](docs/ScanlationGroupAttributes.md)\n - [ScanlationGroupEdit](docs/ScanlationGroupEdit.md)\n - [ScanlationGroupList](docs/ScanlationGroupList.md)\n - [ScanlationGroupResponse](docs/ScanlationGroupResponse.md)\n - [SendAccountActivationCode](docs/SendAccountActivationCode.md)\n - [StatisticsDetailsComments](docs/StatisticsDetailsComments.md)\n - [Tag](docs/Tag.md)\n - [TagAttributes](docs/TagAttributes.md)\n - [TagResponse](docs/TagResponse.md)\n - [UpdateMangaStatus](docs/UpdateMangaStatus.md)\n - [UploadCheckApprovalRequired200Response](docs/UploadCheckApprovalRequired200Response.md)\n - [UploadCheckApprovalRequiredRequest](docs/UploadCheckApprovalRequiredRequest.md)\n - [UploadSession](docs/UploadSession.md)\n - [UploadSessionAttributes](docs/UploadSessionAttributes.md)\n - [UploadSessionFile](docs/UploadSessionFile.md)\n - [UploadSessionFileAttributes](docs/UploadSessionFileAttributes.md)\n - [User](docs/User.md)\n - [UserAttributes](docs/UserAttributes.md)\n - [UserList](docs/UserList.md)\n - [UserResponse](docs/UserResponse.md)\n\n\n\u003ca id=\"documentation-for-authorization\"\u003e\u003c/a\u003e\n## Documentation For Authorization\n\n\nAuthentication schemes defined for the API:\n\u003ca id=\"Bearer\"\u003e\u003c/a\u003e\n### Bearer\n\n- **Type**: Bearer authentication\n\n\n## Author\n\nsupport@mangadex.org\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Fopenapi-mangadex-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahmudindev%2Fopenapi-mangadex-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Fopenapi-mangadex-python/lists"}