{"id":25384192,"url":"https://github.com/mahmudindev/oreno-comicbagi-openapi-python","last_synced_at":"2026-05-20T07:01:46.846Z","repository":{"id":276339592,"uuid":"869952864","full_name":"mahmudindev/oreno-comicbagi-openapi-python","owner":"mahmudindev","description":"Python-based generated ComicBagi OpenAPI client. ","archived":false,"fork":false,"pushed_at":"2024-10-16T07:17:44.000Z","size":61,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-09T14:43:41.111Z","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}},"created_at":"2024-10-09T07:30:03.000Z","updated_at":"2024-10-16T07:17:48.000Z","dependencies_parsed_at":"2025-02-07T17:27:33.851Z","dependency_job_id":null,"html_url":"https://github.com/mahmudindev/oreno-comicbagi-openapi-python","commit_stats":null,"previous_names":["mahmudindev/oreno-comicbagi-openapi-python"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mahmudindev/oreno-comicbagi-openapi-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicbagi-openapi-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicbagi-openapi-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicbagi-openapi-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicbagi-openapi-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mahmudindev","download_url":"https://codeload.github.com/mahmudindev/oreno-comicbagi-openapi-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mahmudindev%2Foreno-comicbagi-openapi-python/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261270226,"owners_count":23133516,"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","openapi","sdk"],"created_at":"2025-02-15T08:37:55.628Z","updated_at":"2026-05-20T07:01:46.839Z","avatar_url":"https://github.com/mahmudindev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# comicbagi-openapi\nComic hosting catalog provider.\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 comicbagi_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 comicbagi_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 comicbagi_openapi\nfrom comicbagi_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 = comicbagi_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 = comicbagi_openapi.Configuration(\n    access_token = os.environ[\"BEARER_TOKEN\"]\n)\n\n\n# Enter a context with an instance of the API client\nwith comicbagi_openapi.ApiClient(configuration) as api_client:\n    # Create an instance of the API class\n    api_instance = comicbagi_openapi.ComicApi(api_client)\n    new_comic = comicbagi_openapi.NewComic() # NewComic | \n\n    try:\n        # Add comic.\n        api_response = api_instance.add_comic(new_comic)\n        print(\"The response of ComicApi-\u003eadd_comic:\\n\")\n        pprint(api_response)\n    except ApiException as e:\n        print(\"Exception when calling ComicApi-\u003eadd_comic: %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*ComicApi* | [**add_comic**](docs/ComicApi.md#add_comic) | **POST** /rest/comics | Add comic.\n*ComicApi* | [**add_comic_provider**](docs/ComicApi.md#add_comic_provider) | **POST** /rest/comics/{comicCode}/providers | Add comic provider.\n*ComicApi* | [**delete_comic**](docs/ComicApi.md#delete_comic) | **DELETE** /rest/comics/{code} | Delete comic.\n*ComicApi* | [**delete_comic_provider**](docs/ComicApi.md#delete_comic_provider) | **DELETE** /rest/comics/{comicCode}/providers/{ulid} | Delete comic provider.\n*ComicApi* | [**get_comic**](docs/ComicApi.md#get_comic) | **GET** /rest/comics/{code} | Get comic.\n*ComicApi* | [**get_comic_provider**](docs/ComicApi.md#get_comic_provider) | **GET** /rest/comics/{comicCode}/providers/{ulid} | Get comic provider.\n*ComicApi* | [**list_comic**](docs/ComicApi.md#list_comic) | **GET** /rest/comics | List comic.\n*ComicApi* | [**list_comic_provider**](docs/ComicApi.md#list_comic_provider) | **GET** /rest/comics/{comicCode}/providers | List comic provider.\n*ComicApi* | [**update_comic**](docs/ComicApi.md#update_comic) | **PATCH** /rest/comics/{code} | Update comic.\n*ComicApi* | [**update_comic_provider**](docs/ComicApi.md#update_comic_provider) | **PATCH** /rest/comics/{comicCode}/providers/{ulid} | Update comic provider.\n*ComicChapterApi* | [**add_comic_chapter**](docs/ComicChapterApi.md#add_comic_chapter) | **POST** /rest/comics/{comicCode}/chapters | Add comic chapter.\n*ComicChapterApi* | [**add_comic_chapter_provider**](docs/ComicChapterApi.md#add_comic_chapter_provider) | **POST** /rest/comics/{comicCode}/chapters/{chapterNV}/providers | Add comic chapter provider.\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_provider**](docs/ComicChapterApi.md#delete_comic_chapter_provider) | **DELETE** /rest/comics/{comicCode}/chapters/{chapterNV}/providers/{ulid} | Delete comic chapter provider.\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_provider**](docs/ComicChapterApi.md#get_comic_chapter_provider) | **GET** /rest/comics/{comicCode}/chapters/{chapterNV}/providers/{ulid} | Get comic chapter provider.\n*ComicChapterApi* | [**list_comic_chapter**](docs/ComicChapterApi.md#list_comic_chapter) | **GET** /rest/comics/{comicCode}/chapters | List comic chapter.\n*ComicChapterApi* | [**list_comic_chapter_provider**](docs/ComicChapterApi.md#list_comic_chapter_provider) | **GET** /rest/comics/{comicCode}/chapters/{chapterNV}/providers | List comic chapter properties.\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_provider**](docs/ComicChapterApi.md#update_comic_chapter_provider) | **PATCH** /rest/comics/{comicCode}/chapters/{chapterNV}/providers/{ulid} | Update comic chapter provider.\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*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 - [Comic](docs/Comic.md)\n - [ComicChapter](docs/ComicChapter.md)\n - [ComicChapterProvider](docs/ComicChapterProvider.md)\n - [ComicProvider](docs/ComicProvider.md)\n - [Error](docs/Error.md)\n - [Language](docs/Language.md)\n - [Link](docs/Link.md)\n - [NewComic](docs/NewComic.md)\n - [NewComicChapter](docs/NewComicChapter.md)\n - [NewComicChapterProvider](docs/NewComicChapterProvider.md)\n - [NewComicProvider](docs/NewComicProvider.md)\n - [NewLanguage](docs/NewLanguage.md)\n - [NewLink](docs/NewLink.md)\n - [NewWebsite](docs/NewWebsite.md)\n - [SetComic](docs/SetComic.md)\n - [SetComicChapter](docs/SetComicChapter.md)\n - [SetComicChapterProvider](docs/SetComicChapterProvider.md)\n - [SetComicProvider](docs/SetComicProvider.md)\n - [SetLanguage](docs/SetLanguage.md)\n - [SetLink](docs/SetLink.md)\n - [SetWebsite](docs/SetWebsite.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-comicbagi-openapi-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmahmudindev%2Foreno-comicbagi-openapi-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmahmudindev%2Foreno-comicbagi-openapi-python/lists"}