Skip to main content

A most utile package for the governance of pythonic micro-services

Project description

PythonServiceUtil

PythonServiceUtil is a utility library designed to streamline Python-based microservice development. It offers robust support for:

  • REST Inter-service Calls: Simplifies HTTP communication between services.
  • AWS SQS Integration: Enhances message queue operations.
  • Redis Support: Provides efficient caching and data storage.
  • MongoDB Integration: Simplifies database interactions, including transactions (mongoengine object data mapper).
  • Context Management: Facilitates seamless context management in multithreaded and multiprocessing environments.

Features

Validation Workflow

The validation process is structured as follows:

  1. Access Token Validation: Validates the access token as the primary step.
  2. Fallback to X-API-KEY Validation: If the access token validation fails, X-API-KEY validation is used as a fallback.

Note: The JWKS (JSON Web Key Set) must follow the format List[Jwk_TH]. Specify the symmetric or asymmetric algorithm to use via AUTH_TOKEN_ALGORITHM.

class Jwk_TH(TypedDict, total=False):
    alg: Required[str]
    e: str
    kid: Required[str]
    kty: str
    n: str
    use: str

def __load_jwks() -> List[Jwk_TH]:
    return json.loads(str(config("JWKS")))

Configuration

Configure the library using an .env file with the following keys:

ENVIRONMENT=develop
LOGGING_FILENAME=service.log
AUTH_TOKEN_ALGORITHM=RS256
BEDROCK_AWS_REGION_NAME=region_name
AWS_REGION_NAME=region_name
AWS_ACCESS_KEY=your_access_key
AWS_SECRET_ACCESS_KEY=your_secret_access_key
X_API_KEY_EMBEDDING_SERVICE_1=access_key
X_API_KEY_EMBEDDING_SERVICE_2=access_key
JWKS=JWKS

Usage

Headers Validation Model

The headers validation model supports both inter-service calls and client-to-backend communication. It first checks cookie validation and then falls back to header-based authorization.

import uuid
from pydantic import BaseModel, Field
from typing import Any, Dict

class Headers_PM(BaseModel):
    correlationid: str = Field(default_factory=lambda: str(uuid.uuid4()))
    username: str = "not_applicable"
    authorization: str = Field(default="")

    def model_dump(self, exclude_fields={}, **kwargs) -> Dict[str, Any]:
        return super().model_dump(**kwargs, exclude=exclude_fields)

Setting Up REST Middlewares

Here is an example of setting up REST middlewares in a FastAPI app:

app.add_middleware(
    HeaderValidationMiddleware,
    x_api_key_1=cast(str, config("X_API_KEY_EMBEDDING_SERVICE_1")),
    x_api_key_2=cast(str, config("X_API_KEY_EMBEDDING_SERVICE_2")),
    authexpiryignore_paths=frozenset([
        ServicePaths.CONTEXT_PATH.value + "/encoders",
        ServicePaths.CONTEXT_PATH.value + "/llm",
    ]),
)
app.add_middleware(ExceptionMiddleware)

Key Fields in Headers_PM

  • correlationid: A unique identifier for tracing requests, generated using uuid4().
  • username: The username associated with the request; defaults to "not_applicable".
  • authorization: The authorization token, defaulting to an empty string.

License

This project is licensed under the MIT License. See the LICENSE file for details.


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

unextpythonserviceutils-0.0.3.tar.gz (22.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

UnextPythonServiceUtils-0.0.3-py3-none-any.whl (33.6 kB view details)

Uploaded Python 3

File details

Details for the file unextpythonserviceutils-0.0.3.tar.gz.

File metadata

  • Download URL: unextpythonserviceutils-0.0.3.tar.gz
  • Upload date:
  • Size: 22.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for unextpythonserviceutils-0.0.3.tar.gz
Algorithm Hash digest
SHA256 f6b8184d7e26fdb914b4fdfa458ad29d9fb1464155f2f8fb4c1ebcc46810658f
MD5 9960bb7695ce4dda09f7e4ced1393da6
BLAKE2b-256 5ad4601faab0b7dc4eff9bf278c1e895b56a1652ca374cac7edf577c771cb633

See more details on using hashes here.

File details

Details for the file UnextPythonServiceUtils-0.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for UnextPythonServiceUtils-0.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 523d3724e45ab2d3f5052bad5811197728cd4f04b7ccad78d746fe372f76c001
MD5 87970bb00c92c7fa149246d60e9ff1fa
BLAKE2b-256 3985920e62a7528c2d83b15b0849dbf932a9a6d931168b8c2145442025f0f314

See more details on using hashes here.

Supported by

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