Skip to main content

LitREPL is a macroprocessing Python library for Litrate programming and code execution.

Project description

LitREPL

LitREPL is a command-line tool and a Vim plugin for literate programming in Python, aimed at providing user-friendly code editing and execution workflows.

2024-02-24 02-29-19

Features

Requirements

  • POSIX-compatible OS, typically a Linux. The plugin relies on POSIX pipes and depends on certain shell commands.
  • More or less recent Vim
  • Python3 with the following libraries: lark-parser (Required).
  • Command line tools: GNU socat (Optional), ipython (Optional).

Contents

Installation

The repository includes a Python tool and an interface Vim plugin. The Python part should be installed with pip install as usual. The Vim part requires plugin manager like Plug or hand-copying files to a .vim config folder.

The generic installation procedure:

Pip-install and Vim-Plug

Instructions for the Python Pip and Vim Plug:

  1. Install the litrepl Python package with pip:
    $ pip install --user git+https://github.com/grwlf/litrepl.vim
    $ litrepl --version
    
  2. Install the Vim plugin by adding the following line between the plug#begin and plug#end lines of your .vimrc file:
    Plug 'https://github.com/grwlf/litrepl.vim' , { 'rtp': 'vim' }
    
    Note: rtp sets the custom vim-plugin source directory of the plugin.

Alternatively, Nix/NixOS users can follow the formalized path:

Nix and vim_configurable

Nix supports configurable Vim expressions. To enable the Litrepl plugin, just add the vim-litrepl.vim-litrepl-release to the list of Vim packages.

let
  vim-litrepl = import <path/to/litrepl.vim> {};
in
vim_configurable.customize {
  name = "vim";
  vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; {
    start = [
      ...
      vim-litrepl.vim-litrepl-release
      ...
    ];
  };
}

Note: vim-demo expression from the default.nix provides an example Vim configuration. Use nix build '.#vim-demo' to build it and then ./result/bin/vim-demo to run the editor.

See the Development section for more details.

Usage

Markdown

  1. Create code and result sections. Put some Python code into the code section. Leave the result section emtpy.

    ``` python
    print('Code here!')
    ```
    
    ``` result
    ```
    
  2. Place the cursor on any of the secions and run the :LEval command. Litrepl will run the Python interpreter, evaluate the code and paste the output into the result section.

  3. Re-evaluate sections as needed. The interpreter will preserve its internal state between runs.

See also: Formatting Markdown documents

LaTeX

  1. Define lcode and lresult LaTeX environments according to the style of your document. The minimal working example might look like this:

    \newenvironment{lcode}{\verbatim}{\endverbatim}
    \newenvironment{lresult}{\verbatim}{\endverbatim}
    
  2. Create code and result sections in the body of your document. Put some Python code into the code section. Leave the result section emtpy.

    \begin{lcode}
    print('Code here!')
    \end{lcode}
    
    \begin{lresult}
    \end{lresult}
    
  3. Place the cursor on any of the secions and run the :LEval command.

  4. Re-evaluate sections as needed. The interpreter will preserve its internal state between runs.

See also: Formatting LaTeX documents

Reference

Commands

Vim Command line Description
:LStart litepl start Start the interpreter
:LStop litepl stop Stop the interpreter
:LStatus litepl status <F Print the daemon status
:LRestart litrepl restart Restart the interpreter
:LEval N lirtepl eval-sections (N|L:C) <F Run or update section under the cursor and wait until the completion
:LEvalAbove N lirtepl eval-sections '0..(N|L:C)' <F Run sections above and under the cursor and wait until the completion
:LEvalBelow N lirtepl eval-sections '(N|L:C)..$' <F Run sections below and under the cursor and wait until the completion
:LEvalAsync N lirtepl --timeout-initial=0.5 --timeout-continue=0 eval-sections (N|L:C) <F Run section under the cursor and wait a bit before going asynchronous. Also, update the output from the already running section.
:LInterrupt lirtepl interrupt (N|L:C) <F Send Ctrl+C signal to the interpreter and get a feedback
:LEvalAll lirtepl eval-sections '0..$' <F Evaluate all code sections
lirtepl eval-code <P Evaluate the given Python code
:LTerm lirtepl repl Open the terminal to the interpreter
:LOpenErr N/A Open the stderr window
:LVersion litrepl --version Show version

Where

  • F denotes the document
  • P denotes the Python code
  • N denotes the number of code section starting from 0.
  • L:C denotes line:column of the cursor.

Variables and arguments

Vim setting CLI argument Description
set filetype --filetype=T Input file type: latex|markdown
N/A --interpreter=I The interpreter to use: python|ipython|auto (the default)
let g:litrepl_debug=0/1 --debug=1 Print debug messages to the stderr
let g:litrepl_errfile="/tmp/litrepl.vim" N/A Intermediary file for debug and error messages
let g:litrepl_always_show_stderr=0/1 N/A Set to auto-open stderr window after each execution
let g:litrepl_timeout=FLOAT --timeout-initial=FLOAT Timeout to wait for the new executions, in seconds, defaults to inf
N/A --timeout-continue=FLOAT Timeout to wait for executions which are already running, in seconds, defaults to inf
  • I is taken into account by the start command or by the first call to eval-sections.

Hints

Vim, adding keybindings

The plugin does not define any keybindings, but users could do it by themselves, for example:

nnoremap <F5> :LEval<CR>
nnoremap <F6> :LEvalAsync<CR>

Vim, inserting new sections

Below we define :C command inserting new sections.

command! -buffer -nargs=0 C normal 0i``` python<CR>```<CR><CR>``` result<CR>```<Esc>4k

Vim, executing first section after restart

We define the :LR command running first section after the restart.

command! -nargs=0 LR LRestart | LEval 0

Vim, running shell commands

Thanks to IPython features, we can use exclamation to run shell commands directly from Python code sections.

``` python
!cowsay "Hi Litrepl"
```

``` result
 ____________ 
< Hi Litrepl >
 ------------ 
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||
```

Command line, basic usage

To evaluate code section in a document:

$ cat doc/example.md | litrepl --filetype=markdown --interpreter=ipython \
                               eval-sections 0..$ >output.md

To evaluate a Python script:

$ cat script.py | litrepl --interpreter=ipython eval-code

Note that both commands above share the same background interpreter session.

Command line, stop on unhandled exception

For processing software documents one might find useful to use a separated interpreter session, stopping it when first unhandled exception happens.

$ cat >document.md.in <<EOF
Failing Python example
``` python
raise Exception("D'oh!")
```
EOF
$ cat document.md.in \
  | litrepl \
    --filetype=markdown  \
    --standalone-session \
    --exception-exit=200 \
    eval-sections '0..$' \
  >document.md
$ echo $?
200

Here, the --standalone-session tells Litrepl to run this document in a new session and stop it before exiting, --exception-exit=200 sets the exit code returned in the case of unhandled exceptions.

Development

This project uses Nix as a primary development framework. flake.nix handles the source-level Nix dependencies while the default.nix defines the common build targets including Pypi and Vim packages, demo Vim configurations, development shells, etc.

Development shells

The default development shell is defined in the ./default.nix as a Nix expression named shell. Nix makes sure that all the dependencies are available inside. To enter this shell, run:

$ nix develop

Another shell which might be useful is shell-screencast. To run it, specify the full Nix-flake path as follows:

$ nix develop '.#shell-screencast'

Common workflows

The top-level Makefile encodes typical workflows to be executed from within the development shell:

[LitREPL-develop] $ make help
LitREPL is a macroprocessing Python library for Litrate programming and code execution
Build targets:
help:       Print help
test:       Run the test script (./sh/test.sh)
wheel:      Build Python wheel (the DEFAULT target)
version:    Print the version
upload:     Upload wheel to Pypi.org (./_token.pypi is required)

Other Nix targets

To build individual Nix expressions, run the nix build '.#NAME' passing the name of the expression to build. If succeeded, Nix publishes the last build results under the ./result symlink.

$ nix build '.#vim-demo'
$ ./result/bin/vim-demo  # Run the pre-configured demo instance of Vim

The list of Nix build targets includes:

  • litrepl-release - Litrepl script and Python lib
  • litrepl-release-pypi - Litrepl script and Python lib
  • vim-litrepl-release - Vim with locally built litrepl plugin
  • vim-litrepl-release-pypi - Vim with litrepl plugin built from PYPI
  • vim-test - A minimalistic Vim with a single litrepl plugin
  • vim-demo - Vim configured to use litrepl suitable for recording screencasts
  • vim-plug - Vim configured to use litrepl via the Plug manager
  • shell-dev - The development shell
  • shell-screencast - The shell for recording demonstrations, includes vim-demo.

Gallery

Basic usage

Using LitREPL in combination with the Vimtex plugin to edit Latex documents on the fly.

Asynchronous code execution

Technical details

The following events should normally happen after users type the :LitEval1 command:

  1. On the first run, LitREPL starts the Python interpreter in the background. Its standard input and output are redirected into UNIX pipes in the current directory.
  2. LitREPL runs the whole document through the express Markdown/Latex parser determining the start/stop positions of code and result sections. The cursor position is also available and the code from the right code section can reach the interpreter.
  3. The process which reads the interpreter's response is forked out of the main LitREPL process. The output goes to the temporary file.
  4. If the interpreter reports the completion quickly, the output is pasted to the resulting document immediately. Otherwise, the temporary results are pasted.
  5. Re-evaluating sections with temporary results causes LitREPL to update these results.

Limitations

  • Formatting: Nested code sections are not supported.
  • Formatting: Special symbols in the Python output could invalidate the document.
  • Interpreter: Extra newline is required after Python function definitions.
  • Interpreter: Stdout and stderr are joined together.
  • Interpreter: Evaluation of a code section locks the editor.
  • Interpreter: Tweaking os.ps1/os.ps2 prompts of the Python interpreter could break the session.
  • Interpreter: No asynchronous code execution.
  • Interpreter: Background Python interpreter couldn't be interrupted

Related projects

Edititng:

Code execution:

Useful Vim plugins:

Useful tools:

Third-party issues

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

litrepl-2.2.1.tar.gz (109.2 kB view hashes)

Uploaded Source

Built Distribution

litrepl-2.2.1-py3-none-any.whl (23.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page