A library for tracking transactions in Flask and FastAPI applications.
Project description
Overview
The tracking_lib is a python module that is used by the PA development team to orchestrate the control messages that are sent in the Control Channel. It uses the Web Frameworks' (Flask, FastAPI) feature to keep a state in the request lifecycle in order to maintain and communicate a transaction id among different services. The following section describes the supprted features.
Features
- Create and store a Transaction id
- Sent status messages for SUCCESS or FAILURE
Installation
pip install tracking-lib
How to use it
import os
from tracking_lib.config import Config
from tracking_lib.transaction import Transaction
from flask import Flask, jsonify
app = Flask(__name__)
def interactor_runc():
# print(f"transaction_id in interactor func: {Transaction.read_transaction_id()}")
return Transaction.read_transaction_id()
@app.route("/")
def hello_world_success():
Transaction.init(Config(
downstream_service="TVDI_CONFIGS_MANAGER",
control_channel_project_id=os.getenv("CONTROL_CHANNEL_PROJECT_ID"),
control_channel_topic_id=os.getenv("CONTROL_CHANNEL_TOPIC_ID")
))
Transaction.set_transaction_id("123456")
tr_id = interactor_runc()
Transaction.set_transaction_status(src_event_name="AN_SRC_EVENT_NAME")
return jsonify(message=tr_id)
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 tracking_lib-0.1.23.tar.gz.
File metadata
- Download URL: tracking_lib-0.1.23.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b624c7da0ee80472260c7c8d884a1da5ac28ebe22527882314f9ba8218186ad2
|
|
| MD5 |
141f9a78beecb4fc3d4cd100c646fd74
|
|
| BLAKE2b-256 |
c35cef758c2a418c5b5e382c3a4007a0a56ad5e451821b878679f11fd7577062
|
File details
Details for the file tracking_lib-0.1.23-py3-none-any.whl.
File metadata
- Download URL: tracking_lib-0.1.23-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4a3f8fefe67d9e5b2994efc6e952ac15e57efe4ec7d5ee793792ff64e8e0b22
|
|
| MD5 |
f39d6809474edf2dc398a788de160fa5
|
|
| BLAKE2b-256 |
dafdcaae2e9fa38d5c72d396d7bed5ccdf8ba60c8d5739b8dc72b4cfa299d2b6
|