Turn command-line programs into user-friendly GUIs
Gooey is a Python library that transforms command-line programs into a full-fledged GUI application with no additional code, making it more approachable for end-users without technical expertise.
Key Features:
Common Use Cases:
pip install Gooey
from gooey import Gooey, GooeyParser
@Gooey(program_name="Sample Gooey App")
def main():
parser = GooeyParser(description="Example of using Gooey")
parser.add_argument('Name', help="Enter your name")
parser.add_argument('Age', type=int, help="Enter your age")
parser.add_argument('--verbose', action='store_true', help="Enable verbose output")
args = parser.parse_args()
print(f"Hello {args.Name}! You are {args.Age} years old.")
if args.verbose:
print("Verbose mode is enabled")
if __name__ == "__main__":
main()