In normal Python project we might have a parent py file that imports from a sibling or child folder/module (initialised by __init__.py
, from .folder import module
etc.
Is there a way to do this using Synapse notebooks within a given (ex. dev
) workspace?
Ex. I would like to create a notebook/python module for use in logging - a wrapper to wrap functions. I don't want to have to have to copy-paste this module into 20 different notebooks.
Thanks!