Skip to content

alexeev-engineer/paintlog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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', filename=__name__)


@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

Copyright

Copyright © 2024, Alexeev Bronislav

All rights reversed

About

Logging for important Python applications will become more beautiful and functional!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published