Python Client for the Lunch Money Developer API
1.9K
lunchable is a Python Client for the Lunch Money Developer API. It's built on top of pydantic, it offers an intuitive API, a simple CLI, complete coverage of all endpoints, plugins to other external services, and extensive test coverage.
pip install lunchable
from typing import List
from lunchable import LunchMoney
from lunchable.models import TransactionObject
lunch = LunchMoney(access_token="xxxxxxxxxxx")
transactions: List[TransactionObject] = lunch.get_transactions(limit=5)
first_transaction: TransactionObject = transactions[0]
transaction_as_dict: dict = first_transaction.dict()
export LUNCHMONEY_ACCESS_TOKEN="xxxxxxxxxxx"
lunchable transactions get --limit 5
Content type
Image
Digest
sha256:1f431b1bd…
Size
109.7 MB
Last updated
8 months ago
docker pull juftin/lunchable