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.4.tar.gz
(7.9 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.4.tar.gz.
File metadata
- Download URL: metricsfirst-0.1.4.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b37210a9a57e2373497a29100256ab0d270962366029deec30e0693f9f78e180
|
|
| MD5 |
a38ac00f7603da55d23c6edcbfe2030d
|
|
| BLAKE2b-256 |
5a83273c8f457238b622e6294ce230281251ac321b09ef73833d88280c911499
|
File details
Details for the file metricsfirst-0.1.4-py3-none-any.whl.
File metadata
- Download URL: metricsfirst-0.1.4-py3-none-any.whl
- Upload date:
- Size: 11.4 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 |
71b62eec69f976af999b6aea8ef2be86d1f82c576523d9180695099dd71c3695
|
|
| MD5 |
0368a5d650f9ea49341606936bcf846a
|
|
| BLAKE2b-256 |
ea90c712a3a1a91187dfe4f1a792ef744e94fc45a11e3e672443e72310c4ad13
|