https://github.com/annotation/text-fabric
Raw File
Tip revision: fca5053dd81aa5c22e9763230ea73754fbddecce authored by Dirk Roorda on 09 January 2019, 19:26:25 UTC
better browsing
Tip revision: fca5053
srun.py
from subprocess import run

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