https://github.com/annotation/text-fabric
Raw File
Tip revision: 49e97b5490d832278ee0e1d7006a4864c58a3d6b authored by Dirk Roorda on 04 July 2018, 20:12:12 UTC
New minor release 5.5.3
Tip revision: 49e97b5
srun.py
from subprocess import run

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