Install & Compatibility
Where this runs
tested against v1.4.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 45.6MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 5.2s · import 0.000s · 45MB
44MB installed
● package 44MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
PushLunch
✓ from lunchable_pushlunch import PushLunch
✗ from lunchable_pushlunch import Pushlunch
Basic usage to send a Pushover notification.
import os
from lunchable_pushlunch import Pushlunch
# Configure via environment variables or constructor args
client = Pushlunch(
lunchmoney_token=os.environ.get("LUNCHMONEY_TOKEN", ""),
pushover_user_key=os.environ.get("PUSHOVER_USER_KEY", ""),
pushover_api_token=os.environ.get("PUSHOVER_API_TOKEN", ""),
)
# Send a notification
client.notify("Test notification from Pushlunch")
Upgrade
Version history
1.4.0latest on PyPI · released Oct 8, 2025
Audit
Dependencies
lunchablerequiredCore LunchMoney API client
pushoveroptionalPushover notifications
ntfyoptionalntfy notifications (since v1.4.0)