A simple Python module with configurable options.
pip install python-logger-simple[x] Head to logger-simple.com to retrieve the required information, and to view the logs.
# Python
from python_logger_simple import Logger
logger = Logger(app_id="your_app_id", api_key="your_api_key")
logger.log_success("Test from Python")Initialize the Logger with the following options:
app_id: Your application ID (required).api_key: Your application key (required).
log_error('An error has occurred.')- Logs an error message.log_success('Succes message.')- Logs an succes message.log_info('Important information.')- Logs an info message.