{"id":23845792,"url":"https://github.com/metron-project/grayven","last_synced_at":"2025-09-30T13:31:50.273Z","repository":{"id":268340354,"uuid":"904000737","full_name":"Metron-Project/Grayven","owner":"Metron-Project","description":"A Python wrapper for the Grand Comics Database API.","archived":false,"fork":false,"pushed_at":"2025-01-10T21:36:51.000Z","size":217,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-18T15:16:45.153Z","etag":null,"topics":["api-wrapper","grand-comics-database","python","python-3"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/Grayven","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Metron-Project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-12-16T04:03:55.000Z","updated_at":"2025-01-10T21:36:55.000Z","dependencies_parsed_at":"2024-12-20T13:15:31.871Z","dependency_job_id":null,"html_url":"https://github.com/Metron-Project/Grayven","commit_stats":null,"previous_names":["buried-in-code/grayven","metron-project/grayven"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FGrayven","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FGrayven/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FGrayven/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FGrayven/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Metron-Project","download_url":"https://codeload.github.com/Metron-Project/Grayven/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234742221,"owners_count":18879600,"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":["api-wrapper","grand-comics-database","python","python-3"],"created_at":"2025-01-02T20:27:02.433Z","updated_at":"2025-09-30T13:31:50.268Z","avatar_url":"https://github.com/Metron-Project.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Grayven\n\n[![PyPI - Python](https://img.shields.io/pypi/pyversions/Grayven.svg?logo=Python\u0026label=Python\u0026style=flat-square)](https://pypi.python.org/pypi/Grayven/)\n[![PyPI - Status](https://img.shields.io/pypi/status/Grayven.svg?logo=Python\u0026label=Status\u0026style=flat-square)](https://pypi.python.org/pypi/Grayven/)\n[![PyPI - Version](https://img.shields.io/pypi/v/Grayven.svg?logo=Python\u0026label=Version\u0026style=flat-square)](https://pypi.python.org/pypi/Grayven/)\n[![PyPI - License](https://img.shields.io/pypi/l/Grayven.svg?logo=Python\u0026label=License\u0026style=flat-square)](https://opensource.org/licenses/MIT)\n\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-informational?logo=pre-commit\u0026style=flat-square)](https://github.com/pre-commit/pre-commit)\n[![Ruff](https://img.shields.io/badge/ruff-enabled-informational?logo=ruff\u0026style=flat-square)](https://github.com/astral-sh/ruff)\n\n[![Github - Contributors](https://img.shields.io/github/contributors/Metron-Project/Grayven.svg?logo=Github\u0026label=Contributors\u0026style=flat-square)](https://github.com/Metron-Project/Grayven/graphs/contributors)\n[![Github Action - Testing](https://img.shields.io/github/actions/workflow/status/Metron-Project/Grayven/testing.yaml?branch=main\u0026logo=Github\u0026label=Testing\u0026style=flat-square)](https://github.com/Metron-Project/Grayven/actions/workflows/testing.yaml)\n[![Github Action - Publishing](https://img.shields.io/github/actions/workflow/status/Metron-Project/Grayven/publishing.yaml?branch=main\u0026logo=Github\u0026label=Publishing\u0026style=flat-square)](https://github.com/Metron-Project/Grayven/actions/workflows/publishing.yaml)\n\n[![Read the Docs](https://img.shields.io/readthedocs/grayven?label=Read-the-Docs\u0026logo=Read-the-Docs\u0026style=flat-square)](https://grayven.readthedocs.io/en/stable)\n\nA [Python](https://www.python.org/) wrapper for the [Grand Comics Database API](https://github.com/GrandComicsDatabase/gcd-django/wiki/API).\n\n## Installation\n\n```console\npip install --user Grayven\n```\n\n### Example Usage\n\n```python\nfrom grayven.grand_comics_database import GrandComicsDatabase\nfrom grayven.sqlite_cache import SQLiteCache\n\nsession = GrandComicsDatabase(\n    email=\"email@example.com\",\n    password=\"password\",\n    cache=SQLiteCache()\n)\n\n# Search for Series\nresults = session.list_series(name=\"Green Lantern\")\nfor series in results:\n    print(f\"{series.id} | {series.name} ({series.year_began})\")\n\n# Get an issue's release date\nresult = session.get_issue(id=242700)\nprint(result.on_sale_date)\n```\n\n## Documentation\n\n- [Grayven](https://grayven.readthedocs.io/en/stable)\n- [GrandComicsDatabase API](https://github.com/GrandComicsDatabase/gcd-django/wiki/API)\n\n## Bugs/Requests\n\nPlease use the [GitHub issue tracker](https://github.com/Metron-Project/Grayven/issues) to submit bugs or request features.\n\n## Contributing\n\n- When running a new test for the first time, set the environment variables `GCD_EMAIL` to your GCD email address and `GCD_PASSWORD` to your GCD password.\n  The responses will be cached in the `tests/cache.sqlite` database without your credentials.\n\n## Socials\n\n[![Social - Matrix](https://img.shields.io/matrix/metron-general:matrix.org?label=Metron%20General\u0026logo=matrix\u0026style=for-the-badge)](https://matrix.to/#/#metron-general:matrix.org)\n[![Social - Matrix](https://img.shields.io/matrix/metron-devel:matrix.org?label=Metron%20Development\u0026logo=matrix\u0026style=for-the-badge)](https://matrix.to/#/#metron-development:matrix.org)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetron-project%2Fgrayven","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetron-project%2Fgrayven","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetron-project%2Fgrayven/lists"}