gitextract_jcqvi4mb/ ├── .github/ │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .tx/ │ └── config ├── AUTHORS ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── README.md ├── TODO ├── devscripts/ │ ├── bump-version.sh │ ├── check-translation.py │ ├── new-locale.py │ ├── update-authors.sh │ └── update-locales.sh ├── docs/ │ ├── faqs.md │ └── localization_howto.md ├── setup.py ├── tests/ │ ├── __init__.py │ ├── test_ditem.py │ ├── test_dlist.py │ ├── test_parsers.py │ ├── test_utils.py │ └── test_widgets.py ├── youtube-dl-gui.1 └── youtube_dl_gui/ ├── __init__.py ├── __main__.py ├── data/ │ └── pixmaps/ │ └── icons-license ├── downloaders.py ├── downloadmanager.py ├── formats.py ├── info.py ├── locale/ │ ├── ar_SA/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── cs_CZ/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── en_US/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── es_ES/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── fr_FR/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── it_IT/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── ja_JP/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── ko_KR/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ ├── pt_BR/ │ │ └── LC_MESSAGES/ │ │ └── youtube_dl_gui.po │ └── ru_RU/ │ └── LC_MESSAGES/ │ └── youtube_dl_gui.po ├── logmanager.py ├── mainframe.py ├── optionsframe.py ├── optionsmanager.py ├── parsers.py ├── updatemanager.py ├── utils.py ├── version.py └── widgets.py