Monday, 5 February 2024

Develop tooling for jupyter notebooks

  •  Create a setuptools project
  • create a folder where you place your notebook
  • start your notebook and do a `pip3 install -e ..`
  • Paste this into a cell:
    %load_ext autoreload
    %autoreload 2
    

No comments:

Post a Comment

Parse Wikipedia dump

""" This module processes Wikipedia dump files by extracting individual articles and parsing them into a structured format, ...