https://github.com/annotation/text-fabric
Raw File
Tip revision: 69c3f8c35133bfdd1e62af1d1705bac20abb14d0 authored by Dirk Roorda on 15 January 2024, 13:41:35 UTC
triggers express download in more cases
Tip revision: 69c3f8c
srun.py
from subprocess import run

print('A')
run('python3 hello.py', shell=True)
print('B')
back to top