juftin/lunchable

By juftin

Updated 8 months ago

Python Client for the Lunch Money Developer API

Image
0

1.9K

juftin/lunchable repository overview

lunchable

Lunchable Version PyPI Testing Status GitHub License Documentation Status

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.

Installation
pip install lunchable
Usage
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
Check out the ReadTheDocs



juftin logo

Tag summary

Content type

Image

Digest

sha256:1f431b1bd

Size

109.7 MB

Last updated

8 months ago

docker pull juftin/lunchable