rillrate-py 0.37.0-rc.4

rillrate bindings for python
Documentation
# rillrate-py

[![PyPI][pypi-badge]][pypi-url]

[pypi-badge]: https://badge.fury.io/py/rillrate.svg
[pypi-url]: https://pypi.org/project/rillrate

Real-time UI for bots.

Python 3 bindings for [**RillRate**][rillrate].

[rillrate]: https://github.com/rillrate/rillrate

## How to use

Install the library:

```sh
pip install rillrate
```

Import it in your code and install a tracer:

```python
import rillrate
rillrate.install("my-app")
```

Add a metric and use methods to update it:

```python
gauge = rillrate.Counter("my-package.my-dashboard.my-group.my-counter");
gauge.inc(123);
```

## Expansions