Skip to content

tracereq/python-tracereq-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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