Skip to main content

A simple logger class for MySQL and MariaDB

Project description

MySQLLogger

A simple logger class for MySQL and MariaDB

Installation
$ pip install mysql-logger
Usage example
from mysql_logger import MySQLLogger

# DB must be created before
db_settings = {
    'user': 'username',
    'password': 'Pa55w0rd',
    'host': 'localhost',
    'port': 3306,
    'database': 'my_log_db'
}

# Table will be automatically created (if not exists)
table_name = 'software_name'

# Initialize the logger
logger = MySQLLogger(db_settings, table_name)

# Log messages
logger.info('log info level message')
logger.error('log error level message')

Dependencies

Changes

v0.0.1 (2021-10-05)

  • Initial release.
  • Logger levels: debug, info, warning, error.

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

mysql-logger-0.0.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page