mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
15 lines
377 B
Python
15 lines
377 B
Python
from argenta.app import AutoCompleter
|
|
|
|
|
|
if __name__ == "__main__":
|
|
test_commands: set[str] = {"start", "qwertyu", "stop", "exit"}
|
|
hist_file: str = "history.txt"
|
|
|
|
ac: AutoCompleter = AutoCompleter(autocomplete_button='tab')
|
|
ac.initial_setup(test_commands)
|
|
|
|
while True:
|
|
inp: str = ac.prompt(">>> ").strip()
|
|
if inp == "exit":
|
|
break
|