https://github.com/tracereq/python-tracereq-sdk
Python SDK for TraceReq
https://github.com/tracereq/python-tracereq-sdk
api-debug flask python tracing-applications
Last synced: 5 months ago
JSON representation
Python SDK for TraceReq
- Host: GitHub
- URL: https://github.com/tracereq/python-tracereq-sdk
- Owner: tracereq
- License: mit
- Created: 2023-05-19T15:23:20.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-07-28T12:47:37.000Z (almost 3 years ago)
- Last Synced: 2024-12-19T13:30:43.296Z (over 1 year ago)
- Topics: api-debug, flask, python, tracing-applications
- Language: Python
- Homepage: https://tracereq.com/
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TraceReq SDK for Python
[](https://pypi.python.org/pypi/tracereq-sdk)
This is the Python SDK for [TraceReq](http://tracereq.com/)
---
## Installation
```bash
pip install --upgrade tracereq-sdk
```
## Usage with Flask
```python
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
- [Flask](https://github.com/pallets/flask)