Metadata-Version: 2.1
Name: cinipy
Version: 0.0.2
Summary: An app for custom logging
Author: jonasrdl
Author-email: jonasriedel@pm.me
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown

# cinipy

cinipy is an app for custom logging.

## Installation

You can install the app using pip:
  
`pip install cinipy`

## Usage

```python
from cinipy import log_info, log_warning, log_error

log_info("This is an info message.")
log_warning({"key": "value", "key2": [1, 2, 3]})
log_error(["error", {"key": "value"}])
```

### Future features

- [ ] Custom Formatting
- [ ] Log handlers
  - [ ] Write logs to a file
  - [ ] Send logs to remote server
  - [ ] Stream to Elasticsearch, logstash, ...
- [ ] More configure options
- [ ] Filtering
