Python micro framework for terminal UI applications
Project description
FlameWok
Very tiny framework to quickly create python terminal apps.
The purpose of this package is to get you rid as much as possible of the tedious part of creating menus, forms, and CLI, and to help to keep the code clean.
Installation
pip install flamewok
Create forms
from flamewok import Form
my_form = Form([
("name", "what is your name ?"),
("age", "how old are you ?"),
])
response = my_form.ask()
Create menus
from flamewok import Menu
menu = Menu()
def hello():
print("Hi there ! here is the callback hello !")
menu.ask()
def how():
print("I'm quite fine, thank you :)")
menu.ask()
def exit():
print("Good Bye folks !")
quit()
menu.add_boxes([
"\nChoose an option:\n",
(1, "hello !", hello),
(2, "how are you ?", how),
("x", "exit", exit),
])
menu.ask()
yes, that simple !
Create very quickly a CLI
from flamewok.cli import cli
def main():
print("main program lanched")
def see(*args):
"""the types are defined in the cli.route"""
for arg in args:
print(type(arg), arg)
def multi(*args):
"""the types are not defined in the cli.route, so the args are all str"""
numbers = [float(arg) for arg in args]
result = 1
for num in numbers:
result *= num
print(result)
if __name__ == "__main__":
cli.route(
"This is a CLI test\n", # this will appear in the help
("", main, "Launches the main programm"),
("-h", cli.help, "displays this help"),
("--help", cli.help, 'Idem'),
("see <int:a> <bool:> <str:> <float:>", see, "Show the arguments given in the CLI"),
("multi <some_numbers>", multi, "multiply the numbers"),
)
Fancy titles
from flamewok import big_text
from flamewok import color as c
print(big_text(
"Example", on="@", off=".", spacing=2, underline=True, color=c.success))
# Output (the color can only be seen in a real terminal):
@@@@@...............................@@...........
@....................................@...........
@......@...@...@@@...@@.@...@@@@.....@.....@@@...
@@@@....@.@.......@..@.@.@..@...@....@....@...@..
@........@.....@@@@..@.@.@..@...@....@....@@@@@..
@.......@.@...@...@..@.@.@..@@@@.....@....@......
@@@@@..@...@...@@@@..@.@.@..@.......@@@....@@@...
.................................................
.................................................
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
# or with default settings:
print(big_text("Example"))
# Output:
##### ##
# #
# # # ### ## # #### # ###
#### # # # # # # # # # # #
# # #### # # # # # # #####
# # # # # # # # #### # #
##### # # #### # # # # ### ###
check the wiki to get a better idea of what you can do.
flamewok, docs and exemples are available here: https://github.com/byoso/flamewok
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flamewok-1.2.1.tar.gz
(12.3 kB
view details)
Built Distribution
flamewok-1.2.1-py3-none-any.whl
(13.4 kB
view details)
File details
Details for the file flamewok-1.2.1.tar.gz
.
File metadata
- Download URL: flamewok-1.2.1.tar.gz
- Upload date:
- Size: 12.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0fe453c8195ce38dcf6f4bbc412bfa06dcf497476c1f6835a2344ac8fbe529f1 |
|
MD5 | 15a145b080f99a8e2a23b079db80d0a2 |
|
BLAKE2b-256 | e6eb82d0cbaf2c08ab2cbb9ca6ee4a0903250f37b474d844558140985b9c1569 |
File details
Details for the file flamewok-1.2.1-py3-none-any.whl
.
File metadata
- Download URL: flamewok-1.2.1-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95cf74bbfaa1e93dbfc92c7d24178556634acf7088cb8cb9ff2d7707805bdf78 |
|
MD5 | f53d6b850c764189da410244efc66e01 |
|
BLAKE2b-256 | 6f45b24dcdc3c55fb103645bbef76e68f5ba05a8c2748def56bd917872ce12cc |