https://github.com/annotation/text-fabric
Raw File
Tip revision: 7b4203f6ea65079a9a0ec1407e757c2fb19d3c10 authored by Dirk Roorda on 25 May 2023, 10:03:26 UTC
various improvements to TEI conversion
Tip revision: 7b4203f
srun.py
from subprocess import run

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