Metadata-Version: 2.4
Name: cataas
Version: 1.0.0
Summary: A Python wrapper for the CATAAS API
Project-URL: Homepage, https://github.com/happycappa/cataas-python-wrapper
Project-URL: Source, https://github.com/happycappa/cataas-python-wrapper/tree/main/src/cataas
Author-email: happycappa <happycappa@gmail.com>
License: MIT
License-File: LICENSE
Requires-Python: >=3.7
Requires-Dist: requests<=2.34.2
Provides-Extra: dev
Requires-Dist: pytest; extra == 'dev'
Description-Content-Type: text/markdown

# CATAAS Python Wrapper

A PyPi package that serves as a Python wrapper for the CATAAS REST API.  
This package includes all endpoints that the CATAAS API lets me use and are available!

Keep in mind that this is a _unofficial_ wrapper and was made by only me! (happycappa)

# Usage

To actually use this package, install this via pip first:
```python
pip install cataas
```

First, initialize a session/client with the CATAAS API using the _Cataas()_ function:
```python
from cataas import Cataas

client = cataas.Cataas()
```

Then start having fun!:
```python
from cataas import Cataas

client = cataas.Cataas()
image_url = client.get_cat(as_url=True)
print(image_url) # Output is the URL of a random CATAAS Cat image!
```

# Project Links / Extra:

PyPi Package: (pretend link here)  
Github Repo: https://github.com/happycappa/cataas-python-wrapper  
Cataas API: https://cataas.com  

_Created by happycappa_