├── .gitignore ├── LICENSE ├── README.md ├── icon.ico ├── issuecorrection └── extract.py ├── requirements.txt ├── window.py ├── youtube.py └── ytdownloader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/README.md -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/icon.ico -------------------------------------------------------------------------------- /issuecorrection/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/issuecorrection/extract.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PySimpleGUI==4.29.0 2 | pytube3==9.6.4 3 | typing-extensions==3.7.4.3 4 | -------------------------------------------------------------------------------- /window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/window.py -------------------------------------------------------------------------------- /youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/youtube.py -------------------------------------------------------------------------------- /ytdownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imf4ll/ytdownloader/HEAD/ytdownloader.py --------------------------------------------------------------------------------