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
""" | |
Package: utils.config | |
before restructuring | |
""" | |
# This looks like belongs to utils.config.constants | |
CONFIG_NAME = { | |
"ENABLE_LOGGING": "enable_logging", | |
"LOGGING_LEVEL": "logging_level", | |
} | |
# This looks like a helper function, goes to utils.config.helpers | |
def get_logging_level(): | |
# This looks like a duplicate method | |
pass | |
# This looks like a helper class, goes to utils.config.helpers | |
class ConfigHelper: | |
def get(self, config_name, default=None): | |
pass | |
def set(self, config_name, value): | |
pass | |
def _get_settings_helper(self): | |
pass | |
def get_logging_level(): | |
# This looks like a duplicate method | |
pass | |
def is_logging_enabled(): | |
pass | |
# This looks like another constant, goes to utils.config.constants | |
class LOGGING_LEVEL: | |
VERBOSE = "verbose" | |
STANDARD = "standard" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment