Metadata-Version: 2.4
Name: spyprof
Version: 0.0.1
Summary: Sampling Python Profiler
Author-email: Yurii Zolotko <yurii.zolotko@pm.me>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/yuriiz/spyprof
Project-URL: Issues, https://github.com/yuriiz/spyprof/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pygments
Dynamic: license-file

# SPyProf
Sampling Python profiler

# Installation
```bash
pip install https://github.com/yuriiz/spyprof
```

# Usage
Import `spyprof` module at startup:

```python
import spyprof
```

Profiling reports will be written to `spyprof` directory periodically every 10 seconds and at application exit.

Profiling report measured with `ITIMER_REAL` timer will be written to spyprof/real.html.

Profiling report measured with `ITIMER_PROF` timer will be written to spyprof/prof.html.
