A Python wrapper for the Comicvine API.
Project description
Simyan
A Python wrapper for the Comicvine API.
Installation
PyPI
- Make sure you have Python installed:
python --version
- Install the project from PyPI:
pip install simyan
Github
- Make sure you have Python installed:
python --version
- Clone the repo:
git clone https://github.com/Metron-Project/Simyan
- Install the project:
pip install .
Example Usage
from simyan.comicvine import Comicvine
from simyan.sqlite_cache import SQLiteCache
session = Comicvine(api_key="Comicvine API Key", cache=SQLiteCache())
# Search for Publisher
results = session.publisher_list(params={"filter": "name:DC Comics"})
for publisher in results:
print(f"{publisher.publisher_id} | {publisher.name} - {publisher.site_url}")
# Get details for a Volume
result = session.volume(volume_id=26266)
print(result.summary)
Notes
Big thanks to Mokkari for the inspiration and template for this project.
Who or what is Simyan?
Simyan along with his partner Mokkari, are the diminutive proprietors of the Evil Factory, an evil version of Project Cadmus created by Darkseid and his elite.
More details at Simyan (New Earth)
Socials
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simyan-0.14.0.tar.gz
(3.3 MB
view hashes)
Built Distribution
simyan-0.14.0-py3-none-any.whl
(32.8 kB
view hashes)