Logging for important Python applications will become more beautiful and functional!
Project description
Logging for important Python applications will become more beautiful and functional!
A new step, a new future
Paintlog will help you track and work with your Python applications easier and more functionally!
[!CAUTION] At the moment, Paintlog is under active development, many things may not work, and this version is not recommended for use (all at your own risk).
Contact and support
If you have questions about using Paintlog, then create an issue in the repository or write to me at bro.alexeev@inbox.ru.
You can also write to me on Telegram: @alexeev_dev
paintlog is an Open Source project, and it only survives due to your feedback and support!
Project releases are available at this link.
Documentation
You can read the usage documentation at this link.
Example
#!venv/bin/python3
"""Paintlog Example File.
Copyright Alexeev Bronislav (C) 2024
BSD 3 Clause License
"""
from paintlog.logger import pydbg_obj, benchmark, Logger
from paintlog.paint import info_message, warn_message, error_message, other_message, FG, Style, debug_message, run_exception
logger = Logger('main.log')
@benchmark
@logger.debug_func
def debug_print() -> list:
num = 12
float_int = 12.12
string = 'Hello'
boolean = True
list_array = [1, 2, 3, 'Hi', True, 12.2]
dictionary = {1: "HELLO", 2: "WORLD"}
pydbg_obj(num, float_int, string, boolean, list_array, dictionary)
debug_print()
# Simple messages
info_message('INFORMATION')
warn_message('WARNING')
error_message('EXCEPTION')
debug_message('DEBUG')
other_message('SOME TEXT', 'OTHER')
# Highlight bg
info_message('Highlight INFORMATION', True)
warn_message('Highlight WARNING', True)
error_message('Highlight EXCEPTION', True)
debug_message('Highlight DEBUG', True)
other_message('Highlight SOME TEXT', 'OTHER', True)
# Message with logger
logger.log('INFORMATION logger', 'info')
logger.log('WARNING logger', 'warn')
logger.log('EXCEPTION logger', 'error')
logger.log('DEBUG logger', 'debug')
logger.log('SOME TEXT logger', 'other')
# Message with logger and highlight bg
logger.log('INFORMATION logger', 'info', True)
logger.log('WARNING logger', 'warn', True)
logger.log('EXCEPTION logger', 'error', True)
logger.log('DEBUG logger', 'debug', True)
logger.log('SOME TEXT logger', 'other', True)
print(f'{FG.red}{Style.bold}BOLD RED{Style.reset}{Style.dim} example{Style.reset}')
run_exception('EXCEPTION')
Installion
Just one command:
pip install paintlogio-py
Requirements
To run the software you will have to install the necessary programs and dependencies, such as:
- Python interpreter (>=3.10)
- PIP package manager (>=22.0)
- Python libraries (listed in requirements.txt)
Functional
Here you can see what paintlog can already do and what else is planned to be added in the future:
- Advanced print for debug (pydbg_obj)
- Colors
- Logging
- Benchmark and decorators for funcs
- Update advanced print for debug (pydbg_obj)
- Improve logging
- Upload logs to Google Drive
- Support async
Copyright
Copyright © 2024, Alexeev Bronislav
All rights reversed
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file paintlogio-py-0.3.4.tar.gz
.
File metadata
- Download URL: paintlogio-py-0.3.4.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb79e3aa1b282fd0a49014ffc7d49a19770a5c71a31b7b76b81fdc9b382e1367 |
|
MD5 | 11cf8c96f2b0780b08c3ba2cf6fc5af8 |
|
BLAKE2b-256 | a95c7193481b1d70c19d75f4ae5ba46bcd04d44b096a47415f8b26af0f6fb537 |
File details
Details for the file paintlogio_py-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: paintlogio_py-0.3.4-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f787598effd81626bfe913a9f3ae69c184fb846ff80aa9280b8374a0e3a7bd17 |
|
MD5 | 98150c960c391495d159b224c26f85c8 |
|
BLAKE2b-256 | e4e38618065bc403dbc6912add697cc574038cbf1d7d4aa2d6820f5452d1ef0d |