Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 stacktracer

stacktracer.trace_start("trace.html", interval=5, auto=True)
# Set auto flag to always update file!

# Do something with multi-threading here

stacktracer.trace_stop()
```