GUI handler for python logging
Project description
LogGui
GUI for Python logging
Installation
-
Install requirements
pip3 install -r requirements.txt
-
Install LogGui!
python3 setup.py install
-
(Optionally) Try it out!
python3 -m loggui example/just_logging.py
Usage
Run script
python3 -m loggui path_to_script
Include in your code
Add this in place where you want the GUI to show up:
import logging
from loggui import GUILoggerHandler
rlogger = logging.getLogger()
rlogger.setLevel(logging.DEBUG)
rlogger.addHandler(GUILoggerHandler())
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
loggui-0.1.5.tar.gz
(4.6 kB
view hashes)
Built Distribution
loggui-0.1.5-py3-none-any.whl
(5.9 kB
view hashes)