Metadata-Version: 2.1
Name: feedancy
Version: 0.0.8b0
Summary: сервис по сбору вакансий
License: MIT
Author: Alexey Ostanin
Author-email: aostaninn@gmal.com
Requires-Python: >=3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: Pillow (>=9.5.0)
Requires-Dist: bs4 (>=0.0.1)
Requires-Dist: django-filter (>=22.1)
Requires-Dist: djangorestframework (>=3.14)
Requires-Dist: gunicorn (>=20.1.0)
Requires-Dist: poetry (>=1.5.1)
Requires-Dist: psycopg2-binary (>=2.9.5)
Requires-Dist: pydantic (>=1.10)
Requires-Dist: requests (>=2.31)
Description-Content-Type: text/markdown

# feedancy

The client is provided with async and sync adapters.

To install the async version with all its dependencies use:
```bash
pip install feedancy[asyncio]
```

To install the sync version with all its dependencies use:
```bash
pip install feedancy[sync]
```

To install both versions with all their dependencies use:
```bash
pip install feedancy[asyncio,sync]
```

## Client instantiation example

```python

from feedancy import new_client, Configuration
from feedancy.lib.adapter.requests import RequestsAdapter

client = new_client(RequestsAdapter(), Configuration(host="<your openapi server URL>"))
```
