Metadata-Version: 2.1
Name: jeff-api
Version: 0.0.3
Summary: Библиотека Python для взаимодействия с Джеффом.
Author-email: Mark CDA <aclo.create@gmail.com>
Project-URL: Homepage, https://github.com/markcda/jeff
Project-URL: Bug Tracker, https://github.com/markcda/jeff/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# jeff-api

Библиотека Python для взаимодействия с Джеффом. Поддерживает как `jeff-qt`, так и `jeff-core`.

## Установка из публичного репозитория PyPi.org

```bash
pip install jeff-api
```

## Использование

```python
from jeff_api import server, client

srv = server.Server(None, port)
cli = client.Client('localhost', 8005)

data = srv.listen()
cli.send_msg(data)
```

## Сборка

```bash
cd jeff-api
python -m pip install --upgrade build
python -m build
```
