datajoely
09/30/2022, 6:01 PMGoss
09/30/2022, 6:05 PMBarros
09/30/2022, 6:38 PMBarros
09/30/2022, 6:38 PMBarros
09/30/2022, 6:43 PMdatajoely
09/30/2022, 6:48 PMBarros
09/30/2022, 6:55 PMBarros
09/30/2022, 7:00 PMkedro/framework/project/__init__.py
Barros
09/30/2022, 7:01 PMdatajoely
09/30/2022, 7:11 PMnoklam
09/30/2022, 7:59 PMantheas
10/01/2022, 5:22 PMfrom rich.traceback import install
from .progress import RICH_TRACEBACK_ARGS
logging.captureWarnings(True)
# TODO: verify this works
# remove handlers added by the default config
logging.getLogger("kedro").handlers = []
logging.root.handlers = []
install(**RICH_TRACEBACK_ARGS)
I also don't like how rich decides to use html elements for logging and formatting in jupyter, because it's clunky, larger (at least in vs code), and doesn't have a stable appearance when I commit my notebooks, so I need to run the following botch function after reload_kedro
def _reconfigure_rich():
from rich import reconfigure, _console
_rich_console_args = {
"width": PBAR_JUP_NCOLS,
"height": 100,
}
reconfigure(**_rich_console_args)
# Disable html rendering when using jupyter
# force_jupyter=False messes with pretty print
_console_check_buffer = _console._check_buffer
def non_html_check_buffer(self):
tmp = self.is_jupyter
self.is_jupyter = False
_console_check_buffer.__get__(self)()
self.is_jupyter = tmp
_console._check_buffer = non_html_check_buffer.__get__(_console)
LeonG
10/03/2022, 3:08 PMrun:
load-version: "dataset_name:2022-09-30T10.05.39.612Z"
Am I formatting my config file/parameters wrong?noklam
10/03/2022, 3:10 PMload_version
instead? https://github.com/kedro-org/kedro/issues/1791 please votes or drop a comment on the issue if you could.LeonG
10/03/2022, 3:19 PMload_version: ['dataset_name:2022-09-30T10.05.39.612Z']
noklam
10/03/2022, 3:40 PMyaml
load_version:
- dataset_name:2022-09-30T10.05.39.612Z
sjster
10/03/2022, 5:30 PMArnaldo
10/03/2022, 11:42 PMsjster
10/03/2022, 11:44 PMArnaldo
10/03/2022, 11:52 PMpoetry run kedro pipeline --help
sjster
10/03/2022, 11:59 PMsjster
10/04/2022, 12:06 AMLeonG
10/04/2022, 7:44 AMnoklam
10/04/2022, 12:48 PMTESSA_BEIJLOOS
10/04/2022, 1:05 PMnoklam
10/04/2022, 1:34 PMnoklam
10/04/2022, 1:41 PMTESSA_BEIJLOOS
10/04/2022, 1:42 PMnoklam
10/04/2022, 1:44 PMnoklam
10/04/2022, 1:45 PM