MetricsFirst SDK for Python - Analytics for Telegram bots
Project description
MetricsFirst Python SDK
Official Python SDK for MetricsFirst - Analytics for Telegram bots.
Note: Commands and interactions are tracked automatically when you add your bot to MetricsFirst. This SDK is for tracking custom events like services, purchases, and errors.
Installation
# Basic installation (sync only)
pip install metricsfirst
# With async support
pip install metricsfirst[async]
Features
- Fire-and-forget: All tracking calls are non-blocking and don't add latency
- Background sending: Events are sent in a separate thread (sync) or task (async)
- Error resilience: Errors are logged, never thrown to your code
- Memory safe: Queue is limited to 1000 events to prevent memory issues
Quick Start
Synchronous Client
from metricsfirst import MetricsFirst, ServiceEventData
# Initialize
mf = MetricsFirst(
bot_id="your_bot_id",
api_key="your_api_key",
)
# Track a service (fire-and-forget, non-blocking)
mf.track_service(ServiceEventData(
user_id=123456789,
service_name="image_generation",
is_free=False,
price=10,
currency="USD",
))
# Shutdown flushes remaining events
mf.shutdown()
Asynchronous Client
import asyncio
from metricsfirst import AsyncMetricsFirst, ServiceEventData
async def main():
# Initialize
mf = AsyncMetricsFirst(
bot_id="your_bot_id",
api_key="your_api_key",
)
await mf.start()
# Track events (fire-and-forget)
await mf.track_service(ServiceEventData(
user_id=123456789,
service_name="image_generation",
))
# Shutdown
await mf.shutdown()
asyncio.run(main())
Context Manager
# Sync
with MetricsFirst(bot_id="...", api_key="...") as mf:
mf.track_service(...)
# Async
async with AsyncMetricsFirst(bot_id="...", api_key="...") as mf:
await mf.track_service(...)
Available Events
| Method | Description |
|---|---|
track_service() |
Track services provided |
track_error() |
Track errors |
track_error_from_exception() |
Track error from exception |
track_purchase_initiated() |
Track purchase start |
track_purchase_completed() |
Track successful purchase |
track_purchase_error() |
Track failed purchase |
track_recurring_charge_success() |
Track subscription charge |
track_recurring_charge_failed() |
Track failed charge |
identify() |
Identify user with properties |
Configuration
mf = MetricsFirst(
bot_id="your_bot_id",
api_key="your_api_key",
api_url="https://api.metricsfirst.com", # Custom API URL
batch_events=True, # Batch events before sending
batch_size=10, # Events per batch
batch_interval=5.0, # Seconds between flushes
debug=False, # Enable debug logging
timeout=10.0, # HTTP timeout
)
License
MIT
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
metricsfirst-0.1.3.tar.gz
(7.8 kB
view details)
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 metricsfirst-0.1.3.tar.gz.
File metadata
- Download URL: metricsfirst-0.1.3.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2de59e8ddedc6ba0f7bf56ad083dfcc6e8e463b1ef09b7b47e5a9b10611042af
|
|
| MD5 |
b514aa0e963cd6f02f9de408b8a9421a
|
|
| BLAKE2b-256 |
374fa098d4826cb07ec47e2b38b957c81186c1b1e412a14784408b688ff52aa7
|
File details
Details for the file metricsfirst-0.1.3-py3-none-any.whl.
File metadata
- Download URL: metricsfirst-0.1.3-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1aeada26c97d8d2617192be94fed9e40e1cb5ea769d31506ffaf3366fd4ebca
|
|
| MD5 |
60448abc57636595fcd6720ba8f07578
|
|
| BLAKE2b-256 |
00adb9c4b2e6101d02fec5729304fb70e9fcc0062f5bb29b9457dbb7ca128c10
|