Main file
1""" 2Main file 3""" 4import logging 5from nsedt.resources import constants as cns 6 7logging.basicConfig( 8 level=logging.INFO, 9 format=cns.LOG_FORMAT, 10 datefmt="%m/%d/%Y %I:%M:%S %p", 11)