|
|
|
|
|
by pizza
1048 days ago
|
|
What if Jupyter was ok for code with hundreds of thousands of lines? I suspect it might be.. I think nbdev ameliorates my major gripes with jupyter: it lets you easily maintain a bidirectional jupyter <-> (library as standard python files) mapping, while also giving you the excellent presentational flexibility of Jupyter. Plus a good looking docs site, for free. Since the code is exported as scripts, you can just `pip install -e .` and get all your IDE integration as normal. |
|
My major gripe with jupyter is that it's hard to document classes because a class must be inside one code block and you can't mix in comments block...
(unless I didn't see some obvious thing)