Client for OpenMeter: Real-Time and Scalable Usage Metering
Project description
OpenMeter Python SDK
[https://pypi.org/project/openmeter](On PyPI)
Prerequisites
Python version: >= 3.9
Install
The Python SDK is in preview mode.
pip install openmeter
Quickstart
The client can be initialized with openmeter.Client()
:
from os import environ
from openmeter import Client
ENDPOINT = environ.get("OPENMETER_ENDPOINT") or "http://localhost:8888"
# it's recommended to also set the Accept header at the client level
client = Client(
endpoint=ENDPOINT,
headers={"Accept": "application/json"},
)
Async client can be initialized by importing the Client
from openmeter.aio
.
Ingest events:
from cloudevents.http import CloudEvent
from cloudevents.conversion import to_dict
event = CloudEvent(
attributes={
"type": "tokens",
"source": "openmeter-python",
"subject": "user-id",
},
data={
"prompt_tokens": 5,
"completion_tokens": 10,
"total_tokens": 15,
"model": "gpt-3.5-turbo",
},
)
resp = client.ingest_events(to_dict(event))
Publish
Update version number in pyproject.toml
.
Run the following commands:
poetry config pypi-token.pypi {your_pypi_api_token}
poetry publish --build
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
openmeter-1.0.0b55.tar.gz
(36.7 kB
view details)
Built Distribution
File details
Details for the file openmeter-1.0.0b55.tar.gz
.
File metadata
- Download URL: openmeter-1.0.0b55.tar.gz
- Upload date:
- Size: 36.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ecfe2856de5d64cef53a3b889985f33567d9976d49a38eaf4c1e0bded3a7cd5 |
|
MD5 | abf3a84dc93ae1c16a1099f97a3660ab |
|
BLAKE2b-256 | 9cddf966560765df4332b711084f1fdbec49f3aa4b7827d3abd29229e95a51fa |
File details
Details for the file openmeter-1.0.0b55-py3-none-any.whl
.
File metadata
- Download URL: openmeter-1.0.0b55-py3-none-any.whl
- Upload date:
- Size: 42.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 600e97fa6ceffea1902360e8c564407e642c4e19841bc936737c017be8c47077 |
|
MD5 | 15b28cf64b101b2e8518977e0a212f0c |
|
BLAKE2b-256 | e305cf63074b03c54057dab4e67e06f4f6af2d5a9056b49399f5591c90a11ffe |