Metadata-Version: 2.1
Name: monolg
Version: 0.0.1
Summary: Centralized logging for Python using MongoDB
Home-page: https://github.com/Mukhopadhyay/monolg
Author: Pranesh Mukhopadhyay
Author-email: praneshmukherjee7@gmail.com
Maintainer: Pranesh Mukhopadhyay
Maintainer-email: praneshmukherjee7@gmail.com
License: MIT license
Keywords: monolg
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: colorama (==0.4.5)
Requires-Dist: dnspython (==2.2.1)
Requires-Dist: pymongo (==4.2.0)

# monolg
Centralized logging for Python using MongoDB

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com) [![ReadTheDocs](https://readthedocs.org/projects/monolg/badge/?version=latest)](https://monolg.readthedocs.io/en/latest/?version=latest)

[![Tests](https://github.com/Mukhopadhyay/monolg/actions/workflows/tests.yml/badge.svg)](https://github.com/Mukhopadhyay/monolg/actions/workflows/tests.yml)

[![PyPi](https://img.shields.io/pypi/v/monolg.svg)](https://pypi.python.org/pypi/monolg)


<!-- [![Build Status](https://app.travis-ci.com/Mukhopadhyay/monolg.svg?branch=master)](https://app.travis-ci.com/Mukhopadhyay/monolg) -->

+ **Licence**: MIT License
+ **Documentation**: https://monolg.readthedocs.io

## What is `monolg`?
You know those times when you've deployed your applications on the cloud, which logs every step of way precisely onto your `*.log` files, and now everytime you know the application misbehaves you cannot be bothered to look into those log files.

**This never happened to you?!**

Let's not lie of course it has, and you know settings up Elastic stack will fix alot of your problems, but thats just ALOT OF WORK!!

That is where we want this project to come in, The monolg package should give you an easy to use API for logging all of your steps in your local MongoDB instance or even better your `MongoDB` Cloud (For which you know you have plenty out of those 512 MBs laying around)

## Installation

Monolg can be installed from PyPI using the following:

```bash
$ pip install monolg
```

## Getting started

```python
from monolg import Monolg

mlog = Monolg()
mlog.info("Welcome to monolg")
```


## History

### 0.0.0 (2022-09-29)
+ Initial commit to Github
### 0.0.1 (2022-12-26)
+ **Release**: First release to PyPI


