Metadata-Version: 2.3
Name: inspy-logger
Version: 3.2.3
Summary: Colorable, scalable logger for CLI
License: MIT
Author: Taylor B.
Author-email: tayjaybabee@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: appdirs (>=1.4.4,<2.0.0)
Requires-Dist: packaging (>=24.1,<25.0)
Requires-Dist: platformdirs (>=4.2.2,<5.0.0)
Requires-Dist: psutil (>=6.0.0,<7.0.0)
Requires-Dist: pypattyrn (>=1.2,<2.0)
Requires-Dist: pyperclip (>=1.8.2,<2.0.0)
Requires-Dist: python-box (>=7.2.0,<8.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: rich (>=13.7.1,<14.0.0)
Requires-Dist: urllib3 (>1.26.5,<2)
Description-Content-Type: text/markdown

# inSPy-Logger
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Inspyre-Softworks/inSPy-Logger/CI?label=CI&logo=github&logoColor=9cf&style=for-the-badge) 
![Codacy grade](https://img.shields.io/codacy/grade/7171eec682c549a88dee0da9cc9b92b3?logo=codacy&logoColor=9cf&style=for-the-badge) 
![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/Inspyre-Softworks/inSPy-Logger?color=9cf&include_prereleases&label=Pre-Release&logo=pypi&logoColor=9cf&style=for-the-badge) 
![PyPI](https://img.shields.io/pypi/v/inspy-logger?color=9cf&label=Latest&logo=pypi&logoColor=9cf&style=for-the-badge) 
![GitHub issues](https://img.shields.io/github/issues/Inspyre-Softworks/inSPy-Logger?color=9cf&logo=github&logoColor=9cf&style=for-the-badge) 
![PyPI - Format](https://img.shields.io/pypi/format/inSPy-Logger?logo=PyPi&style=for-the-badge)

## Installation

### Prerequisites:

**Platform/Env**:
  * **Python**: ^3.6.3
  * **PIP**: (_If you want to install via PIP, that is_)
  
**inSPy-Logger Runtime Dependencies**:
  I am providing this list of dependencies for transparency and for instances where one would not be able to install inSPy-Logger via PyPi's package manager. It is **highly** recommended you use `python3 -m pip install inspy_logger==<ver>` to install inSPy-Logger 2.0+
  
  * [colorlog](https://pypi.org/project/colorlog) (^4.2.1)
  * [setuptools-autover](https://pypi.org/project/setuptools-autover) = (^1.0.2)
  * [luddite](https://pypi.org/project/luddite) = (^1.0.1)
  * [packaging](https://pypi.org/project/packaging) = (^20.4)

### Installation via Pip on Python 3.6.3+ (recommended method):

- `$> python3 -m pip install inspy_logger==<version>`

#### Test out InspyLogger:

```python3

import inspy_logger

# Set up a log device object. The first parameter is the root loggers name, and the second is the debug level
log_device = inspy_logger.InspyLogger('LogName', 'debug')

# Start a running log from that device
log = log_device.start()

# Output our own logger lines:
log.debug('This is a debug log entry')
log.info('This is an info log entry')
log.warning('This is a warning log entry!')
log.error('This is an error log entry!')
log.exception('This is an exception log entry!')

```

If you run the code above you'll get output similar to this:

![output1](https://github.com/Inspyre-Softworks/inSPy-Logger/blob/v2.0-alpha.6/examples/v2.0/output_screenies/v2.0.0a.6_screenie1.png)

v2.0+ repository for inSPy-Logger

