Hacker News new | ask | show | jobs
by cantagi 1390 days ago
Yes, people writing unmaintainable code in Jupyter notebooks is a problem.

Personally, I start every notebook with

    %load_ext autoreload
    %autoreload 2
then develop production quality code in .py files.
2 comments

I didn't realize anyone didn't do this. Totally essential, great point!
Well that has improved my life - thanks!