A Python wrapper for the Comicvine API.
Project description
Simyan
A Python wrapper for the Comicvine API.
Installation
PyPI
$ pip3 install -U --user simyan
Example Usage
from simyan.session import Session
from simyan.sqlite_cache import SQLiteCache
session = Session(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.id} | {publisher.name} - {publisher.site_url}")
# Get details for a Volume
result = session.volume(_id=26266)
print(result.summary)
Socials
Big thanks to Mokkari for the inspiration and template for this project.
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.7.3.tar.gz
(1.4 MB
view hashes)
Built Distribution
Simyan-0.7.3-py3-none-any.whl
(37.0 kB
view hashes)