Add two simple examples

This commit is contained in:
Sebastian Lohff 2019-02-01 00:03:42 +01:00
parent bd31b70e44
commit 6655fd097a
2 changed files with 31 additions and 0 deletions

14
examples/simple1.py Normal file
View File

@ -0,0 +1,14 @@
#!/usr/bin/env python3
from clintermission import CliMenu
def main():
q = ["Foo", "Bar", "Baz baz baz baz baz"]
m = CliMenu(q, "Time to choose:\n")
m.get_selection()
print("You selected", m.get_selection())
if __name__ == '__main__':
main()

17
examples/simple2.py Normal file
View File

@ -0,0 +1,17 @@
#!/usr/bin/env python3
from clintermission import CliMenu, CliMenuCursor, CliMenuTheme
def main():
q = ["Foo", "Bar", "Baz baz baz baz baz"]
m = CliMenu(q, "Time to choose:\n",
indent=2, dedent_selection=True,
cursor=CliMenuCursor.TRIANGLE,
style=CliMenuTheme.BLUE)
m.get_selection()
print("You selected", m.get_selection())
if __name__ == '__main__':
main()