I don't pass through stdin so it probably doesn't work, but we can still commit it for now

This commit is contained in:
Lillian Violet 2024-10-23 13:59:15 +02:00
parent 3b4ccaafb0
commit 1e558259f6

14
python/justfile Normal file
View file

@ -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"