Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Hi
When i'm using notebooks i have a habit to save some of the scripts via %%writefile utils.py, is it possible to get to the saved scripts from the recipes ? a simple import utils will not see the defined script 😞
It would definitely help if we could share the code in a easy way.
If you are using magics %%writefile my_file.py in a notebook beware of the location where you are writing that file.
In order to load that file as module in a recipe, the file you have written should
You can find your python path with
import sys
for d in sys.path:
print d