Metadata-Version: 2.1
Name: ratingfish
Version: 0.1
Summary: Python wrapper for the RatingFish API
Home-page: https://github.com/abrihter/ratingfish
Download-URL: https://github.com/abrihter/ratingfish/archive/refs/tags/v0.1.tar.gz
Author: abrihter
Author-email: 
License: MIT
Keywords: RATINGFISH,API,WRAPPER
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# ratingfish
Python wrapper for RatingFish API

#### Install
```
pip3 install ratingfish
```

### Example
```Python
import os
import ratingfish

API_KEY = os.environ['RATINGFISH_API_KEY']

rf = ratingfish.RatingFish(api_key=API_KEY)
website = rf.website.get()
print(website)
```

## Classes and methods
```
RatingFish.website.get - get website data
RatingFish.agents.get - get agents data
RatingFish.agents.stats - get agents stats
```
