No project description provided
Project description
microservice-utils
Utilities and adapters for speeding up microservice development.
Optional Dependencies (Extras)
The package offers optional functionality through extras. Extras can be installed with the package using the following syntax:
pip install microservice-utils[gcp_pubsub]
Available extras:
- events: Support for event-driven architectures using pydantic for data validation and parsing.
- gcp_cloud_run: Support for Google Cloud Run with the google-cloud-run client library.
- gcp_cloud_tasks: Support for Google Cloud Tasks with the google-cloud-tasks client library.
- gcp_pubsub: Support for Google Cloud Pub/Sub using the google-cloud-pubsub client library and tenacity for retries.
- gcp_storage: Use GCP Cloud Storage with the async gcloud-aio-storage library.
- novu: Support for the open-source novu notification center.
- openai: Support for completions with the OpenAI API.
- pinecone: Support for semantic search with Pinecone.
To install multiple extras, separate them with commas:
pip install microservice-utils[events,gcp_cloud_run,gcp_cloud_tasks,gcp_pubsub,openai,pinecone]
GCP Pub/Sub
You can subscribe to multiple subscriptions by subsequently calling subscribe(). wait_for_shutdown will block IO
for all the subscriptions and wait for the app to be signaled to shut down.
from microservice_utils.google_cloud.adapters.pubsub import Subscriber
subscriber = Subscriber("your-gcp-project-id", prepend_value="staging")
with subscriber:
subscriber.subscribe(
"accounts__users", sample_handler
)
try:
subscriber.wait_for_shutdown()
except KeyboardInterrupt:
# Gracefully shut down in response to Ctrl+C (or other events)
subscriber.shutdown()
Releasing a new version
- Update the package version using semver rules (
microservice-utils/__init__.py) - Commit and push change
- Create a new tag with the version (e.g.
git tag -a vx.x.x -m '') git push --tagsto push the new tag and start the release workflow
Todos
- Events
- GCP Pub/Sub
- GCP Cloud Tasks
- JWT validation utils
- Logging
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 microservice_utils-0.14.0.tar.gz.
File metadata
- Download URL: microservice_utils-0.14.0.tar.gz
- Upload date:
- Size: 28.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6fbbf7abae5911924c3780f3ea7105fb11361a35efc95a24f57c98e30c3a45b
|
|
| MD5 |
477f2d2c06dfe8bd19f9eb38d5381832
|
|
| BLAKE2b-256 |
f245fca272ab6ff6bbb9c97518ad4aecd021b2ea0653b346da9b69e0f6cfa17a
|
File details
Details for the file microservice_utils-0.14.0-py3-none-any.whl.
File metadata
- Download URL: microservice_utils-0.14.0-py3-none-any.whl
- Upload date:
- Size: 36.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20f4fadaf8b615bfa91f60fc9def3fe1e2837031a856540830b0ed087850017a
|
|
| MD5 |
bd35ad382667d4ad8b42077d02e0c491
|
|
| BLAKE2b-256 |
d5b70d54f303031a367889a94e72944ea62a90dc2b09445e1f75a1930e1d3bba
|