Metadata-Version: 2.1
Name: pydigimon
Version: 0.0.1
Summary: Client to get Digimon
Home-page: https://github.com/gdvalderrama/pydigimon
Author: Guiomar Valderrama
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/gdvalderrama/pydigimon/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# pydigimon

Python implementation of the [Digimon API by Shadow Smith](https://digimon-api.vercel.app/).

## Installation

TODO

## Usage

```
from digimon.client import DigimonClient
client = DigimonClient()
response = client.get_digimon_by_name("agumon")
print(response.json())
```


