A client library for accessing pftel
Project description
pftel-client
A client library for accessing a pftel
telemetry server, typically in the context of ChRIS workflow execution. Most use cases are POSTing log information to the remote server.
Usage
First, create a client:
from pftel_client import Client
client = Client(base_url="http//your.telemetry.server:22223")
Import the models:
from pftel_client.models import log_structured, log_response
from pftel_client.api.logger_services import log_write_api_v1_log_post as plog
from pftel_client.types import Response
Create an object with the data to log:
d_post:log_structured = log_structured.LogStructured()
d_post.log_object = 'ChRIS_LegMeasurements'
d_post.log_collection = 'run-20230505.1630'
d_post.log_event = 'inference'
d_post.app_name = 'pl-lld_inference'
d_post.exec_time = 9.4532
d_post.payload = ''
And POST this log to the server:
reply:log_response = plog.sync(client = client, json_body = d_post)
# or if you need more info (e.g. status_code)
reply: Response[log_response] = plog.sync.detailed(client = client, json_body = d_post)
Or do the same thing with an async version:
reply:log_response = await plog.asyncio(client = client, json_body = d_post)
# or if you need more info (e.g. status_code)
reply: Response[log_response] = await plog.asyncio.detailed(client = client, json_body = d_post)
By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl="/path/to/certificate_bundle.pem",
)
You can also disable certificate validation altogether, but beware that this is a security risk.
client = AuthenticatedClient(
base_url="https://internal_api.example.com",
token="SuperSecretToken",
verify_ssl=False
)
There are more settings on the generated Client
class which let you control more runtime behavior, check out the docstring on that class for more info.
Things to know:
-
Every path/method combo becomes a Python module with four functions:
sync
: Blocking request that returns parsed data (if successful) orNone
sync_detailed
: Blocking request that always returns aRequest
, optionally withparsed
set if the request was successful.asyncio
: Likesync
but async instead of blockingasyncio_detailed
: Likesync_detailed
but async instead of blocking
-
All path/query params, and bodies become method arguments.
-
If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
-
Any endpoint which did not have a tag will be in
pftel_client.api.default
Building / publishing this Client
This project uses Poetry to manage dependencies and packaging. Here are the basics:
- Update the metadata in pyproject.toml (e.g. authors, version)
- If you're using a private repository, configure it with Poetry
poetry config repositories.<your-repository-name> <url-to-your-repository>
poetry config http-basic.<your-repository-name> <username> <password>
- Publish the client with
poetry publish --build -r <your-repository-name>
or, if for public PyPI, justpoetry publish --build
If you want to install this client into another project without publishing it (e.g. for development) then:
- If that project is using Poetry, you can simply do
poetry add <path-to-this-client>
from that project - If that project is not using Poetry:
- Build a wheel with
poetry build -f wheel
- Install that wheel from the other project
pip install <path-to-wheel>
- Build a wheel with
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
File details
Details for the file pftel_client-1.0.6.tar.gz
.
File metadata
- Download URL: pftel_client-1.0.6.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/6.0.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaea49a98f59255c89ff38229d5158ca52d989582da760f098e44dda85c83c88 |
|
MD5 | a565d1f6fb1d54f1431bfe2f2afa48a2 |
|
BLAKE2b-256 | abd45dbc85c5d0735757f6a268f979536452ad8723136f8b32e59898074144b3 |