https://github.com/messense/stacktracer
Stack tracer for multi-threaded applications
https://github.com/messense/stacktracer
Last synced: 3 months ago
JSON representation
Stack tracer for multi-threaded applications
- Host: GitHub
- URL: https://github.com/messense/stacktracer
- Owner: messense
- License: mit
- Created: 2015-12-28T07:35:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-11T13:37:07.000Z (over 9 years ago)
- Last Synced: 2025-04-23T02:16:50.324Z (3 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# stacktracer
Stack tracer for multi-threaded applications.
## Installation
You can install ``stacktracer`` simply using ``pip``:
```bash
pip install stacktracer
```## Usage
```python
import stacktracerstacktracer.trace_start("trace.html", interval=5, auto=True)
# Set auto flag to always update file!# Do something with multi-threading here
stacktracer.trace_stop()
```