Python Client SDK Generated by Speakeasy
Project description
formance-sdk-flows
🏗 Welcome to your new SDK! 🏗
It has been generated successfully based on your OpenAPI spec. However, it is not yet ready for production use. Here are some next steps:
- 🛠 Make your SDK feel handcrafted by customizing it
- ♻️ Refine your SDK quickly by iterating locally with the Speakeasy CLI
- 🎁 Publish your SDK to package managers by configuring automatic publishing
- ✨ When ready to productionize, delete this section from the README
SDK Installation
pip install formance-sdk-flows
SDK Example Usage
Example
import formancesdkflows
from formancesdkflows.models import components
s = formancesdkflows.FormanceSDKFlows(
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.info()
if res is not None:
# handle response
pass
Available Resources and Operations
FormanceSDKFlows SDK
instances
triggers
workflows
Pagination
Some of the endpoints in this SDK support pagination. To use pagination, you make your SDK calls as usual, but the
returned response object will have a Next
method that can be called to pull down the next group of results. If the
return value of Next
is None
, then there are no more pages to be fetched.
Here's an example of one such pagination call:
import formancesdkflows
from formancesdkflows.models import components
s = formancesdkflows.FormanceSDKFlows(
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.instances.list(workflow_id='<value>', running=False)
if res is not None:
while True:
# handle items
res = res.Next()
if res is None:
break
Retries
Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK.
To change the default retry strategy for a single API call, simply provide a RetryConfig
object to the call:
import formancesdkflows
from formancesdkflows.models import components
from formancesdkflows.utils import BackoffStrategy, RetryConfig
s = formancesdkflows.FormanceSDKFlows(
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.info(,
RetryConfig('backoff', BackoffStrategy(1, 50, 1.1, 100), False))
if res is not None:
# handle response
pass
If you'd like to override the default retry strategy for all operations that support retries, you can use the retry_config
optional parameter when initializing the SDK:
import formancesdkflows
from formancesdkflows.models import components
from formancesdkflows.utils import BackoffStrategy, RetryConfig
s = formancesdkflows.FormanceSDKFlows(
retry_config=RetryConfig('backoff', BackoffStrategy(1, 50, 1.1, 100), False),
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.info()
if res is not None:
# handle response
pass
Error Handling
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
Error Object | Status Code | Content Type |
---|---|---|
errors.FlowError | default | application/json |
errors.SDKError | 4xx-5xx | / |
Example
import formancesdkflows
from formancesdkflows.models import components, errors
s = formancesdkflows.FormanceSDKFlows(
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = None
try:
res = s.instances.list(workflow_id='<value>', running=False)
except errors.FlowError as e:
# handle exception
raise(e)
except errors.SDKError as e:
# handle exception
raise(e)
if res is not None:
while True:
# handle items
res = res.Next()
if res is None:
break
Server Selection
Select Server by Index
You can override the default server globally by passing a server index to the server_idx: int
optional parameter when initializing the SDK client instance. The selected server will then be used as the default on the operations that use it. This table lists the indexes associated with the available servers:
# | Server | Variables |
---|---|---|
0 | http://localhost |
None |
Example
import formancesdkflows
from formancesdkflows.models import components
s = formancesdkflows.FormanceSDKFlows(
server_idx=0,
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.info()
if res is not None:
# handle response
pass
Override Server URL Per-Client
The default server can also be overridden globally by passing a URL to the server_url: str
optional parameter when initializing the SDK client instance. For example:
import formancesdkflows
from formancesdkflows.models import components
s = formancesdkflows.FormanceSDKFlows(
server_url="http://localhost",
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.info()
if res is not None:
# handle response
pass
Custom HTTP Client
The Python SDK makes API calls using the requests HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom requests.Session
object.
For example, you could specify a header for every request that this sdk makes as follows:
import formancesdkflows
import requests
http_client = requests.Session()
http_client.headers.update({'x-custom-header': 'someValue'})
s = formancesdkflows.FormanceSDKFlows(client=http_client)
Authentication
Per-Client Security Schemes
This SDK supports the following security schemes globally:
Name | Type | Scheme |
---|---|---|
bearer_auth |
http | HTTP Bearer |
formance_o_auth |
oauth2 | OAuth2 token |
You can set the security parameters through the security
optional parameter when initializing the SDK client instance. The selected scheme will be used by default to authenticate with the API for all operations that support it. For example:
import formancesdkflows
from formancesdkflows.models import components
s = formancesdkflows.FormanceSDKFlows(
security=components.Security(
bearer_auth="<YOUR_BEARER_TOKEN_HERE>",
),
)
res = s.info()
if res is not None:
# handle response
pass
Development
Maturity
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.
Contributions
While we value open-source contributions to this SDK, this library is generated programmatically. Any manual changes added to internal files will be overwritten on the next generation. We look forward to hearing your feedback. Feel free to open a PR or an issue with a proof of concept and we'll do our best to include it in a future release.
SDK Created by Speakeasy
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
Built Distribution
File details
Details for the file formance-sdk-flows-1.0.0a12.tar.gz
.
File metadata
- Download URL: formance-sdk-flows-1.0.0a12.tar.gz
- Upload date:
- Size: 31.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b07a9352293943a6d44da8bd2ab2d4adfccf6720f301bcb5cd1fcda200651d3 |
|
MD5 | eb738844b961df7d9c76a53d4d19ad98 |
|
BLAKE2b-256 | 2dc06cf5f9b111ff0c08b91831f0e963c2a4f0043d8dcfe7a892bb19475979e5 |
File details
Details for the file formance_sdk_flows-1.0.0a12-py3-none-any.whl
.
File metadata
- Download URL: formance_sdk_flows-1.0.0a12-py3-none-any.whl
- Upload date:
- Size: 62.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f4ff7129dfcc618306b38d89770156e2faeabed57a643f789ad06b8ebce9057 |
|
MD5 | c4d8cc33a4352eb20ca244019a94627b |
|
BLAKE2b-256 | 3af8cbeeb25259e69e99c121824b401730fd2065bb3cd19205e1eeaa723af9d8 |