Metadata-Version: 2.1
Name: click-loguru
Version: 1.1.0
Summary: Logging to stderr and file for click applications.
Home-page: https://github.com/legumeinfo/click_loguru
License: BSD-3-Clause
Keywords: logging,click,console
Author: Joel Berendzen
Author-email: joelb@ncgr.org
Requires-Python: >=3.6.1,<4.0.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
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
Classifier: Topic :: Software Development :: User Interfaces
Requires-Dist: attrs (>=19.3.0,<20.0.0)
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: loguru (>=0.5.0,<0.6.0)
Project-URL: Documentation, https://github.com/legumeinfo/click_loguru
Description-Content-Type: text/x-rst

click_loguru
============
``click_loguru`` initializes `click <https://click.palletsprojects.com/>`_ CLI-based
programs for logging to stderr and (optionally) a log file via the
`loguru <https://github.com/Delgan/loguru/>`_ logger.

Log file names will include the name of your program and (if your application uses
subcommands via ``@click.group()``), the name of the subcommand. Log files are 
(optionally) numbered, with a retention policy specified.  Log files can be
enabled or disabled per-subcommand and written to a subdirectory that your
application specifies.  

Global CLI options control verbose/quiet levels and log file creation.
The values of these global options are accessible, along with the path to the
log file, from your application.

Instantiation
-------------
``click_loguru`` objects are instantiated from the ``ClickLoguru`` class as::

      click_loguru = ClickLoguru(name,
                                 version,
                                 retention=4,
                                 stderr_format_func=None,
                                 log_dir_parent="./logs",
                                 file_log_level="DEBUG",
                                 stderr_log_level="INFO",
        )

where:

* **name** is the name of your application
* **version** is the version string of your application
* **retention** is the log file retention policy.  If set to a non-zero value, the
  log files will be given by ``logs/NAME[-SUBCOMMAND]_n.log`` where ```NAME`` is the name
  of your application, ``SUBCOMMAND`` is the group subcommand (if you are using
  click groups), and ``n`` is an integer number.  The value of ``retention`` specifies
  the number of log files to be kept.
* **stderr_format_func** is the format function to be used for messages to stderr, as
  defined by ``loguru``.  Default is very short, with ``INFO``-level messages having
  no level name printed.
* **log_dir_parent** sets the location of the log file directory.  This value may be
  overridden per-command.
* **file_log_level**  sets the level of logging to the log file.
* **stderr_log_level** sets the level of logging to stderr.  This value may be overridden
  by the ``--quiet`` or ``--verbose`` options.

Methods
-------
The ``ClickLoguru`` class defines the following methods:

* **logging_options** is a decorator to be used for your application's CLI function.  This
  decorator defines the global options that allows control of ``quiet``, ``verbose``,
  and ``log file`` booleans.

* **stash_subcommand** is a  decorator to be used for the CLI method for applications
  which define subcommands.

* **init_logger** is  a decorator which must be used for each subcommand.   It allows
  override of the default ``log_dir_parent`` established at instantiation,
  as well as turning off file logging for that command by setting ``log file`` to ``False``.

* **log_elapsed_time** is a decorator which causes the elapsed time for the (sub)command
  to be emitted at the ``DEBUG`` level.

* **get_global_options** is a method that returns the context object associated with the
  global options. The context object is printable.  The attributes of the context object are the booleans ``verbose``,
  ``quiet``, and ``log file``, the string ``subcommand`` showing the subcommand that was invoked,
  and ``log file_handler_id`` if your code wishes to manipulate the handler directly.

* **user_global_options_callback** is a method to be used as
  a callback when your code declares a global option.  Values
  of these global options will be stored in a user global
  options context dictionary.

* **get_user_global_options** is a method to retrieve a
  dictionary of values of user global options.

See the `simple test CLI application
<https://github.com/legumeinfo/click_loguru/blob/master/tests/__init__.py>`_
for usage examples.

Prerequisites
-------------
Python 3.6 or greater is required.
This package is tested under Linux using Python 3.8.  This package has
no dependencies beyond``click`` and ``loguru`` themselves.


Project Status
--------------
+-------------------+------------+
| Latest Release    | |pypi|     |
+-------------------+------------+
| Activity          | |repo|     |
+-------------------+------------+
| Downloads         ||downloads| |
+-------------------+------------+
| Download Rate     | |dlrate|   |
+-------------------+------------+
| License           | |license|  |
+-------------------+------------+
| Travis Build      | |travis|   |
+-------------------+------------+
| Coverage          | |coverage| |
+-------------------+------------+
| Code Grade        | |codacy|   |
+-------------------+------------+
| Dependencies      | |depend|   |
+-------------------+------------+
| Issues            | |issues|   |
+-------------------+------------+
| Code Style        | |black|    |
+-------------------+------------+
| Pre-commit        | |precommit||
+-------------------+------------+

.. |pypi| image:: https://img.shields.io/pypi/v/click_loguru.svg
    :target: https://pypi.python.org/pypi/click_loguru
    :alt: Python package

.. |repo| image:: https://img.shields.io/github/last-commit/legumeinfo/click_loguru
    :target: https://github.com/legumeinfo/click_loguru
    :alt: GitHub repository

.. |license| image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg
    :target: https://github.com/legumeinfo/click_loguru/blob/master/LICENSE.txt
    :alt: License terms

.. |travis| image:: https://img.shields.io/travis/legumeinfo/click_loguru.svg
    :target:  https://travis-ci.org/legumeinfo/click_loguru
    :alt: Travis CI

.. |codacy| image:: https://api.codacy.com/project/badge/Grade/6ee5771afe014cffbb32a2f79cf17fff
    :target: https://www.codacy.com/gh/legumeinfo/click_loguru?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=legumeinfo/click_loguru&amp;utm_campaign=Badge_Grade
    :alt: Codacy.io grade

.. |coverage| image:: https://codecov.io/gh/legumeinfo/click_loguru/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/legumeinfo/click_loguru
    :alt: Codecov.io test coverage

.. |black| image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square
    :target: https://github.com/psf/black
    :alt: Black is the uncompromising Python code formatter

.. |precommit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
    :target: https://github.com/pre-commit/pre-commit
    :alt: pre-commit

.. |issues| image:: https://img.shields.io/github/issues/legumeinfo/click_loguru.svg
    :target:  https://github.com/legumeinfo/click_loguru/issues
    :alt: Issues reported


.. |depend| image:: https://api.dependabot.com/badges/status?host=github&repo=legumeinfo/click_loguru
     :target: https://app.dependabot.com/accounts/legumeinfo/repos/236847525
     :alt: dependabot dependencies


.. |dlrate| image:: https://img.shields.io/pypi/dm/click_loguru
    :target: https://pypistats.org/packages/click_loguru
    :alt: Download stats

.. |downloads| image:: https://pepy.tech/badge/click_loguru
    :target: https://pepy.tech/project/click_loguru
    :alt: Download stats
