interp = interpreters.create()
def run():
    interp.run('print("w trakcie")')
t = threading.Thread(target=run)
print('przed')
t.start()
print('po')
