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.0b157.tar.gz
(64.0 kB
view details)
Built Distribution
File details
Details for the file openmeter-1.0.0b157.tar.gz
.
File metadata
- Download URL: openmeter-1.0.0b157.tar.gz
- Upload date:
- Size: 64.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 PyPy/7.3.16 Linux/6.5.0-1024-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b40005e3e267547ee0a4f6501e4717c271e1a864b7a157e82a1a53973008c65c |
|
MD5 | 8f3b5fe5ae225c1fb74b964d11665784 |
|
BLAKE2b-256 | 7f54dfb8f9ce853e503a6d4bbedf32d2c80c4a7b4e2c948fd16bd0eed830dff1 |
File details
Details for the file openmeter-1.0.0b157-py3-none-any.whl
.
File metadata
- Download URL: openmeter-1.0.0b157-py3-none-any.whl
- Upload date:
- Size: 71.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 PyPy/7.3.16 Linux/6.5.0-1024-aws
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dc6755f45d714fe28e3457f6134dbeb915d7f87d1f6666c0c2c6df857341dfb |
|
MD5 | 1bb12d01d16035fae881cf7f52302936 |
|
BLAKE2b-256 | 7f4d2f9a134437c852b2f1016e6acddd88d08e62e5b26b4b56e464e1b44dd4ef |