Metadata-Version: 2.1
Name: floggit
Version: 0.0.7
Summary: log function inputs and outputs at runtime
Home-page: https://github.com/dcyd-inc/floggit
Author: dcyd, inc.
Author-email: info@dcyd.io
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: google-cloud-logging>=3.0.0


# python function in/out logger

## Install

Requires Python 3

### Using pip

```
pip3 install floggit -U
```

### Using pipenv

```
pipenv install floggit
```

## Usage

### Simple monitoring

```python
from floggit import flog

@flog
def myfunc(*args, **kwargs):
    ...
    return result
```
