Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 599 Bytes

File metadata and controls

32 lines (20 loc) · 599 Bytes

TraceReq SDK for Python

PyPi page link -- version

This is the Python SDK for TraceReq


Installation

pip install --upgrade tracereq-sdk

Usage with Flask

import tracereq_sdk

app = Flask(__name__)
tracereq_sdk.init(api_key='xxx-xxx',
    flask_app=app.wsgi_app
)

Adding the above any flask service will start tracing requests. No other additional code is required.

Supported Frameworks