Metadata-Version: 2.1
Name: rf-api-client
Version: 0.1.0
Summary: RedForester API client
Home-page: https://github.com/RedForester/rf_api_client
Author: Red Forester
Author-email: tech@redforester.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (~=3.6)
Requires-Dist: pydantic (~=1.5)
Requires-Dist: yarl (~=1.4)
Provides-Extra: dev
Requires-Dist: pytest (~=5.4) ; extra == 'dev'
Requires-Dist: pytest-asyncio (~=0.12) ; extra == 'dev'
Requires-Dist: flake8 (~=3.8) ; extra == 'dev'

# RedForester API client

Asynchronous client for RedForester API.

[PyPI package](https://pypi.org/project/rf-api-client/)

## Development

Install all requirements
```bash
pip install -e .[dev]
```

Lint
```
flake8 --max-line-length=120 examples rf_api_client tests
```

Run tests

Setup environment variables:
- rf_api_client_username
- rf_api_client_password
- rf_api_client_base_url (optional)

And run with
```
pytest
```


