This project is de-facto unmaintained as haven't been using grocy for a while. Feel free to fork and create pygrocy2!
pip install pygrocy
Import the package:
from pygrocy import Grocy
Obtain a grocy instance:
grocy = Grocy("https://example.com", "GROCY_API_KEY")
or
grocy = Grocy("https://example.com", "GROCY_API_KEY", port = 9192, verify_ssl = True)
Get current stock:
for entry in grocy.stock():
print("{} in stock for product id {}".format(entry.available_amount, entry.id))
If you need help using pygrocy check the discussions section. Feel free to create an issue for feature requests, bugs and errors in the library.
You need tox and Python 3.8/9/10 to run the tests. Navigate to the root dir of pygrocy
and execute tox
to run the tests.