A simple wrapper around the KitchenOwl API.
This is a small python package to be used as a wrapper for the KitchenOwl API in python.
Currently there is only support for managing shopping list items.
This project is a low maintenance project. The scope is purposefully kept narrow and I am not looking to extend this beyond its current scope. For this reason, issues and discussions are not activated for this project. Feel free to fork the project in case you feel like a functionality is missing.
python -m venv .venv
source .venv/bin/activate
pip install -e .
Installs all required dependencies.
from aiohttp import ClientSession
from kitchenowl_python.kitchenowl import KitchenOwl
async with ClientSession() as session:
kitchenowl = KitchenOwl(session=session, url=url, token=token)
await kitchenowl.test_connection()
source .venv/bin/activate
pip install -e .\[test\]
pytest .