https://github.com/annotation/text-fabric
Raw File
Tip revision: e82d7d1405b0f1cf94dba931f9a1f996d6709eec authored by Dirk Roorda on 28 November 2023, 11:29:10 UTC
new conversion from pagexml to tf, just started
Tip revision: e82d7d1
srun.py
from subprocess import run

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