from handwriting_sample.base.utils import log
[docs]class LoggableObject(object):
"""Base class for loggable objects"""
[docs] @classmethod
def log(cls, text, be_verbose=False, is_verbose=False):
"""
Logs the specified text.
More info:
``be_verbose`` is True if logging should be verbose
``is_verbose`` is True if the specified text to log is verbose
:param text: a text to log
:type text: str
:param be_verbose: verbosity of the logging, defaults to False
:type be_verbose: bool, optional
:param is_verbose: verbosity of the text, defaults to False
:type is_verbose: bool, optional
:return: None
:rtype: None type
"""
log(text, cls.__name__, be_verbose, is_verbose)
[docs]class HandwritingDataBase(LoggableObject):
"""Base class for handwriting sample"""
# Handwriting data
AXIS_X = "x"
AXIS_Y = "y"
TIME = "time"
PEN_STATUS = "pen_status"
AZIMUTH = "azimuth"
TILT = "tilt"
PRESSURE = "pressure"
# Columns
COLUMNS = [AXIS_X, AXIS_Y, TIME, PEN_STATUS, AZIMUTH, TILT, PRESSURE]
# Date formant
DATE_FORMAT = "%Y-%m-%d, %H:%M:%S"