Metadata-Version: 2.1
Name: loguru-mypy
Version: 0.0.2
Summary: UNKNOWN
Home-page: https://github.com/kornicameister/loguru-mypy
Author: Tomasz Trębski
Author-email: kornicameister@gmail.com
License: MIT
Description: # loguru-mypy
        
        A fancy plugin to boost up your logging with [loguru](https://github.com/Delgan/loguru)
        
        ![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/kornicameister/loguru-mypy/CI/master)
        ![PyPI](https://img.shields.io/pypi/v/loguru-mypy)
        ![PyPI - Downloads](https://img.shields.io/pypi/dm/loguru-mypy)
        [![time tracker](https://wakatime.com/badge/github/kornicameister/loguru-mypy.svg)](https://wakatime.com/badge/github/kornicameister/loguru-mypy)
        
        ## Installation
        
        Simply execute:
        
        ```sh
        pip install loguru-mypy
        ```
        
        And later on modify your `mypy.ini` configuration file with
        
        ```ini
        [mypy]
        plugins = loguru_mypy
        ```
        
        That is all, your code is now ready to be linted.
        
        ## What is included?
        
        `loguru-mypy` is obviously a [mypy](https://github.com/python/mypy) plugin that allows to avoid
        some of those little _runtime_ trickeries :).
        Here is a short attempt to list some of those:
        
        ### Lazy loggers
        
        `logger.opt(lazy=True)` in facts returns a `logger` that we call _lazy_. Lazy loggers accept only
        `typing.Callable[[], t.Any]` in place of positional or named arguments. Passing a callable that
        accepts even a **single** argument thus results in runtime error. `loguru-mypy` detects that fact
        and lets you know before your runtime reaches that portion of a code.
Platform: UNKNOWN
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
