├── .github └── workflows │ └── automate_release_and_publish.yaml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── _version ├── data ├── code-syntax-highlighting.png ├── demo.gif ├── directory-tree.png ├── img-html-button.png ├── merging.gif ├── move_cell.gif ├── pretty-plain-error.gif ├── rendering-img.png ├── save_as_screen.png └── splitting.gif ├── pyproject.toml ├── requirements.txt └── src ├── __init__.py ├── app.py ├── cell.py ├── code_cell.py ├── exec_queue.py ├── file.py ├── markdown_cell.py ├── notebook.py ├── notebook_kernel.py ├── save_as_screen.py └── styles.tcss /.github/workflows/automate_release_and_publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/.github/workflows/automate_release_and_publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/styles.tcss -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/README.md -------------------------------------------------------------------------------- /_version: -------------------------------------------------------------------------------- 1 | 0.2.10 2 | -------------------------------------------------------------------------------- /data/code-syntax-highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/code-syntax-highlighting.png -------------------------------------------------------------------------------- /data/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/demo.gif -------------------------------------------------------------------------------- /data/directory-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/directory-tree.png -------------------------------------------------------------------------------- /data/img-html-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/img-html-button.png -------------------------------------------------------------------------------- /data/merging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/merging.gif -------------------------------------------------------------------------------- /data/move_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/move_cell.gif -------------------------------------------------------------------------------- /data/pretty-plain-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/pretty-plain-error.gif -------------------------------------------------------------------------------- /data/rendering-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/rendering-img.png -------------------------------------------------------------------------------- /data/save_as_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/save_as_screen.png -------------------------------------------------------------------------------- /data/splitting.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/data/splitting.gif -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/app.py -------------------------------------------------------------------------------- /src/cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/cell.py -------------------------------------------------------------------------------- /src/code_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/code_cell.py -------------------------------------------------------------------------------- /src/exec_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/exec_queue.py -------------------------------------------------------------------------------- /src/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/file.py -------------------------------------------------------------------------------- /src/markdown_cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/markdown_cell.py -------------------------------------------------------------------------------- /src/notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/notebook.py -------------------------------------------------------------------------------- /src/notebook_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/notebook_kernel.py -------------------------------------------------------------------------------- /src/save_as_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/save_as_screen.py -------------------------------------------------------------------------------- /src/styles.tcss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natibek/erys/HEAD/src/styles.tcss --------------------------------------------------------------------------------