{"id":20670515,"url":"https://github.com/metron-project/esak","last_synced_at":"2025-07-19T22:34:25.940Z","repository":{"id":44529596,"uuid":"367875965","full_name":"Metron-Project/esak","owner":"Metron-Project","description":"Python wrapper for the Marvel API.","archived":false,"fork":false,"pushed_at":"2025-01-27T17:44:47.000Z","size":1408,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-15T22:15:42.389Z","etag":null,"topics":["api-wrapper","comics","marvel","metadata"],"latest_commit_sha":null,"homepage":"","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":"2021-05-16T12:36:47.000Z","updated_at":"2025-01-27T17:44:44.000Z","dependencies_parsed_at":"2024-10-30T04:02:08.006Z","dependency_job_id":null,"html_url":"https://github.com/Metron-Project/esak","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2Fesak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2Fesak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2Fesak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Metron-Project%2Fesak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Metron-Project","download_url":"https://codeload.github.com/Metron-Project/esak/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249762315,"owners_count":21321907,"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","comics","marvel","metadata"],"created_at":"2024-11-16T20:21:21.265Z","updated_at":"2025-04-19T18:24:24.200Z","avatar_url":"https://github.com/Metron-Project.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# esak - Python wrapper for Marvel API\n\n[![PyPI - Python](https://img.shields.io/pypi/pyversions/esak.svg?logo=Python\u0026label=Python\u0026style=flat-square)](https://pypi.python.org/pypi/esak/)\n[![PyPI - Version](https://img.shields.io/pypi/v/esak.svg?logo=Python\u0026label=Version\u0026style=flat-square)](https://pypi.python.org/pypi/esak/)\n[![PyPI - License](https://img.shields.io/pypi/l/esak.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-brightgreen?logo=pre-commit\u0026style=flat-square)](https://github.com/pre-commit/pre-commit)\n[![Ruff](https://img.shields.io/badge/ruff-enabled-brightgreen?logo=ruff\u0026style=flat-square)](https://github.com/astral-sh/ruff)\n\n[![Github - Contributors](https://img.shields.io/github/contributors/Metron-Project/esak.svg?logo=Github\u0026label=Contributors\u0026style=flat-square)](https://github.com/Metron-Project/esak/graphs/contributors)\n[![Github Action - Testing](https://img.shields.io/github/actions/workflow/status/Metron-Project/esak/testing.yml?branch=master\u0026logo=Github\u0026label=Testing\u0026style=flat-square)](https://github.com/Metron-Project/esak/actions/workflows/testing.yml)\n[![Codecov](https://img.shields.io/codecov/c/gh/Metron-Project/esak?token=L1EGNX24I2\u0026logo=codecov\u0026label=Codecov\u0026style=flat-square)](https://codecov.io/gh/Metron-Project/esak)\n\n[![Read the Docs](https://img.shields.io/readthedocs/esak?label=Read-the-Docs\u0026logo=Read-the-Docs\u0026style=flat-square)](https://esak.readthedocs.io/en/stable)\n\nThis project is a fork of [marvelous](https://github.com/rkuykendall/marvelous) with the goal of supporting the full Marvel API.\n\n## Installation\n\n```console\npip install --user esak\n```\n\n## Example Usage\n\n```python\nimport esak\n\n# Your own config file to keep your private key local and secret\nfrom config import public_key, private_key\n\n# Authenticate with Marvel, with keys I got from http://developer.marvel.com/\nm = esak.api(public_key, private_key)\n\n# Get all comics from this week, sorted alphabetically by title\npulls = sorted(m.comics_list({\n    'format': \"comic\",\n    'formatType': \"comic\",\n    'noVariants': True,\n    'dateDescriptor': \"thisWeek\",\n    'limit': 100}),\n    key=lambda comic: comic.title)\n\nfor comic in pulls:\n    # Write a line to the file with the name of the issue, and the id of the series\n    print(f'{comic.title} (series #{comic.series.id})')\n```\n\n## Documentation\n\n- [esak](https://esak.readthedocs.io/en/stable)\n- [Marvel API](https://developer.marvel.com/docs)\n\n## Bugs/Requests\n\nPlease use the [GitHub issue tracker](https://github.com/Metron-Project/esak/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 `PUBLIC_KEY` and `PRIVATE_KEY` to your Marvel API keys.\n  The responses will be cached in the `tests/testing_mock.sqlite` database without your keys.\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%2Fesak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmetron-project%2Fesak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmetron-project%2Fesak/lists"}