{"id":25097008,"url":"https://github.com/mahmudindev/oreno-comicking-openapi-python","last_synced_at":"2026-04-30T03:38:41.767Z","repository":{"id":258153562,"uuid":"865714106","full_name":"mahmudindev/oreno-comicking-openapi-python","owner":"mahmudindev","description":"Python-based generated ComicKing OpenAPI client.","archived":false,"fork":false,"pushed_at":"2025-11-07T18:13:26.000Z","size":169,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-07T20:21:44.475Z","etag":null,"topics":["client","comics","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-01T02:11:29.000Z","updated_at":"2025-11-07T18:13:30.000Z","dependencies_parsed_at":"2024-10-17T21:35:56.222Z","dependency_job_id":null,"html_url":"https://github.com/mahmudindev/oreno-comicking-openapi-python","commit_stats":null,"previous_names":["mahmudindes/oreno-comicking-openapi-python","mahmudindev/oreno-comicking-openapi-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mahmudindev/oreno-comicking-openapi-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicking-openapi-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicking-openapi-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicking-openapi-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicking-openapi-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mahmudindev","download_url":"https://codeload.github.com/mahmudindev/oreno-comicking-openapi-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicking-openapi-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32454148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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","openapi","sdk"],"created_at":"2025-02-07T17:16:11.030Z","updated_at":"2026-04-30T03:38:36.758Z","avatar_url":"https://github.com/mahmudindev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# comicking-openapi\nPHP Symfony-based comic catalog full-stack.\n\nThis Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: 0.0.1\n- Package version: 0.0.1\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 comicking_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 comicking_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 comicking_openapi\nfrom comicking_openapi.rest import ApiException\nfrom pprint import pprint\n\n# Defining the host is optional and defaults to /api\n# See configuration.py for a list of all supported configuration parameters.\nconfiguration = comicking_openapi.Configuration(\n    host = \"/api\"\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 (JWT): BearerAuth\nconfiguration = comicking_openapi.Configuration(\n    access_token = os.environ[\"BEARER_TOKEN\"]\n)\n\n\n# Enter a context with an instance of the API client\nwith comicking_openapi.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = comicking_openapi.CategoryApi(api_client)\n    new_category = comicking_openapi.NewCategory() # NewCategory | \n\n    try:\n        # Add category.\n        api_response = api_instance.add_category(new_category)\n        print(\"The response of CategoryApi-\u003eadd_category:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling CategoryApi-\u003eadd_category: %s\\n\" % e)\n\n```\n\n## Documentation for API Endpoints\n\nAll URIs are relative to */api*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*CategoryApi* | [**add_category**](docs/CategoryApi.md#add_category) | **POST** /rest/categories | Add category.\n*CategoryApi* | [**add_category_type**](docs/CategoryApi.md#add_category_type) | **POST** /rest/category-types | Add category type.\n*CategoryApi* | [**delete_category**](docs/CategoryApi.md#delete_category) | **DELETE** /rest/categories/{typeCode}:{code} | Delete category.\n*CategoryApi* | [**delete_category_type**](docs/CategoryApi.md#delete_category_type) | **DELETE** /rest/category-types/{code} | Delete category type.\n*CategoryApi* | [**get_category**](docs/CategoryApi.md#get_category) | **GET** /rest/categories/{typeCode}:{code} | Get category.\n*CategoryApi* | [**get_category_type**](docs/CategoryApi.md#get_category_type) | **GET** /rest/category-types/{code} | Get category type.\n*CategoryApi* | [**list_category**](docs/CategoryApi.md#list_category) | **GET** /rest/categories | List category.\n*CategoryApi* | [**list_category_type**](docs/CategoryApi.md#list_category_type) | **GET** /rest/category-types | List category type.\n*CategoryApi* | [**update_category**](docs/CategoryApi.md#update_category) | **PATCH** /rest/categories/{typeCode}:{code} | Update category.\n*CategoryApi* | [**update_category_type**](docs/CategoryApi.md#update_category_type) | **PATCH** /rest/category-types/{code} | Update category type.\n*CharacterApi* | [**add_character**](docs/CharacterApi.md#add_character) | **POST** /rest/characters | Add character.\n*CharacterApi* | [**delete_character**](docs/CharacterApi.md#delete_character) | **DELETE** /rest/characters/{code} | Delete character.\n*CharacterApi* | [**get_character**](docs/CharacterApi.md#get_character) | **GET** /rest/characters/{code} | Get character.\n*CharacterApi* | [**list_character**](docs/CharacterApi.md#list_character) | **GET** /rest/characters | List character.\n*CharacterApi* | [**update_character**](docs/CharacterApi.md#update_character) | **PATCH** /rest/characters/{code} | Update character.\n*ComicApi* | [**add_comic**](docs/ComicApi.md#add_comic) | **POST** /rest/comics | Add comic.\n*ComicApi* | [**add_comic_author**](docs/ComicApi.md#add_comic_author) | **POST** /rest/comics/{comicCode}/authors | Add comic author.\n*ComicApi* | [**add_comic_author_note**](docs/ComicApi.md#add_comic_author_note) | **POST** /rest/comics/{comicCode}/authors/{authorTypeCode}:{authorPersonCode}/notes | Add comic author note.\n*ComicApi* | [**add_comic_author_type**](docs/ComicApi.md#add_comic_author_type) | **POST** /rest/comic-author-types | Add comic author type.\n*ComicApi* | [**add_comic_category**](docs/ComicApi.md#add_comic_category) | **POST** /rest/comics/{comicCode}/categories | Add comic category.\n*ComicApi* | [**add_comic_character**](docs/ComicApi.md#add_comic_character) | **POST** /rest/comics/{comicCode}/characters | Add comic character.\n*ComicApi* | [**add_comic_cover**](docs/ComicApi.md#add_comic_cover) | **POST** /rest/comics/{comicCode}/covers | Add comic cover.\n*ComicApi* | [**add_comic_external**](docs/ComicApi.md#add_comic_external) | **POST** /rest/comics/{comicCode}/externals | Add comic external.\n*ComicApi* | [**add_comic_relation**](docs/ComicApi.md#add_comic_relation) | **POST** /rest/comics/{comicCode}/relations | Add comic relation.\n*ComicApi* | [**add_comic_relation_type**](docs/ComicApi.md#add_comic_relation_type) | **POST** /rest/comic-relation-types | Add comic relation type.\n*ComicApi* | [**add_comic_serialization**](docs/ComicApi.md#add_comic_serialization) | **POST** /rest/comics/{comicCode}/serializations | Add comic serialization.\n*ComicApi* | [**add_comic_synopsis**](docs/ComicApi.md#add_comic_synopsis) | **POST** /rest/comics/{comicCode}/synopses | Add comic synopsis.\n*ComicApi* | [**add_comic_tag**](docs/ComicApi.md#add_comic_tag) | **POST** /rest/comics/{comicCode}/tags | Add comic tag.\n*ComicApi* | [**add_comic_title**](docs/ComicApi.md#add_comic_title) | **POST** /rest/comics/{comicCode}/titles | Add comic title.\n*ComicApi* | [**delete_comic**](docs/ComicApi.md#delete_comic) | **DELETE** /rest/comics/{code} | Delete comic.\n*ComicApi* | [**delete_comic_author**](docs/ComicApi.md#delete_comic_author) | **DELETE** /rest/comics/{comicCode}/authors/{typeCode}:{personCode} | Delete comic author.\n*ComicApi* | [**delete_comic_author_note**](docs/ComicApi.md#delete_comic_author_note) | **DELETE** /rest/comics/{comicCode}/authors/{authorTypeCode}:{authorPersonCode}/notes/{ulid} | Delete comic author note.\n*ComicApi* | [**delete_comic_author_type**](docs/ComicApi.md#delete_comic_author_type) | **DELETE** /rest/comic-author-types/{code} | Delete comic author type.\n*ComicApi* | [**delete_comic_category**](docs/ComicApi.md#delete_comic_category) | **DELETE** /rest/comics/{comicCode}/categories/{categoryTypeCode}:{categoryCode} | Delete comic category.\n*ComicApi* | [**delete_comic_character**](docs/ComicApi.md#delete_comic_character) | **DELETE** /rest/comics/{comicCode}/characters/{characterCode} | Delete comic character.\n*ComicApi* | [**delete_comic_cover**](docs/ComicApi.md#delete_comic_cover) | **DELETE** /rest/comics/{comicCode}/covers/{ulid} | Delete comic cover.\n*ComicApi* | [**delete_comic_external**](docs/ComicApi.md#delete_comic_external) | **DELETE** /rest/comics/{comicCode}/externals/{ulid} | Delete comic external.\n*ComicApi* | [**delete_comic_relation**](docs/ComicApi.md#delete_comic_relation) | **DELETE** /rest/comics/{comicCode}/relations/{typeCode}:{childCode} | Delete comic relation.\n*ComicApi* | [**delete_comic_relation_type**](docs/ComicApi.md#delete_comic_relation_type) | **DELETE** /rest/comic-relation-types/{code} | Delete comic relation type.\n*ComicApi* | [**delete_comic_serialization**](docs/ComicApi.md#delete_comic_serialization) | **DELETE** /rest/comics/{comicCode}/serializations/{magazineCode} | Delete comic serialization.\n*ComicApi* | [**delete_comic_synopsis**](docs/ComicApi.md#delete_comic_synopsis) | **DELETE** /rest/comics/{comicCode}/synopses/{ulid} | Delete comic synopsis.\n*ComicApi* | [**delete_comic_tag**](docs/ComicApi.md#delete_comic_tag) | **DELETE** /rest/comics/{comicCode}/tags/{tagTypeCode}:{tagCode} | Delete comic tag.\n*ComicApi* | [**delete_comic_title**](docs/ComicApi.md#delete_comic_title) | **DELETE** /rest/comics/{comicCode}/titles/{ulid} | Delete comic title.\n*ComicApi* | [**get_comic**](docs/ComicApi.md#get_comic) | **GET** /rest/comics/{code} | Get comic.\n*ComicApi* | [**get_comic_author**](docs/ComicApi.md#get_comic_author) | **GET** /rest/comics/{comicCode}/authors/{typeCode}:{personCode} | Get comic author.\n*ComicApi* | [**get_comic_author_note**](docs/ComicApi.md#get_comic_author_note) | **GET** /rest/comics/{comicCode}/authors/{authorTypeCode}:{authorPersonCode}/notes/{ulid} | Get comic author note.\n*ComicApi* | [**get_comic_author_type**](docs/ComicApi.md#get_comic_author_type) | **GET** /rest/comic-author-types/{code} | Get comic author type.\n*ComicApi* | [**get_comic_category**](docs/ComicApi.md#get_comic_category) | **GET** /rest/comics/{comicCode}/categories/{categoryTypeCode}:{categoryCode} | Get comic category.\n*ComicApi* | [**get_comic_character**](docs/ComicApi.md#get_comic_character) | **GET** /rest/comics/{comicCode}/characters/{characterCode} | Get comic character.\n*ComicApi* | [**get_comic_cover**](docs/ComicApi.md#get_comic_cover) | **GET** /rest/comics/{comicCode}/covers/{ulid} | Get comic cover.\n*ComicApi* | [**get_comic_external**](docs/ComicApi.md#get_comic_external) | **GET** /rest/comics/{comicCode}/externals/{ulid} | Get comic external.\n*ComicApi* | [**get_comic_relation**](docs/ComicApi.md#get_comic_relation) | **GET** /rest/comics/{comicCode}/relations/{typeCode}:{childCode} | Get comic relation.\n*ComicApi* | [**get_comic_relation_type**](docs/ComicApi.md#get_comic_relation_type) | **GET** /rest/comic-relation-types/{code} | Get comic relation type.\n*ComicApi* | [**get_comic_serialization**](docs/ComicApi.md#get_comic_serialization) | **GET** /rest/comics/{comicCode}/serializations/{magazineCode} | Get comic serialization.\n*ComicApi* | [**get_comic_synopsis**](docs/ComicApi.md#get_comic_synopsis) | **GET** /rest/comics/{comicCode}/synopses/{ulid} | Get comic synopsis.\n*ComicApi* | [**get_comic_tag**](docs/ComicApi.md#get_comic_tag) | **GET** /rest/comics/{comicCode}/tags/{tagTypeCode}:{tagCode} | Get comic tag.\n*ComicApi* | [**get_comic_title**](docs/ComicApi.md#get_comic_title) | **GET** /rest/comics/{comicCode}/titles/{ulid} | Get comic title.\n*ComicApi* | [**list_comic**](docs/ComicApi.md#list_comic) | **GET** /rest/comics | List comic.\n*ComicApi* | [**list_comic_author**](docs/ComicApi.md#list_comic_author) | **GET** /rest/comics/{comicCode}/authors | List comic author.\n*ComicApi* | [**list_comic_author_note**](docs/ComicApi.md#list_comic_author_note) | **GET** /rest/comics/{comicCode}/authors/{authorTypeCode}:{authorPersonCode}/notes | List comic author note.\n*ComicApi* | [**list_comic_author_type**](docs/ComicApi.md#list_comic_author_type) | **GET** /rest/comic-author-types | List comic author type.\n*ComicApi* | [**list_comic_category**](docs/ComicApi.md#list_comic_category) | **GET** /rest/comics/{comicCode}/categories | List comic category.\n*ComicApi* | [**list_comic_character**](docs/ComicApi.md#list_comic_character) | **GET** /rest/comics/{comicCode}/characters | List comic character.\n*ComicApi* | [**list_comic_cover**](docs/ComicApi.md#list_comic_cover) | **GET** /rest/comics/{comicCode}/covers | List comic cover.\n*ComicApi* | [**list_comic_external**](docs/ComicApi.md#list_comic_external) | **GET** /rest/comics/{comicCode}/externals | List comic external.\n*ComicApi* | [**list_comic_relation**](docs/ComicApi.md#list_comic_relation) | **GET** /rest/comics/{comicCode}/relations | List comic relation.\n*ComicApi* | [**list_comic_relation_type**](docs/ComicApi.md#list_comic_relation_type) | **GET** /rest/comic-relation-types | List comic relation type.\n*ComicApi* | [**list_comic_serialization**](docs/ComicApi.md#list_comic_serialization) | **GET** /rest/comics/{comicCode}/serializations | List comic serialization.\n*ComicApi* | [**list_comic_synopsis**](docs/ComicApi.md#list_comic_synopsis) | **GET** /rest/comics/{comicCode}/synopses | List comic synopsis.\n*ComicApi* | [**list_comic_tag**](docs/ComicApi.md#list_comic_tag) | **GET** /rest/comics/{comicCode}/tags | List comic tag.\n*ComicApi* | [**list_comic_title**](docs/ComicApi.md#list_comic_title) | **GET** /rest/comics/{comicCode}/titles | List comic title.\n*ComicApi* | [**update_comic**](docs/ComicApi.md#update_comic) | **PATCH** /rest/comics/{code} | Update comic.\n*ComicApi* | [**update_comic_author**](docs/ComicApi.md#update_comic_author) | **PATCH** /rest/comics/{comicCode}/authors/{typeCode}:{personCode} | Update comic author.\n*ComicApi* | [**update_comic_author_note**](docs/ComicApi.md#update_comic_author_note) | **PATCH** /rest/comics/{comicCode}/authors/{authorTypeCode}:{authorPersonCode}/notes/{ulid} | Update comic author note.\n*ComicApi* | [**update_comic_author_type**](docs/ComicApi.md#update_comic_author_type) | **PATCH** /rest/comic-author-types/{code} | Update comic author type.\n*ComicApi* | [**update_comic_category**](docs/ComicApi.md#update_comic_category) | **PATCH** /rest/comics/{comicCode}/categories/{categoryTypeCode}:{categoryCode} | Update comic category.\n*ComicApi* | [**update_comic_character**](docs/ComicApi.md#update_comic_character) | **PATCH** /rest/comics/{comicCode}/characters/{characterCode} | Update comic character.\n*ComicApi* | [**update_comic_cover**](docs/ComicApi.md#update_comic_cover) | **PATCH** /rest/comics/{comicCode}/covers/{ulid} | Update comic cover.\n*ComicApi* | [**update_comic_external**](docs/ComicApi.md#update_comic_external) | **PATCH** /rest/comics/{comicCode}/externals/{ulid} | Update comic external.\n*ComicApi* | [**update_comic_relation**](docs/ComicApi.md#update_comic_relation) | **PATCH** /rest/comics/{comicCode}/relations/{typeCode}:{childCode} | Update comic relation.\n*ComicApi* | [**update_comic_relation_type**](docs/ComicApi.md#update_comic_relation_type) | **PATCH** /rest/comic-relation-types/{code} | Update comic relation type.\n*ComicApi* | [**update_comic_serialization**](docs/ComicApi.md#update_comic_serialization) | **PATCH** /rest/comics/{comicCode}/serializations/{magazineCode} | Update comic serialization.\n*ComicApi* | [**update_comic_synopsis**](docs/ComicApi.md#update_comic_synopsis) | **PATCH** /rest/comics/{comicCode}/synopses/{ulid} | Update comic synopsis.\n*ComicApi* | [**update_comic_tag**](docs/ComicApi.md#update_comic_tag) | **PATCH** /rest/comics/{comicCode}/tags/{tagTypeCode}:{tagCode} | Update comic tag.\n*ComicApi* | [**update_comic_title**](docs/ComicApi.md#update_comic_title) | **PATCH** /rest/comics/{comicCode}/titles/{ulid} | Update comic title.\n*ComicChapterApi* | [**add_comic_chapter**](docs/ComicChapterApi.md#add_comic_chapter) | **POST** /rest/comics/{comicCode}/chapters | Add comic chapter.\n*ComicChapterApi* | [**add_comic_chapter_title**](docs/ComicChapterApi.md#add_comic_chapter_title) | **POST** /rest/comics/{comicCode}/chapters/{chapterNV}/titles | Add comic chapter title.\n*ComicChapterApi* | [**delete_comic_chapter**](docs/ComicChapterApi.md#delete_comic_chapter) | **DELETE** /rest/comics/{comicCode}/chapters/{nv} | Delete comic chapter.\n*ComicChapterApi* | [**delete_comic_chapter_title**](docs/ComicChapterApi.md#delete_comic_chapter_title) | **DELETE** /rest/comics/{comicCode}/chapters/{chapterNV}/titles/{ulid} | Delete comic chapter title.\n*ComicChapterApi* | [**get_comic_chapter**](docs/ComicChapterApi.md#get_comic_chapter) | **GET** /rest/comics/{comicCode}/chapters/{nv} | Get comic chapter.\n*ComicChapterApi* | [**get_comic_chapter_title**](docs/ComicChapterApi.md#get_comic_chapter_title) | **GET** /rest/comics/{comicCode}/chapters/{chapterNV}/titles/{ulid} | Get comic chapter title.\n*ComicChapterApi* | [**list_comic_chapter**](docs/ComicChapterApi.md#list_comic_chapter) | **GET** /rest/comics/{comicCode}/chapters | List comic chapter.\n*ComicChapterApi* | [**list_comic_chapter_title**](docs/ComicChapterApi.md#list_comic_chapter_title) | **GET** /rest/comics/{comicCode}/chapters/{chapterNV}/titles | List comic chapter title.\n*ComicChapterApi* | [**update_comic_chapter**](docs/ComicChapterApi.md#update_comic_chapter) | **PATCH** /rest/comics/{comicCode}/chapters/{nv} | Update comic chapter.\n*ComicChapterApi* | [**update_comic_chapter_title**](docs/ComicChapterApi.md#update_comic_chapter_title) | **PATCH** /rest/comics/{comicCode}/chapters/{chapterNV}/titles/{ulid} | Update comic chapter title.\n*ComicVolumeApi* | [**add_comic_volume**](docs/ComicVolumeApi.md#add_comic_volume) | **POST** /rest/comics/{comicCode}/volumes | Add comic volume.\n*ComicVolumeApi* | [**add_comic_volume_cover**](docs/ComicVolumeApi.md#add_comic_volume_cover) | **POST** /rest/comics/{comicCode}/volumes/{volumeNumber}/covers | Add comic volume cover.\n*ComicVolumeApi* | [**add_comic_volume_title**](docs/ComicVolumeApi.md#add_comic_volume_title) | **POST** /rest/comics/{comicCode}/volumes/{volumeNumber}/titles | Add comic volume title.\n*ComicVolumeApi* | [**delete_comic_volume**](docs/ComicVolumeApi.md#delete_comic_volume) | **DELETE** /rest/comics/{comicCode}/volumes/{volume} | Delete comic volume.\n*ComicVolumeApi* | [**delete_comic_volume_cover**](docs/ComicVolumeApi.md#delete_comic_volume_cover) | **DELETE** /rest/comics/{comicCode}/volumes/{volumeNumber}/covers/{ulid} | Delete comic volume cover.\n*ComicVolumeApi* | [**delete_comic_volume_title**](docs/ComicVolumeApi.md#delete_comic_volume_title) | **DELETE** /rest/comics/{comicCode}/volumes/{volumeNumber}/titles/{ulid} | Delete comic volume title.\n*ComicVolumeApi* | [**get_comic_volume**](docs/ComicVolumeApi.md#get_comic_volume) | **GET** /rest/comics/{comicCode}/volumes/{volume} | Get comic volume.\n*ComicVolumeApi* | [**get_comic_volume_cover**](docs/ComicVolumeApi.md#get_comic_volume_cover) | **GET** /rest/comics/{comicCode}/volumes/{volumeNumber}/covers/{ulid} | Get comic volume cover.\n*ComicVolumeApi* | [**get_comic_volume_title**](docs/ComicVolumeApi.md#get_comic_volume_title) | **GET** /rest/comics/{comicCode}/volumes/{volumeNumber}/titles/{ulid} | Get comic volume title.\n*ComicVolumeApi* | [**list_comic_volume**](docs/ComicVolumeApi.md#list_comic_volume) | **GET** /rest/comics/{comicCode}/volumes | List comic volume.\n*ComicVolumeApi* | [**list_comic_volume_cover**](docs/ComicVolumeApi.md#list_comic_volume_cover) | **GET** /rest/comics/{comicCode}/volumes/{volumeNumber}/covers | List comic volume cover.\n*ComicVolumeApi* | [**list_comic_volume_title**](docs/ComicVolumeApi.md#list_comic_volume_title) | **GET** /rest/comics/{comicCode}/volumes/{volumeNumber}/titles | List comic volume title.\n*ComicVolumeApi* | [**update_comic_volume**](docs/ComicVolumeApi.md#update_comic_volume) | **PATCH** /rest/comics/{comicCode}/volumes/{volume} | Update comic volume.\n*ComicVolumeApi* | [**update_comic_volume_cover**](docs/ComicVolumeApi.md#update_comic_volume_cover) | **PATCH** /rest/comics/{comicCode}/volumes/{volumeNumber}/covers/{ulid} | Update volume comic cover.\n*ComicVolumeApi* | [**update_comic_volume_title**](docs/ComicVolumeApi.md#update_comic_volume_title) | **PATCH** /rest/comics/{comicCode}/volumes/{volumeNumber}/titles/{ulid} | Update comic volume title.\n*LanguageApi* | [**add_language**](docs/LanguageApi.md#add_language) | **POST** /rest/languages | Add language.\n*LanguageApi* | [**delete_language**](docs/LanguageApi.md#delete_language) | **DELETE** /rest/languages/{lang} | Delete language.\n*LanguageApi* | [**get_language**](docs/LanguageApi.md#get_language) | **GET** /rest/languages/{lang} | Get language.\n*LanguageApi* | [**list_language**](docs/LanguageApi.md#list_language) | **GET** /rest/languages | List language.\n*LanguageApi* | [**update_language**](docs/LanguageApi.md#update_language) | **PATCH** /rest/languages/{lang} | Update language.\n*LinkApi* | [**add_link**](docs/LinkApi.md#add_link) | **POST** /rest/links | Add link.\n*LinkApi* | [**delete_link**](docs/LinkApi.md#delete_link) | **DELETE** /rest/links/{href} | Delete link.\n*LinkApi* | [**get_link**](docs/LinkApi.md#get_link) | **GET** /rest/links/{href} | Get link.\n*LinkApi* | [**list_link**](docs/LinkApi.md#list_link) | **GET** /rest/links | List link.\n*LinkApi* | [**update_link**](docs/LinkApi.md#update_link) | **PATCH** /rest/links/{href} | Update link.\n*MagazineApi* | [**add_magazine**](docs/MagazineApi.md#add_magazine) | **POST** /rest/magazines | Add magazine.\n*MagazineApi* | [**delete_magazine**](docs/MagazineApi.md#delete_magazine) | **DELETE** /rest/magazines/{code} | Delete magazine.\n*MagazineApi* | [**get_magazine**](docs/MagazineApi.md#get_magazine) | **GET** /rest/magazines/{code} | Get magazine.\n*MagazineApi* | [**list_magazine**](docs/MagazineApi.md#list_magazine) | **GET** /rest/magazines | List magazine.\n*MagazineApi* | [**update_magazine**](docs/MagazineApi.md#update_magazine) | **PATCH** /rest/magazines/{code} | Update magazine.\n*PersonApi* | [**add_person**](docs/PersonApi.md#add_person) | **POST** /rest/people | Add person.\n*PersonApi* | [**delete_person**](docs/PersonApi.md#delete_person) | **DELETE** /rest/people/{code} | Delete person.\n*PersonApi* | [**get_person**](docs/PersonApi.md#get_person) | **GET** /rest/people/{code} | Get person.\n*PersonApi* | [**list_person**](docs/PersonApi.md#list_person) | **GET** /rest/people | List person.\n*PersonApi* | [**update_person**](docs/PersonApi.md#update_person) | **PATCH** /rest/people/{code} | Update person.\n*TagApi* | [**add_tag**](docs/TagApi.md#add_tag) | **POST** /rest/tags | Add tag.\n*TagApi* | [**add_tag_type**](docs/TagApi.md#add_tag_type) | **POST** /rest/tag-types | Add tag type.\n*TagApi* | [**delete_tag**](docs/TagApi.md#delete_tag) | **DELETE** /rest/tags/{typeCode}:{code} | Delete tag.\n*TagApi* | [**delete_tag_type**](docs/TagApi.md#delete_tag_type) | **DELETE** /rest/tag-types/{code} | Delete tag type.\n*TagApi* | [**get_tag**](docs/TagApi.md#get_tag) | **GET** /rest/tags/{typeCode}:{code} | Get tag.\n*TagApi* | [**get_tag_type**](docs/TagApi.md#get_tag_type) | **GET** /rest/tag-types/{code} | Get tag type.\n*TagApi* | [**list_tag**](docs/TagApi.md#list_tag) | **GET** /rest/tags | List tag.\n*TagApi* | [**list_tag_type**](docs/TagApi.md#list_tag_type) | **GET** /rest/tag-types | List tag type.\n*TagApi* | [**update_tag**](docs/TagApi.md#update_tag) | **PATCH** /rest/tags/{typeCode}:{code} | Update tag.\n*TagApi* | [**update_tag_type**](docs/TagApi.md#update_tag_type) | **PATCH** /rest/tag-types/{code} | Update tag type.\n*WebsiteApi* | [**add_website**](docs/WebsiteApi.md#add_website) | **POST** /rest/websites | Add website.\n*WebsiteApi* | [**delete_website**](docs/WebsiteApi.md#delete_website) | **DELETE** /rest/websites/{host} | Delete website.\n*WebsiteApi* | [**get_website**](docs/WebsiteApi.md#get_website) | **GET** /rest/websites/{host} | Get website.\n*WebsiteApi* | [**list_website**](docs/WebsiteApi.md#list_website) | **GET** /rest/websites | List website.\n*WebsiteApi* | [**update_website**](docs/WebsiteApi.md#update_website) | **PATCH** /rest/websites/{host} | Update website.\n\n\n## Documentation For Models\n\n - [Category](docs/Category.md)\n - [Character](docs/Character.md)\n - [Comic](docs/Comic.md)\n - [ComicAuthor](docs/ComicAuthor.md)\n - [ComicAuthorNote](docs/ComicAuthorNote.md)\n - [ComicCategory](docs/ComicCategory.md)\n - [ComicChapter](docs/ComicChapter.md)\n - [ComicChapterTitle](docs/ComicChapterTitle.md)\n - [ComicCharacter](docs/ComicCharacter.md)\n - [ComicCover](docs/ComicCover.md)\n - [ComicExternal](docs/ComicExternal.md)\n - [ComicRelation](docs/ComicRelation.md)\n - [ComicSerialization](docs/ComicSerialization.md)\n - [ComicSynopsis](docs/ComicSynopsis.md)\n - [ComicTag](docs/ComicTag.md)\n - [ComicTitle](docs/ComicTitle.md)\n - [ComicVolume](docs/ComicVolume.md)\n - [ComicVolumeCover](docs/ComicVolumeCover.md)\n - [ComicVolumeTitle](docs/ComicVolumeTitle.md)\n - [Error](docs/Error.md)\n - [GenericType](docs/GenericType.md)\n - [Language](docs/Language.md)\n - [Link](docs/Link.md)\n - [Magazine](docs/Magazine.md)\n - [NewCategory](docs/NewCategory.md)\n - [NewCharacter](docs/NewCharacter.md)\n - [NewComic](docs/NewComic.md)\n - [NewComicAuthor](docs/NewComicAuthor.md)\n - [NewComicAuthorNote](docs/NewComicAuthorNote.md)\n - [NewComicCategory](docs/NewComicCategory.md)\n - [NewComicChapter](docs/NewComicChapter.md)\n - [NewComicChapterTitle](docs/NewComicChapterTitle.md)\n - [NewComicCharacter](docs/NewComicCharacter.md)\n - [NewComicCover](docs/NewComicCover.md)\n - [NewComicExternal](docs/NewComicExternal.md)\n - [NewComicRelation](docs/NewComicRelation.md)\n - [NewComicSerialization](docs/NewComicSerialization.md)\n - [NewComicSynopsis](docs/NewComicSynopsis.md)\n - [NewComicTag](docs/NewComicTag.md)\n - [NewComicTitle](docs/NewComicTitle.md)\n - [NewComicVolume](docs/NewComicVolume.md)\n - [NewComicVolumeCover](docs/NewComicVolumeCover.md)\n - [NewComicVolumeTitle](docs/NewComicVolumeTitle.md)\n - [NewGenericType](docs/NewGenericType.md)\n - [NewLanguage](docs/NewLanguage.md)\n - [NewLink](docs/NewLink.md)\n - [NewMagazine](docs/NewMagazine.md)\n - [NewPerson](docs/NewPerson.md)\n - [NewTag](docs/NewTag.md)\n - [NewWebsite](docs/NewWebsite.md)\n - [Person](docs/Person.md)\n - [SetCategory](docs/SetCategory.md)\n - [SetCharacter](docs/SetCharacter.md)\n - [SetComic](docs/SetComic.md)\n - [SetComicAuthor](docs/SetComicAuthor.md)\n - [SetComicAuthorNote](docs/SetComicAuthorNote.md)\n - [SetComicCategory](docs/SetComicCategory.md)\n - [SetComicChapter](docs/SetComicChapter.md)\n - [SetComicChapterTitle](docs/SetComicChapterTitle.md)\n - [SetComicCharacter](docs/SetComicCharacter.md)\n - [SetComicCover](docs/SetComicCover.md)\n - [SetComicExternal](docs/SetComicExternal.md)\n - [SetComicRelation](docs/SetComicRelation.md)\n - [SetComicSerialization](docs/SetComicSerialization.md)\n - [SetComicSynopsis](docs/SetComicSynopsis.md)\n - [SetComicTag](docs/SetComicTag.md)\n - [SetComicTitle](docs/SetComicTitle.md)\n - [SetComicVolume](docs/SetComicVolume.md)\n - [SetComicVolumeCover](docs/SetComicVolumeCover.md)\n - [SetComicVolumeTitle](docs/SetComicVolumeTitle.md)\n - [SetGenericType](docs/SetGenericType.md)\n - [SetLanguage](docs/SetLanguage.md)\n - [SetLink](docs/SetLink.md)\n - [SetMagazine](docs/SetMagazine.md)\n - [SetPerson](docs/SetPerson.md)\n - [SetTag](docs/SetTag.md)\n - [SetWebsite](docs/SetWebsite.md)\n - [Tag](docs/Tag.md)\n - [Website](docs/Website.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=\"BearerAuth\"\u003e\u003c/a\u003e\n### BearerAuth\n\n- **Type**: Bearer authentication (JWT)\n\n\n## Author\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Foreno-comicking-openapi-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahmudindev%2Foreno-comicking-openapi-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Foreno-comicking-openapi-python/lists"}