Hopeit Apps Client Plugin
Project description
hopeit.engine apps-client plugin
This library is part of hopeit.engine:
Install using hopeit.engine extras [apps-client]:
pip install hopeit.engine[apps-client]
Config app_connection section in your app to use this client implementation:
Configre a connection in app_connections section and specify which events to invoke
inside event.connections section:
...
"app_connections": {
"target-app-conn": {
"name": "target-app",
"version": "1.0",
"client": "hopeit.apps_client.AppsClient"
}
},
...
"events": {
"my-event": {
...
"connections": [
{
"app_connection": "target-app-conn",
"event": "target-event",
"type": "GET"
}
],
...
}
}
To configure apps-client add a settings section like this to app config file:
...
"settings": {
"simple_example_conn": {
"connection_str": "http://host1,http://host2"
}
}
The only required setting is connection_str but many other values can be configured:
...
"settings": {
"simple_example_conn": {
"connection_str": "${HOPEIT_SIMPLE_EXAMPLE_HOSTS}",
"circuit_breaker_open_failures": 10,
"circuit_breaker_failure_reset_seconds": 90.0,
"circuit_breaker_open_seconds": 60.0,
"retries": 2,
"retry_backoff_ms": 10,
"ssl": true,
"max_connections": 100,
"max_connections_per_host": 0,
"dns_cache_ttl": 10,
"routes_override": {
"__list-somethings": "simple-example/${HOPEIT_APPS_ROUTE_VERSION}/list-somethings"
}
}
}
Usage
Invoking target-app target-event from your application code:
from hopeit.app.client import app_call
...
def my_event(payload: ..., context: EventContext) -> ...:
response = await app_call(
"target-app-conn", event="target-event",
datatype=ResposeDataType, payload=..., context=context
)
...
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
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 hopeit_apps_client-0.26.2.tar.gz.
File metadata
- Download URL: hopeit_apps_client-0.26.2.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd80ab4ac82ad08564371b2484d43c665c327c840bddbaf2418bd8ebfba9752f
|
|
| MD5 |
78ca2c43980cb53469fb8c5107980b0e
|
|
| BLAKE2b-256 |
c98cfea40736b461ea375dc89704952d3de7f1535ad29eb614727225c241a4d2
|
File details
Details for the file hopeit_apps_client-0.26.2-py3-none-any.whl.
File metadata
- Download URL: hopeit_apps_client-0.26.2-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3b63dc6823901365ce66901c46b232f0489bab2d7903c41e9b2cd10bbcef3f3
|
|
| MD5 |
9da510dc8d4e5843b386f2c394d3160e
|
|
| BLAKE2b-256 |
bbfa314cdd3ef3e6529a610ad51f48db38bc1f7288e1b714cdf665e6c53cccee
|