https://github.com/annotation/text-fabric
Raw File
Tip revision: df90b615e1938d9c4742c4e7e8e8ba2aea915a62 authored by Dirk Roorda on 03 February 2023, 21:11:43 UTC
tf browser: query column can be resized
Tip revision: df90b61
srun.py
from subprocess import run

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