Install & Compatibility
Where this runs
tested against v1.14.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 · 22.2MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.0s · import 0.000s · 23MB
20MB installed
● package 20MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
Novu
✓ from novu import Novu
✗ from novu.api import Novu
Initialize Novu client and trigger an event.
import os
from novu.api import Novu, EventTrigger
novu = Novu(api_key=os.environ.get('NOVU_API_KEY', ''))
trigger = EventTrigger(
name='onboarding-welcome',
to={'subscriberId': 'subscriber-id', 'email': 'user@example.com'},
payload={'name': 'John'}
)
response = novu.trigger(trigger)
print(response.json())
Upgrade
Version history
1.14.0latest on PyPI · released Feb 26, 2024
Audit
Dependencies
requestsrequiredHTTP client for API calls