Metadata-Version: 2.1
Name: startstop
Version: 1.0.4
Summary: Start and stop a python profiler
Project-URL: homepage, https://github.com/1081/startstop
License-Expression: MIT
License-File: LICENSE.txt
Keywords: profiler,simple
Requires-Python: >=3.7
Requires-Dist: pyinstrument
Description-Content-Type: text/markdown

# startstop
A simple way to start and stop a Python profiler ([pyinstument](https://github.com/joerick/pyinstrument)) and view the results in the browser.

[![PyPI - Version](https://img.shields.io/pypi/v/startstop.svg)](https://pypi.org/project/startstop)

-----

## Installation

```console
pip install startstop
```

## Usage
```console
from startstop import t

t()
# This is where your code goes.
t()
```

