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.0b36.tar.gz
(34.2 kB
view details)
Built Distribution
File details
Details for the file openmeter-1.0.0b36.tar.gz
.
File metadata
- Download URL: openmeter-1.0.0b36.tar.gz
- Upload date:
- Size: 34.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0332051531e0d4aa9c39f1d4d36c8b363a596c986294943561d019e08dfb97fb |
|
MD5 | dbb78afabab1f98142c0135f0e2e2d74 |
|
BLAKE2b-256 | 49c8d8b80d541deadcf1d69135ac9f826eff7c3ba63f17b08d8951ce72d23eb5 |
File details
Details for the file openmeter-1.0.0b36-py3-none-any.whl
.
File metadata
- Download URL: openmeter-1.0.0b36-py3-none-any.whl
- Upload date:
- Size: 40.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.12 Linux/6.2.0-1018-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ee80e22445cc3c5b4d91a5383d8eee9f0994e13c253f2844cfdf4a3b8d3725f3 |
|
MD5 | 7a2e2839f335926094a8dd43009475d5 |
|
BLAKE2b-256 | 352257a3cab49889e43d5a9a4abf64f298375206f1a555b8d03fe6fd56413897 |