Himon


NameHimon JSON
Version 0.5.0 PyPI version JSON
download
home_page
SummaryA Python wrapper for League of Comic Geeks.
upload_time2023-10-06 02:38:37
maintainer
docs_urlNone
author
requires_python>=3.8
license
keywords comic comics metadata
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Himon

[![PyPI - Python](https://img.shields.io/pypi/pyversions/Himon.svg?logo=Python&label=Python&style=flat-square)](https://pypi.python.org/pypi/Himon/)
[![PyPI - Status](https://img.shields.io/pypi/status/Himon.svg?logo=Python&label=Status&style=flat-square)](https://pypi.python.org/pypi/Himon/)
[![PyPI - Version](https://img.shields.io/pypi/v/Himon.svg?logo=Python&label=Version&style=flat-square)](https://pypi.python.org/pypi/Himon/)
[![PyPI - License](https://img.shields.io/pypi/l/Himon.svg?logo=Python&label=License&style=flat-square)](https://opensource.org/licenses/GPL-3.0)

[![Hatch](https://img.shields.io/badge/Packaging-Hatch-4051b5?style=flat-square)](https://github.com/pypa/hatch)
[![Pre-Commit](https://img.shields.io/badge/Pre--Commit-Enabled-informational?style=flat-square&logo=pre-commit)](https://github.com/pre-commit/pre-commit)
[![Black](https://img.shields.io/badge/Code--Style-Black-000000?style=flat-square)](https://github.com/psf/black)
[![Ruff](https://img.shields.io/badge/Linter-Ruff-informational?style=flat-square)](https://github.com/charliermarsh/ruff)

[![Github - Contributors](https://img.shields.io/github/contributors/Buried-In-Code/Himon.svg?logo=Github&label=Contributors&style=flat-square)](https://github.com/Buried-In-Code/Himon/graphs/contributors)
[![Github Action - Testing](https://img.shields.io/github/actions/workflow/status/Buried-In-Code/Himon/testing.yaml?branch=main&logo=Github&label=Testing&style=flat-square)](https://github.com/Buried-In-Code/Himon/actions/workflows/testing.yaml)

[![Read the Docs](https://img.shields.io/readthedocs/himon?label=Read-the-Docs&logo=Read-the-Docs&style=flat-square)](https://himon.readthedocs.io/en/latest/?badge=latest)

A [Python](https://www.python.org/) wrapper for [League of Comic Geeks](https://leagueofcomicgeeks.com).

## Installation

```bash
pip install Himon
```

## Documentation

[Read the project documentation](https://himon.readthedocs.io/en/latest/?badge=latest)

### Example Usage

```python
from himon.league_of_comic_geeks import LeagueofComicGeeks
from himon.sqlite_cache import SQLiteCache

session = LeagueofComicGeeks(client_id="Client Id", client_secret="Client Secret", access_token=None, cache=SQLiteCache())

# Generate an access token if not supplied
if not session.access_token:
  session.access_token = session.generate_access_token()

# Search for Comic
for search in session.search(search_term="Blackest Night"):
    print(f"Search result: {search.publisher_name} - {search.series_name} - {search.title}")

# Get Series by id
series = session.series(series_id=100096)
print(f"Series: {series.series_id} - {series.title}")

# Get Comic by id
comic = session.comic(comic_id=2710631)
print(f"Comic: {comic.comic_id} - {comic.title}")
```

## Bugs/Requests

Please use the [GitHub issue tracker](https://github.com/Buried-In-Code/Himon/issues) to submit bugs or request features.

## Notes

Who or what is Himon?

> Himon is a citizen of New Genesis who secretly lives on the planet Apokolips, which is ruled by Darkseid.
>
> More details at [Himon (New Earth)](<https://dc.fandom.com/wiki/Himon_(New_Earth)>)

## Socials

[![Social - Matrix](https://img.shields.io/matrix/The-Dev-Environment:matrix.org?label=The%20Dev%20Environment&logo=matrix&style=for-the-badge)](https://matrix.to/#/#The-Dev-Environment:matrix.org)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "Himon",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "BuriedInCode <BuriedInCode@tuta.io>",
    "keywords": "comic,comics,metadata",
    "author": "",
    "author_email": "BuriedInCode <BuriedInCode@tuta.io>",
    "download_url": "https://files.pythonhosted.org/packages/dd/b0/6bc9ff884b74c585951a8e9fb4a5e88d2ee49a72cbeefbeb7894bf3da04f/himon-0.5.0.tar.gz",
    "platform": null,
    "description": "# Himon\n\n[![PyPI - Python](https://img.shields.io/pypi/pyversions/Himon.svg?logo=Python&label=Python&style=flat-square)](https://pypi.python.org/pypi/Himon/)\n[![PyPI - Status](https://img.shields.io/pypi/status/Himon.svg?logo=Python&label=Status&style=flat-square)](https://pypi.python.org/pypi/Himon/)\n[![PyPI - Version](https://img.shields.io/pypi/v/Himon.svg?logo=Python&label=Version&style=flat-square)](https://pypi.python.org/pypi/Himon/)\n[![PyPI - License](https://img.shields.io/pypi/l/Himon.svg?logo=Python&label=License&style=flat-square)](https://opensource.org/licenses/GPL-3.0)\n\n[![Hatch](https://img.shields.io/badge/Packaging-Hatch-4051b5?style=flat-square)](https://github.com/pypa/hatch)\n[![Pre-Commit](https://img.shields.io/badge/Pre--Commit-Enabled-informational?style=flat-square&logo=pre-commit)](https://github.com/pre-commit/pre-commit)\n[![Black](https://img.shields.io/badge/Code--Style-Black-000000?style=flat-square)](https://github.com/psf/black)\n[![Ruff](https://img.shields.io/badge/Linter-Ruff-informational?style=flat-square)](https://github.com/charliermarsh/ruff)\n\n[![Github - Contributors](https://img.shields.io/github/contributors/Buried-In-Code/Himon.svg?logo=Github&label=Contributors&style=flat-square)](https://github.com/Buried-In-Code/Himon/graphs/contributors)\n[![Github Action - Testing](https://img.shields.io/github/actions/workflow/status/Buried-In-Code/Himon/testing.yaml?branch=main&logo=Github&label=Testing&style=flat-square)](https://github.com/Buried-In-Code/Himon/actions/workflows/testing.yaml)\n\n[![Read the Docs](https://img.shields.io/readthedocs/himon?label=Read-the-Docs&logo=Read-the-Docs&style=flat-square)](https://himon.readthedocs.io/en/latest/?badge=latest)\n\nA [Python](https://www.python.org/) wrapper for [League of Comic Geeks](https://leagueofcomicgeeks.com).\n\n## Installation\n\n```bash\npip install Himon\n```\n\n## Documentation\n\n[Read the project documentation](https://himon.readthedocs.io/en/latest/?badge=latest)\n\n### Example Usage\n\n```python\nfrom himon.league_of_comic_geeks import LeagueofComicGeeks\nfrom himon.sqlite_cache import SQLiteCache\n\nsession = LeagueofComicGeeks(client_id=\"Client Id\", client_secret=\"Client Secret\", access_token=None, cache=SQLiteCache())\n\n# Generate an access token if not supplied\nif not session.access_token:\n  session.access_token = session.generate_access_token()\n\n# Search for Comic\nfor search in session.search(search_term=\"Blackest Night\"):\n    print(f\"Search result: {search.publisher_name} - {search.series_name} - {search.title}\")\n\n# Get Series by id\nseries = session.series(series_id=100096)\nprint(f\"Series: {series.series_id} - {series.title}\")\n\n# Get Comic by id\ncomic = session.comic(comic_id=2710631)\nprint(f\"Comic: {comic.comic_id} - {comic.title}\")\n```\n\n## Bugs/Requests\n\nPlease use the [GitHub issue tracker](https://github.com/Buried-In-Code/Himon/issues) to submit bugs or request features.\n\n## Notes\n\nWho or what is Himon?\n\n> Himon is a citizen of New Genesis who secretly lives on the planet Apokolips, which is ruled by Darkseid.\n>\n> More details at [Himon (New Earth)](<https://dc.fandom.com/wiki/Himon_(New_Earth)>)\n\n## Socials\n\n[![Social - Matrix](https://img.shields.io/matrix/The-Dev-Environment:matrix.org?label=The%20Dev%20Environment&logo=matrix&style=for-the-badge)](https://matrix.to/#/#The-Dev-Environment:matrix.org)\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A Python wrapper for League of Comic Geeks.",
    "version": "0.5.0",
    "project_urls": {
        "Documentation": "https://himon.readthedocs.io/en/latest/",
        "Homepage": "https://pypi.org/project/Himon",
        "Issues": "https://github.com/Buried-In-Code/Himon/issues",
        "Source": "https://github.com/Buried-In-Code/Himon"
    },
    "split_keywords": [
        "comic",
        "comics",
        "metadata"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4140256e7d7b56aaa6dadd3bfc4efd86713db39181917f16ef366110325d2ed3",
                "md5": "758a80703a22c95df5db683e44009f04",
                "sha256": "c12bd0a67396075fc42ab8f48793b3ef779fbaf2414c6650a8d45f309ddb790c"
            },
            "downloads": -1,
            "filename": "himon-0.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "758a80703a22c95df5db683e44009f04",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 23065,
            "upload_time": "2023-10-06T02:38:35",
            "upload_time_iso_8601": "2023-10-06T02:38:35.901295Z",
            "url": "https://files.pythonhosted.org/packages/41/40/256e7d7b56aaa6dadd3bfc4efd86713db39181917f16ef366110325d2ed3/himon-0.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ddb06bc9ff884b74c585951a8e9fb4a5e88d2ee49a72cbeefbeb7894bf3da04f",
                "md5": "3a5a0ada6dadb76a10185f08cbc212c9",
                "sha256": "874a711fdd459ee47f06e8aaa2a1d5dc024ca995a3387925635f63179b0eac2f"
            },
            "downloads": -1,
            "filename": "himon-0.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "3a5a0ada6dadb76a10185f08cbc212c9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 50814,
            "upload_time": "2023-10-06T02:38:37",
            "upload_time_iso_8601": "2023-10-06T02:38:37.553835Z",
            "url": "https://files.pythonhosted.org/packages/dd/b0/6bc9ff884b74c585951a8e9fb4a5e88d2ee49a72cbeefbeb7894bf3da04f/himon-0.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-06 02:38:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Buried-In-Code",
    "github_project": "Himon",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "himon"
}
        
Elapsed time: 0.12310s