An open API service indexing awesome lists of open source software.

https://github.com/baloise/ai-pylib

Python library for artificial intelligence
https://github.com/baloise/ai-pylib

Last synced: 8 days ago
JSON representation

Python library for artificial intelligence

Awesome Lists containing this project

README

          

# AI-PyLib
Python library for artificial intelligence

# Usage

```
pip install git+https://github.com/baloise/AI-PyLib.git
```
```python
from baloise_ai_pylib import ai_service
ais = ai_service.AIService()
print(ais.banner())
```

# Setup development environment

```
python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade build
python3 -m build
pip install --editable .
```