Skip to content

super-qua/kitchenowl-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kitchenowl-python

Note

This repository is no longer maintained. Please refer to the official fork on https://github.com/TomBursch/kitchenowl-python

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.

Installation

python -m venv .venv
source .venv/bin/activate
pip install -e .

Installs all required dependencies.

Usage

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()

Development

Run tests

source .venv/bin/activate
pip install -e .\[test\]
pytest .

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages