mirror of
https://github.com/okalachev/flix.git
synced 2025-07-27 09:39:33 +00:00
14 lines
216 B
Python
Executable File
14 lines
216 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Remote CLI for Flix
|
|
|
|
from pyflix import Flix
|
|
|
|
flix = Flix()
|
|
|
|
flix.on('print', lambda text: print(text, end=''))
|
|
|
|
while True:
|
|
command = input()
|
|
flix.cli(command, wait_response=False)
|