π¦ ClawHub
Notamify NOTAM Skill
by @damians21
Retrieve and analyze NOTAMs (Notices to Airmen) for airports worldwide using the Notamify Python SDK
βοΈ Configuration
Install the SDK (Python 3.10+):
pip install notamify-sdk
The SDK authenticates automatically via (in priority order):
1. NOTAMIFY_TOKEN environment variable
2. Path in NOTAMIFY_CONFIG_FILE environment variable
3. Default config at ~/.config/notamify/config.json
API keys are generated at https://notamify.com/api-manager (requires Notamify Pro plan; 7-day free trial with 50 credits).
from notamify_sdk import NotamifyClientReads NOTAMIFY_TOKEN from environment automatically
client = NotamifyClient()Or load from config file
from notamify_sdk import ConfigStore
cfg = ConfigStore().load()
client = NotamifyClient(token=cfg.token)
TERMINAL
clawhub install notamify