https://github.com/annotation/text-fabric
Raw File
Tip revision: a5a507a8980bb6cfaa7beabc9074e92360ba7217 authored by Dirk Roorda on 04 October 2018, 14:39:38 UTC
sensible export from TF browser
Tip revision: a5a507a
srun.py
from subprocess import run

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