Notamify Python SDK
The Notamify Python SDK is an open-source library that streamlines NOTAM data fetching, listener management, and real-time webhook handling for the Notamify API v2 and Watcher API.
Installation
pip install notamify-sdkuv add notamify-sdkAuthentication
from notamify_sdk import NotamifyClient, ConfigStore
# Option 1: Pass the token directly
client = NotamifyClient(token="YOUR_API_KEY")
# Option 2: Load from environment variable or config file
cfg = ConfigStore().load()
client = NotamifyClient(token=cfg.token)Fetching NOTAMs
Active NOTAMs
Nearby NOTAMs
Raw NOTAMs
Historical NOTAMs
Async Briefings
Watcher API: Real-Time NOTAM Monitoring
Managing Listeners
Listener Filters
Lifecycle Events
Sandbox Testing
Webhook Secret Management
Receiving Webhooks
Signature Verification
Parsing Webhook Events
Local Development with Cloudflare Tunnels
Error Handling
Exception
When
Complete Example: Production Watcher Service
Resources
Last updated