Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/messense/stacktracer
Stack tracer for multi-threaded applications
https://github.com/messense/stacktracer
Last synced: 28 days 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-11T13:37:07.000Z (almost 9 years ago)
- Last Synced: 2024-05-02T00:55:26.067Z (7 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()
```