ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

TXT2​PYNB

by jmwerner ALL

Converts text script to iPython notebook

Details

Installs

  • Total 370
  • Win 253
  • Mac 79
  • Linux 38
May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

TXT2PYNB

TXT2PYNB is a Sublime Text package that takes a Python (or Julia) file with inline block-commented markdown blocks and turns it into an iPython (or iJulia) notebook (.ipynb). Please view the “Tags” section below or the Examples folder for examples of scripts. The package will output a notebook of the same name as the script in the same directory where the script is saved. (e.g. my_script.py will output my_script.ipynb in the same directory)

Download

This package can be dowloaded from package control in Sublime Text. Search for “TXT2PYNB” after installing package control and searching for it within the 'install packages' option.

Building Notebook

Once installed in Sublime Text, TXT2PYNB can be called as a build-system by pressing C + b where C is the command key on Apple computers and ctrl on others. For some users, the TXT2PYNB build system will be called by default with .py or .jl scripts, but others might need to select it from Tools->Build System->TXT2PYNB.

Alternatively, TXT2PYNB can be searched and called using the Command Palette (cmd + shift + p). This is particularly useful if a user regularly uses other build systems for Python or Julia scripts. The default call to the TXT2PYNB build system can be turned off by removing the TXT2PYNB.sublime-build file in this package's folder.

Script Execution (For use outside of Sublime Text)

Example execution of code for a python script, Julia works similarly. The command-line-executable script txt2pynb.py is in the txt2pynb folder.

python /path/to/txt2pynb.py /path/to/example_script.py

Tags

The beginning and ending tags for code and markdown follow a typical html-like format. It is recommended that the entire markdown blocks be commented out and also the code tags be commented out (as below) in order to preserve the script's capability to be ran as a Python file.

#<code>
# This is a comment inside of a code block
#</code>

'''<md>
This is markdown!
</md>'''

Space Delimiting

Having no code or markdown tags will result in the script being parsed with double space delimiting. Please view example number 2 to see this demonstrated. The markdown blocks must be in block comment format such as '''markdown''' (or “”“markdown”“” for Julia) in order to be correctly parsed. Also, markdown blocks can be squished on top of code blocks to allow for a markdown and code block in one double space-delimited block, as seen in Example_2 in the Examples folder.

Examples

View Examples folder for sample code and output.

Common Issues

  • C+b doesn't output anything.
    • If a build system is already assigned by default for .py or .jl files, it may be necessary to manually change the build system while the script is open by going to Tools > Build System and selecting TXT2PYNB. Likewise, if a different build system is desired for an open .py or .jl file, switch it back using the same procedure.

To Do

  1. Add ability to 'pull back' code from edited notebook
  2. iPython 3+ compatability (output version 4 .ipynb)