Snippet for "Why Refactoring? How to Refactor/Restructure Python Package?" https://hackernoon.com/why-refactoring-how-to-restructure-python-package-51b89aa91987
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
in __init__.py | |
This is where backward compatibility code lives. | |
This is to ensure the refactored package supports | |
old way of import. | |
This is incomplete, we will revisit __init__.py later | |
""" | |
CONFIG_NAME = {} | |
def get_logging_level(*args, **kwargs): | |
pass | |
class ConfigHelper: | |
def get(self, *args, **kwargs): | |
pass | |
def set(self, *args, **kwargs): | |
pass | |
def _get_settings_helper(self): | |
pass | |
def get_logging_level(self): | |
pass | |
def is_logging_enabled(self): | |
pass | |
class LOGGING_LEVEL: | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment