No project description provided
Project description
Infloat Python Library
The Infloat Python library provides convenient access to the Infloat API from Python.
Installation
pip install infloat-py
Reference
A full reference for this library is available here.
Usage
Instantiate and use the client with the following:
from Infloat import InfloatApi
client = InfloatApi(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
client.auth.login(
email="email",
password="password",
)
Async Client
The SDK also exports an async client so that you can make non-blocking calls to our API.
import asyncio
from Infloat import AsyncInfloatApi
client = AsyncInfloatApi(
token="YOUR_TOKEN",
base_url="https://yourhost.com/path/to/api",
)
async def main() -> None:
await client.auth.login(
email="email",
password="password",
)
asyncio.run(main())
Exception Handling
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error will be thrown.
from Infloat.core.api_error import ApiError
try:
client.auth.login(...)
except ApiError as e:
print(e.status_code)
print(e.body)
Advanced
Retries
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long as the request is deemed retriable and the number of retry attempts has not grown larger than the configured retry limit (default: 2).
A request is deemed retriable when any of the following HTTP status codes is returned:
Use the max_retries request option to configure this behavior.
client.auth.login(..., request_options={
"max_retries": 1
})
Timeouts
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
from Infloat import InfloatApi
client = InfloatApi(
...,
timeout=20.0,
)
# Override timeout for a specific method
client.auth.login(..., request_options={
"timeout_in_seconds": 1
})
Custom Client
You can override the httpx client to customize it for your use-case. Some common use-cases include support for proxies
and transports.
import httpx
from Infloat import InfloatApi
client = InfloatApi(
...,
httpx_client=httpx.Client(
proxies="http://my.test.proxy.example.com",
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
),
)
Contributing
While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
On the other hand, contributions to the README are always very welcome!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
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 infloat_py-0.0.8.tar.gz.
File metadata
- Download URL: infloat_py-0.0.8.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.9.14 Linux/4.14.348-265.565.amzn2.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af4cdce036d4d9d0d534c9c144c0fe2f997214619e40abce07e9b5e6d34f570e
|
|
| MD5 |
e0d613ea5082a681d8236154f219939e
|
|
| BLAKE2b-256 |
cccbff74fff14a54419008cb0de3cd0084f6331b4c156fcfb7e268a805f71db6
|
File details
Details for the file infloat_py-0.0.8-py3-none-any.whl.
File metadata
- Download URL: infloat_py-0.0.8-py3-none-any.whl
- Upload date:
- Size: 33.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.9.14 Linux/4.14.348-265.565.amzn2.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e41c64be15f88ede4b9fefb13a04e2b121d66153b5ef0de81b4b89f2b329795
|
|
| MD5 |
fb59bbb148caac2ec2d59a81e1be553a
|
|
| BLAKE2b-256 |
3de0cb906db6a0bda27d42a4c11124209c13634371b6fce1c30dac97e8783b60
|