Official Python SDK for Lumen - Payments and Billing Infrastructure
Project description
Lumen Python SDK
Official Python SDK for Lumen - Payments and Billing Infrastructure for modern SaaS applications.
Installation
# Core SDK
pip install lumen-python-sdk
# With Flask
pip install lumen-python-sdk[flask]
# With FastAPI
pip install lumen-python-sdk[fastapi]
# With Django
pip install lumen-python-sdk[django]
Quick Setup
1. Get Your API Key
Get your secret API key from https://getlumen.dev/developer/apikeys
2. Set Environment Variable
Add to your .env file or environment:
LUMEN_API_KEY=lumen_sk_...
The SDK automatically reads from this environment variable. You can also pass api_key directly to any function if needed.
3. Set Up Backend Proxy (Required for Frontend Access)
Lumen requires a backend proxy route to securely check entitlements and usage from your frontend. This prevents exposing your API key to the browser.
Flow: Frontend → Your Backend → Lumen API
Flask
from flask import Flask, request
from lumen.handlers import lumen_flask_handler
app = Flask(__name__)
def get_user_id():
# Extract user ID from your auth system
# Examples: session, JWT token, request context, etc.
return request.headers.get("X-User-ID") # or session.get("user_id")
@app.route("/api/lumen/<path:path>", methods=["GET", "POST", "PUT", "DELETE"])
def lumen_proxy(path):
handler = lumen_flask_handler(get_user_id=get_user_id)
return handler(path)
FastAPI
from fastapi import FastAPI, Request
from lumen.handlers import lumen_fastapi_handler
app = FastAPI()
def get_user_id(request: Request):
# Extract user ID from your auth system
return request.state.user_id # or decode JWT, check session, etc.
handler = lumen_fastapi_handler(get_user_id=get_user_id)
@app.api_route("/api/lumen/{path:path}", methods=["GET", "POST", "PUT", "DELETE"])
async def lumen_proxy(request: Request, path: str):
return await handler(request, path)
Django
# views.py
from lumen.handlers import lumen_django_handler
def get_user_id(request):
return str(request.user.id) if request.user.is_authenticated else None
lumen_view = lumen_django_handler(get_user_id=get_user_id)
# urls.py
from django.urls import path
urlpatterns = [
path('api/lumen/<path:path>', lumen_view),
]
Now your frontend can call /api/lumen/customers/subscription-status and it will be securely proxied to Lumen with the user's ID.
Server-Side SDK Usage
Direct Backend Calls
Use these functions in your backend API routes, background jobs, or webhooks:
from lumen import get_subscription_status, send_event, is_feature_entitled
# In your API route handler
async def my_api_endpoint(user_id: str):
# Check if user has active subscription
status = await get_subscription_status(user_id=user_id)
if not status.get("hasActiveSubscription"):
return {"error": "No active subscription"}
# Track usage
await send_event(name="api_call", value=1, user_id=user_id)
# Check feature access
has_premium = await is_feature_entitled(
feature="premium_feature",
user_id=user_id
)
if has_premium:
# Allow access to premium features
return {"data": "premium_data"}
else:
return {"error": "Upgrade required"}
API Reference
Customer Management
from lumen import get_subscription_status, get_customer_overview
# Check if user has active subscription
status = await get_subscription_status(user_id="user_123")
# Returns: {"hasActiveSubscription": True, "customer": {...}}
# Get detailed customer information
overview = await get_customer_overview(user_id="user_123")
Feature Entitlements
from lumen import get_usage, get_features, is_feature_entitled
# Get detailed usage data
usage = await get_usage(user_id="user_123")
# Returns: {"entitlements": [{"feature": {...}, "usage": 150, "limit": 1000}]}
# Get simple feature flags
features = await get_features(user_id="user_123")
# Returns: {"api_calls": True, "premium_feature": False}
# Check single feature
has_access = await is_feature_entitled(feature="premium_feature", user_id="user_123")
# Returns: True or False
Event Tracking
from lumen import send_event
# Track usage (call this in your API endpoints)
await send_event(name="api_call", value=1, user_id="user_123")
# Track with idempotency key (prevents duplicates)
await send_event(
name="api_call",
value=1,
user_id="user_123",
idempotency_key="unique_key_123"
)
Seat Management
from lumen import add_seat, remove_seat, get_seat_usage
# Add user to organization's subscription
await add_seat(
new_user_id="new_user_456",
organisation_user_id="org_owner_123",
metadata={"role": "developer"}
)
# Remove user from organization
await remove_seat(
removed_user_id="user_456",
organisation_user_id="org_owner_123"
)
# Get current seat usage
usage = await get_seat_usage(customer_id="cust_123")
User Enrollment & Subscriptions
from lumen import enroll_user, create_free_subscription_if_none_exists
# Enroll user (call this on user signup)
await enroll_user(
email="user@example.com",
name="John Doe",
user_id="user_123",
plan_id="plan_free" # Optional - will use enrollment rules
)
# Create free subscription if none exists
await create_free_subscription_if_none_exists(
email="user@example.com",
name="John Doe",
user_id="user_123"
)
Configuration
Environment Variables
# Required
LUMEN_API_KEY=lumen_sk_...
# Optional (defaults to production)
LUMEN_API_URL=https://api.getlumen.dev
Override Per-Call
# Override API key or URL for specific calls
status = await get_subscription_status(
user_id="user_123",
api_key="custom_key",
api_url="https://staging-api.example.com"
)
Error Handling
Most functions return dicts with optional error keys:
# Check for errors
result = await get_subscription_status(user_id="user_123")
if "error" in result:
return {"error": result["error"]}, 400
# Some functions raise exceptions
try:
await enroll_user(email="user@example.com", name="John Doe", user_id="user_123")
except Exception as e:
print(f"Failed: {e}")
Common Patterns
Protecting API Routes
from lumen import get_subscription_status
async def protected_endpoint(user_id: str):
status = await get_subscription_status(user_id=user_id)
if not status.get("hasActiveSubscription"):
return {"error": "Subscription required"}, 402
# Continue with endpoint logic
return {"data": "..."}
Feature Gating
from lumen import is_feature_entitled
async def premium_feature_endpoint(user_id: str):
if not await is_feature_entitled(feature="premium_feature", user_id=user_id):
return {"error": "Upgrade required"}, 403
# Premium feature logic
return {"data": "premium_data"}
Usage Tracking
from lumen import send_event
async def api_endpoint(user_id: str):
# Track usage before processing
await send_event(name="api_call", value=1, user_id=user_id)
# Your API logic
return {"result": "..."}
Development
Running Tests
# Install dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run with coverage
pytest --cov=lumen --cov-report=html
Code Quality
# Format code
black lumen tests
# Lint code
ruff check lumen tests
# Type checking
mypy lumen
Examples
Check out the examples directory for complete working examples:
- Basic usage examples
- Framework integration examples
- Error handling patterns
- Production deployment examples
Support
- 📖 Documentation
- 💬 Discord Community
- 🐛 Issue Tracker
- 📧 Email: hello@getlumen.dev
License
This project is licensed under the MIT License - see the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Changelog
See CHANGELOG.md for version history and updates.
Built with ❤️ by the Lumen team
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lumen_python_sdk-0.1.1.tar.gz.
File metadata
- Download URL: lumen_python_sdk-0.1.1.tar.gz
- Upload date:
- Size: 31.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b2de55d6d7ce24bbc72fe9e419c2198e439ed7dde801ed2e3a76e7fdb910fcd8
|
|
| MD5 |
cad2b17ed73fe502fec425e9f6ce6bc6
|
|
| BLAKE2b-256 |
971db2c8e82cf65b4c56bc4574222282eb3862cde936aaf4bffadd00711f2521
|
File details
Details for the file lumen_python_sdk-0.1.1-py3-none-any.whl.
File metadata
- Download URL: lumen_python_sdk-0.1.1-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f104d8d3dc05750dd6f7e3bbba17dc007e57dd5dc4027c8763f6dbfd2f66b424
|
|
| MD5 |
2b9b96bbb79ef33cf421834f44909146
|
|
| BLAKE2b-256 |
0d5fdf973da0fdb63f74183a3140d114595512e3560b0b370c7805fa3d9980ef
|