QuickUI is a tool to instantly create a usable UI from any python file which has a CLI created using the Argument Parser
.
git clone https://github.com/cardwizard/QuickUI
pip install -r requirements.txt
python -m quickui my-awesome-python-file.py
Hit http://localhost:8765
to access the QuickUI dashboard
With it, you know exactly what parameters need to be passed to the program while running it.
Once all the required criterion is met, you can use quickUI to run the program and view the output in a
friendly terminal like interface!
. This is great for early internal demos.
QuickUI adds static checks on data types
as well. Along with the checks, it
auto-fills the entries with default values
and can also show help
fields as a placeholder.
In case, your parser mentions that a particular field is required, QuickUI
adds a compulsory check as well.
In case there is an error, it will be shown in the interface itself highlighted in red!
Developer: Aadesh M Bagmar