Metadata-Version: 2.1
Name: lambo
Version: 0.1.1
Summary: Simple and visually consistent logger for AWS Lambda
Home-page: https://github.com/amancevice/python-lambo
Author: amancevice
Author-email: smallweirdnum@gmail.com
License: UNKNOWN
Description: # Lambo
        
        <!--[![pypi](https://img.shields.io/pypi/v/lambo?color=yellow&logo=python&logoColor=eee&style=flat-square)](https://pypi.org/project/lambo/)
        [![python](https://img.shields.io/pypi/pyversions/lambo?logo=python&logoColor=eee&style=flat-square)](https://pypi.org/project/lambo/)-->
        [![pytest](https://img.shields.io/github/workflow/status/amancevice/python-lambo/pytest?logo=github&style=flat-square)](https://github.com/amancevice/python-lambo/actions)
        [![coverage](https://img.shields.io/codeclimate/coverage/amancevice/python-lambo?logo=code-climate&style=flat-square)](https://codeclimate.com/github/amancevice/python-lambo/test_coverage)
        [![maintainability](https://img.shields.io/codeclimate/maintainability/amancevice/python-lambo?logo=code-climate&style=flat-square)](https://codeclimate.com/github/amancevice/python-lambo/maintainability)
        
        Simple and visually pleasing logger for AWS Lambda.
        
        ## Installation
        
        ```bash
        pip install lambo
        ```
        
        ## Usage
        
        ```python
        import lambo
        
        logger = lambo.getLogger(__name__)
        logger.info('COLD START, NO REQUEST ID')
        
        
        @logger.attach()
        def handler(event, context):
            logger.info('HELLO!')
            return {'ok': True}
        ```
        
        Yields…
        
        ```
        INFO - COLD START, NO REQUEST ID
        INFO RequestId: …  EVENT {"fizz": "buzz"}
        INFO RequestId: …  TEST
        INFO RequestId: …  RETURN {"ok": true}
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Framework :: AsyncIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Utilities
Requires-Python: >= 3.7
Description-Content-Type: text/markdown
