Gooey is a python package that turns your CLI apps into GUIs with python.
Install Gooey with pip.
pip3 install gooey
from gooey import Gooey, GooeyParser
from os import system
@Gooey
def main():
= GooeyParser()
parser 'url')
parser.add_argument(= parser.parse_args()
args f'youtube-dl --extract-audio --audio-format mp3 "{args.url}"')
system(
main()