{"id":15442918,"url":"https://github.com/metron-project/simyan","last_synced_at":"2026-03-03T04:20:44.434Z","repository":{"id":38150637,"uuid":"397470974","full_name":"Metron-Project/Simyan","owner":"Metron-Project","description":"A Python wrapper for the Comicvine API.","archived":false,"fork":false,"pushed_at":"2025-07-11T20:14:36.000Z","size":11935,"stargazers_count":10,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-13T12:54:03.879Z","etag":null,"topics":["api-wrapper","comicvine-api","pypi-package","python","python-3"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/simyan","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","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,"zenodo":null}},"created_at":"2021-08-18T04:22:00.000Z","updated_at":"2025-07-09T20:57:45.000Z","dependencies_parsed_at":"2024-11-01T05:05:12.786Z","dependency_job_id":"3cae08c3-3125-4f35-be1b-982c4023eeb2","html_url":"https://github.com/Metron-Project/Simyan","commit_stats":{"total_commits":75,"total_committers":4,"mean_commits":18.75,"dds":"0.19999999999999996","last_synced_commit":"282a87c3a4d7beb30877cc06dc248733661da93d"},"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"purl":"pkg:github/Metron-Project/Simyan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FSimyan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FSimyan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FSimyan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FSimyan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Metron-Project","download_url":"https://codeload.github.com/Metron-Project/Simyan/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2FSimyan/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266048704,"owners_count":23868744,"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","comicvine-api","pypi-package","python","python-3"],"created_at":"2024-10-01T19:31:36.885Z","updated_at":"2026-03-03T04:20:44.429Z","avatar_url":"https://github.com/Metron-Project.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simyan\n\n[![PyPI - Python](https://img.shields.io/pypi/pyversions/Simyan.svg?logo=Python\u0026label=Python\u0026style=flat-square)](https://pypi.python.org/pypi/Simyan/)\n[![PyPI - Status](https://img.shields.io/pypi/status/Simyan.svg?logo=Python\u0026label=Status\u0026style=flat-square)](https://pypi.python.org/pypi/Simyan/)\n[![PyPI - Version](https://img.shields.io/pypi/v/Simyan.svg?logo=Python\u0026label=Version\u0026style=flat-square)](https://pypi.python.org/pypi/Simyan/)\n[![PyPI - License](https://img.shields.io/pypi/l/Simyan.svg?logo=Python\u0026label=License\u0026style=flat-square)](https://opensource.org/licenses/GPL-3.0)\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[![Linting](https://github.com/Metron-Project/Simyan/actions/workflows/linting.yaml/badge.svg)](https://github.com/Metron-Project/Simyan/actions/workflows/linting.yaml)\n[![Testing](https://github.com/Metron-Project/Simyan/actions/workflows/testing.yaml/badge.svg)](https://github.com/Metron-Project/Simyan/actions/workflows/testing.yaml)\n[![Publishing](https://github.com/Metron-Project/Simyan/actions/workflows/publishing.yaml/badge.svg)](https://github.com/Metron-Project/Simyan/actions/workflows/publishing.yaml)\n[![Read the Docs](https://img.shields.io/readthedocs/simyan?label=Read-the-Docs\u0026logo=Read-the-Docs)](https://simyan.readthedocs.io/en/stable)\n\nA [Python](https://www.python.org/) wrapper for the [Comicvine API](https://comicvine.gamespot.com/api/).\n\n## Installation\n\n```sh\npip install Simyan\n```\n\n### Example Usage\n\n```python\nfrom simyan.cache import SQLiteCache\nfrom simyan.comicvine import Comicvine\n\nsession = Comicvine(api_key=\"Comicvine API Key\", cache=SQLiteCache())\n\n# Search for Publisher\nresults = session.list_publishers(params={\"filter\": \"name:DC Comics\"})\nfor publisher in results:\n    print(f\"{publisher.id} | {publisher.name} - {publisher.site_url}\")\n\n# Get details for a Volume\nresult = session.get_volume(volume_id=26266)\nprint(result.summary)\n```\n\n## Documentation\n\n- [Simyan](https://simyan.readthedocs.io/en/stable)\n- [Comicvine API](https://comicvine.gamespot.com/api/documentation)\n\n## Bugs/Requests\n\nPlease use the [GitHub issue tracker](https://github.com/Metron-Project/Simyan/issues) to submit bugs or request features.\n\n## Contributing\n\n- When running a new test for the first time, set the environment variable `COMICVINE__API_KEY` to your Comicvine API key.\n  The responses will be cached in the `tests/cache.sqlite` database without your key.\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%2Fsimyan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetron-project%2Fsimyan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetron-project%2Fsimyan/lists"}