In the example on the PyPI page:
...
# Create a logger object.
logger = logging.getLogger('your-module')
...
Would this be better to write as:
...
# Create a logger object.
logger = logging.getLogger(__name__)
...
I've always thought this was best practice and also removes a DRY problem. Happy to PR if you think this would be an improvement.