Share code between notebooks + recepies

q666
Level 1
Share code between notebooks + recepies

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.

0 Kudos
1 Reply
kenjil
Dataiker

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




  • either be in your python path

  • or you should add the directory where it has been written to your python path.



You can find your python path with




import sys
for d in sys.path:
print d
0 Kudos

Labels

?
Labels (3)
A banner prompting to get Dataiku