Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Pierre-Thibault's full-sized avatar

Pierre Thibault Pierre-Thibault

View GitHub Profile
# Good logging practice to put at the beggining of a file:
import logging as _logging
_logger = _logging.getLogger(__name__)
_logger.addHandler(logging.NullHandler())