Metadata-Version: 2.4
Name: logslib
Version: 1.0.0
Summary: Simple logging for Python
Author: Stanislafv
Author-email: Stanislafv <klimov.stanislaff@mail.ru>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Logging
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# logslib
Simple logging for people.

## Install
pip install logslib

## Usage
import logslib

logslib.log("Hello, world!")
logslib.log("Warning", type=logslib.WARNING)
logslib.dump(users=42, status="ok")

# Open log file
logslib.view()

# Clear log file
logslib.clear()

# Write log to console
logslib.tee = True

# Path to log
logslib.log_path

# Levels
logslib.levels

# Log path: %APPDATA%/logs/filename(filehash)/log.txt
