diff --git a/python/justfile b/python/justfile new file mode 100644 index 0000000..0687ee4 --- /dev/null +++ b/python/justfile @@ -0,0 +1,14 @@ +build: + python main.py + +test: + pytest test.py + +run: + python main.py + +jupyter: + zsh ~/.config/helix/run_jupyter_from_helix.zsh python + +send: + python -c 'import sys, textwrap; sys.stdout.write(textwrap.dedent(sys.stdin.read()))' | jupyter run --existing="/tmp/rjh-$(pwd).json"