Metadata-Version: 2.1
Name: telelog
Version: 0.1.2
Summary: Python Package for le log toolkit
Home-page: UNKNOWN
Author: imason
Author-email: moy7@chinatelecom.cn
License: UNKNOWN
Keywords: python-log,telelog
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6,
Description-Content-Type: text/markdown

Tele Log
==========================

算法引擎日志相关的toolkit, 是可支持k8s日志收集的 python package。

## how to commpile
```bash
python setup.py sdist bdist_wheel
```

## how to release
```bash
twine upload -r pypi dist/*.whl
```

## how to install 
```bash
pip install telelog
```

## how to use
```python
# initial, in the main module
import logging
from telelog import get_logger
logger = logging.getLogger()
logger = get_logger(logger)
logger.info("hello main module")

# in othre module
import logging
logger = logging.getLogger(__name__)
logger.info("hello other module")
```

