Metadata-Version: 2.1
Name: comicgeeks
Version: 0.2.3
Summary: A python client for League of Comics Geeks.
Home-page: https://github.com/pruizlezcano/comicgeeks
Author: Pablo Ruiz
Author-email: pruizlezcano@gmail.com
License: GPL-3.0-only
Project-URL: Documentation, https://comicgeeks.readthedocs.io
Project-URL: Source, https://github.com/pruizlezcano/comicgeeks
Project-URL: Changelog, https://comicgeeks.readthedocs.io/en/latest/changelog.html
Project-URL: Tracker, https://github.com/pruizlezcano/comicgeeks/issues
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
License-File: LICENSE.txt
Requires-Dist: beautifulsoup4 (<5.0.0,>=4.11.1)
Requires-Dist: lxml (<5.0.0,>=4.9.1)
Requires-Dist: requests (<3.0.0,>=2.28.1)
Requires-Dist: importlib-metadata ; python_version < "3.8"
Provides-Extra: development
Requires-Dist: black ; extra == 'development'
Requires-Dist: commitizen ; extra == 'development'
Requires-Dist: flake8 ; extra == 'development'
Requires-Dist: pre-commit ; extra == 'development'
Provides-Extra: docs
Requires-Dist: myst-parser ; extra == 'docs'
Requires-Dist: Sphinx ; extra == 'docs'
Provides-Extra: testing
Requires-Dist: setuptools ; extra == 'testing'
Requires-Dist: pytest ; extra == 'testing'
Requires-Dist: pytest-cov ; extra == 'testing'
Requires-Dist: python-dotenv ; extra == 'testing'

[![PyPI](https://img.shields.io/pypi/v/comicgeeks?color=5593c8&logoColor=a7bfc1&style=for-the-badge)](https://pypi.org/project/comicgeeks/)
[![Coveralls](https://img.shields.io/coveralls/github/pruizlezcano/comicgeeks?style=for-the-badge)](https://coveralls.io/github/pruizlezcano/comicgeeks?branch=main)
[![forthebadge](https://forthebadge.com/images/badges/contains-tasty-spaghetti-code.svg)](https://forthebadge.com)
# comicgeeks

> A python client for League of Comics Geeks.

* Search series, creators and characters by name
* Get series, issues, creators and characters information
* Manage your comic collection
  * Subscribe to series
  * Mark issue as read
  * Add issue to collection
  * And more...

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install comicgeeks.

```bash
pip install comicgeeks
```

## Usage

```python
from comicgeeks import Comic_Geeks

client = Comic_Geeks("my_ci_session")

# search series
client.search_series("daredevil")

# get new releases
client.new_releases()

# get info about an issue
client.issue_info(3616996)
```

For more info check the documentation in [https://comicgeeks.readthedocs.io](https://comicgeeks.readthedocs.io)

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.


## Note

This project has been set up using PyScaffold 4.3. For details and usage
information on PyScaffold see https://pyscaffold.org/.

## License
[MIT](https://choosealicense.com/licenses/mit/)
