1

I have some Jupyter notebooks and I want them to be executed using a main.py file.

Any ideas?

1 Answer 1

2

You can convert the .ipynb file to a plain .py file using any of the methods mentioned here -

How do I convert a IPython Notebook into a Python file via commandline?

If, like me, you don't have access to the command line tools required - you can extract the source code from the .ipynb file as it is mostly a json file

import json
with open('somefile.ipynb') as f:
    nb_content = json.load(f)

for cell in nb_content['cells']:
    print(*cell['source'])

That should print out the whole source code to your terminal

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.