Skip to main content

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.
  • 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 --tags to push the new tag and start the release workflow

Todos

  • Events
  • GCP Pub/Sub
  • GCP Cloud Tasks
  • JWT validation utils
  • Logging

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

microservice-utils-0.8.0.tar.gz (16.3 kB view details)

Uploaded Source

Built Distribution

microservice_utils-0.8.0-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

Details for the file microservice-utils-0.8.0.tar.gz.

File metadata

  • Download URL: microservice-utils-0.8.0.tar.gz
  • Upload date:
  • Size: 16.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for microservice-utils-0.8.0.tar.gz
Algorithm Hash digest
SHA256 6633727cc1bf90fd50d0cfbb699ff4761dc96297b11668f7b3081a1b8ee3ed79
MD5 f60399e0520b1b0484352462f2ddeced
BLAKE2b-256 ea5802bcf3d101b35c067e6055c7074182e7f0710d2fc8d543e2d481a4922326

See more details on using hashes here.

File details

Details for the file microservice_utils-0.8.0-py3-none-any.whl.

File metadata

File hashes

Hashes for microservice_utils-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d50505d44eceb14864ea04f5ebb9b35aaa353e2d1a056206da326388f746edfc
MD5 420a92832cada8bc0f11bc5e0a6fdbca
BLAKE2b-256 e25e14eeacfe5efeda9739ed67ad646d8c98de2ccb539d26dec6666e22ec9915

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page