Jupyter defterini çevrimiçi bölün, tek bir.ipynb dosyasını tarayıcınızda birden fazla geçerli deftere ayırın
When you need to split jupyter notebook online for smaller hand-ins, separate lessons, or repo hygiene, this tool turns one .ipynb into several nbformat files you download in one ZIP. It targets searches like split ipynb file, split jupyter notebook into multiple files, and ipynb file splitter without nbconvert, Pandoc, or a local Python stack. Each part is a full notebook you can open independently in JupyterLab, VS Code, or Colab—useful when a semester-long file becomes impossible to review or when tickets need smaller attachments.
Students ask how to split a jupyter notebook when one giant file mixed every unit; teams split ipynb file artifacts before attaching cells to different PRs. Choose rules that match your outline: split at Markdown headings (# for chapters, or # plus ## for sections), or slice every N cells for predictable chunk sizes when mechanical parts matter more than titles. Filenames prefer the first heading in each slice when possible (for example 01-intro.ipynb), so the ZIP parts arrive already labeled for LMS upload.
Each exported notebook keeps kernelspec and language_info from the parent so runtime expectations stay consistent. Toggle execution hygiene—clear In [n] labels or renumber them inside each part—and pretty-printed JSON for readable archives. Remember that later parts may still depend on variables defined earlier; add setup cells or re-imports if students open slices in isolation. Saved outputs and embedded plots travel with the cells you grouped unless you stripped them beforehand. When heading mode returns a single part, add clearer Markdown titles or switch to a smaller chunk size so the ZIP actually contains multiple notebooks for graders.
Secure server conversion — processed briefly, not stored afterward. Pair with our merger when you need round-trip experiments—split here, merge elsewhere. Use heading mode for teaching notebooks structured by titles; use chunk mode when LMS size caps or ticket workflows need evenly sized ZIP parts. Upload once, pick rules, preview any part, download notebook-split.zip.



