├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── LANGUAGE_CONTRIBUTION_GUIDE_en.md ├── LANGUAGE_CONTRIBUTION_GUIDE_zh.md ├── LICENSE ├── PROJECT_STRUCTURE.md ├── README.md ├── README_zh.md ├── VERSION ├── app.manifest ├── app.py ├── assets ├── main icon │ ├── 128x128.ico │ ├── 256x256.ico │ ├── 512x512.ico │ └── 64x64.ico ├── profile images │ └── this directory is necessary └── ui images │ ├── default thumbnail.png │ ├── info.png │ ├── playlist-dark.png │ ├── playlist-light.png │ ├── video-dark.png │ └── video-light.png ├── contributors.txt ├── data ├── appearance.json ├── general.json ├── info.json ├── languages.json └── languages │ ├── en.json │ ├── si.json │ ├── ta.json │ └── zh.json ├── dependencies_installer.py ├── dependencies_updater.py ├── ffmpeg └── place ffmpeg.exe in this folder ├── history └── thumbnails │ └── this directory is necessary ├── main.py ├── readme assets ├── en-0.png ├── en-1.png ├── en-2.png ├── en-3.png ├── en-4.png ├── en-5.png ├── en-6.png ├── en-7.png ├── en-8.png ├── en-9.png ├── zh-0.png ├── zh-1.png ├── zh-2.png ├── zh-3.png ├── zh-4.png ├── zh-5.png ├── zh-6.png ├── zh-7.png ├── zh-8.png └── zh-9.png ├── requirements.txt ├── services ├── __init__.py ├── download_manager.py ├── download_speed_tracker.py ├── history_manager.py ├── language_manager.py ├── load_manager.py ├── loading_indicate_manager.py ├── notification_manager.py ├── theme_manager.py ├── video_convert_manager.py └── video_count_tracker.py ├── settings ├── __init__.py ├── appearance_settings.py └── general_settings.py ├── temp ├── this directory is necessary └── thumbnails │ └── this directory is necessary ├── utils ├── __init__.py ├── data_base_utility.py ├── data_retrive_utility.py ├── date_time_utility.py ├── download_info_utility.py ├── file_utility.py ├── gui_utils.py ├── image_utility.py ├── json_utility.py ├── settings_validate_utility.py └── value_convert_utility.py └── widgets ├── __init__.py ├── components ├── __init__.py ├── accent_color_button.py ├── contributor_profile_widget.py └── thumbnail_button.py ├── core_widgets ├── __init__.py ├── alert_window.py ├── context_menu.py ├── low_level_alert_window.py ├── setting_panel.py └── tray_menu.py ├── history_widgets ├── __init__.py ├── history_object.py ├── history_panel.py ├── history_playlist.py └── history_video.py ├── play_list ├── __init__.py ├── added_play_list.py ├── downloaded_play_list.py ├── downloading_play_list.py └── play_list.py ├── setting_panels ├── __init__.py ├── about_panel.py ├── appearance_panel.py ├── downloads_panel.py ├── general_panel.py ├── navigation_panel.py └── network_panel.py └── video ├── __init__.py ├── added_video.py ├── downloaded_video.py ├── downloading_video.py └── video.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LANGUAGE_CONTRIBUTION_GUIDE_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/LANGUAGE_CONTRIBUTION_GUIDE_en.md -------------------------------------------------------------------------------- /LANGUAGE_CONTRIBUTION_GUIDE_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/LANGUAGE_CONTRIBUTION_GUIDE_zh.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /PROJECT_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/PROJECT_STRUCTURE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/README_zh.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | VERSION = '5.1.3' 2 | -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/app.manifest -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/app.py -------------------------------------------------------------------------------- /assets/main icon/128x128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/main icon/128x128.ico -------------------------------------------------------------------------------- /assets/main icon/256x256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/main icon/256x256.ico -------------------------------------------------------------------------------- /assets/main icon/512x512.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/main icon/512x512.ico -------------------------------------------------------------------------------- /assets/main icon/64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/main icon/64x64.ico -------------------------------------------------------------------------------- /assets/profile images/this directory is necessary: -------------------------------------------------------------------------------- 1 | this directory is necessary, don't delete :( -------------------------------------------------------------------------------- /assets/ui images/default thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/ui images/default thumbnail.png -------------------------------------------------------------------------------- /assets/ui images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/ui images/info.png -------------------------------------------------------------------------------- /assets/ui images/playlist-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/ui images/playlist-dark.png -------------------------------------------------------------------------------- /assets/ui images/playlist-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/ui images/playlist-light.png -------------------------------------------------------------------------------- /assets/ui images/video-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/ui images/video-dark.png -------------------------------------------------------------------------------- /assets/ui images/video-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/assets/ui images/video-light.png -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/contributors.txt -------------------------------------------------------------------------------- /data/appearance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/appearance.json -------------------------------------------------------------------------------- /data/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/general.json -------------------------------------------------------------------------------- /data/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/info.json -------------------------------------------------------------------------------- /data/languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/languages.json -------------------------------------------------------------------------------- /data/languages/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/languages/en.json -------------------------------------------------------------------------------- /data/languages/si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/languages/si.json -------------------------------------------------------------------------------- /data/languages/ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/languages/ta.json -------------------------------------------------------------------------------- /data/languages/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/data/languages/zh.json -------------------------------------------------------------------------------- /dependencies_installer.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | os.system("pip install -r requirements.txt") 4 | -------------------------------------------------------------------------------- /dependencies_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/dependencies_updater.py -------------------------------------------------------------------------------- /ffmpeg/place ffmpeg.exe in this folder: -------------------------------------------------------------------------------- 1 | place ffmpeg.exe in this folder -------------------------------------------------------------------------------- /history/thumbnails/this directory is necessary: -------------------------------------------------------------------------------- 1 | this directory is necessary, don't delete :( -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/main.py -------------------------------------------------------------------------------- /readme assets/en-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-0.png -------------------------------------------------------------------------------- /readme assets/en-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-1.png -------------------------------------------------------------------------------- /readme assets/en-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-2.png -------------------------------------------------------------------------------- /readme assets/en-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-3.png -------------------------------------------------------------------------------- /readme assets/en-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-4.png -------------------------------------------------------------------------------- /readme assets/en-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-5.png -------------------------------------------------------------------------------- /readme assets/en-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-6.png -------------------------------------------------------------------------------- /readme assets/en-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-7.png -------------------------------------------------------------------------------- /readme assets/en-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-8.png -------------------------------------------------------------------------------- /readme assets/en-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/en-9.png -------------------------------------------------------------------------------- /readme assets/zh-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-0.png -------------------------------------------------------------------------------- /readme assets/zh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-1.png -------------------------------------------------------------------------------- /readme assets/zh-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-2.png -------------------------------------------------------------------------------- /readme assets/zh-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-3.png -------------------------------------------------------------------------------- /readme assets/zh-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-4.png -------------------------------------------------------------------------------- /readme assets/zh-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-5.png -------------------------------------------------------------------------------- /readme assets/zh-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-6.png -------------------------------------------------------------------------------- /readme assets/zh-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-7.png -------------------------------------------------------------------------------- /readme assets/zh-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-8.png -------------------------------------------------------------------------------- /readme assets/zh-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/readme assets/zh-9.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/download_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/download_manager.py -------------------------------------------------------------------------------- /services/download_speed_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/download_speed_tracker.py -------------------------------------------------------------------------------- /services/history_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/history_manager.py -------------------------------------------------------------------------------- /services/language_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/language_manager.py -------------------------------------------------------------------------------- /services/load_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/load_manager.py -------------------------------------------------------------------------------- /services/loading_indicate_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/loading_indicate_manager.py -------------------------------------------------------------------------------- /services/notification_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/notification_manager.py -------------------------------------------------------------------------------- /services/theme_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/theme_manager.py -------------------------------------------------------------------------------- /services/video_convert_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/video_convert_manager.py -------------------------------------------------------------------------------- /services/video_count_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/services/video_count_tracker.py -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/settings/__init__.py -------------------------------------------------------------------------------- /settings/appearance_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/settings/appearance_settings.py -------------------------------------------------------------------------------- /settings/general_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/settings/general_settings.py -------------------------------------------------------------------------------- /temp/this directory is necessary: -------------------------------------------------------------------------------- 1 | this directory is necessary, don't delete :( -------------------------------------------------------------------------------- /temp/thumbnails/this directory is necessary: -------------------------------------------------------------------------------- 1 | this directory is necessary, don't delete :( -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/data_base_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/data_base_utility.py -------------------------------------------------------------------------------- /utils/data_retrive_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/data_retrive_utility.py -------------------------------------------------------------------------------- /utils/date_time_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/date_time_utility.py -------------------------------------------------------------------------------- /utils/download_info_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/download_info_utility.py -------------------------------------------------------------------------------- /utils/file_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/file_utility.py -------------------------------------------------------------------------------- /utils/gui_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/gui_utils.py -------------------------------------------------------------------------------- /utils/image_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/image_utility.py -------------------------------------------------------------------------------- /utils/json_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/json_utility.py -------------------------------------------------------------------------------- /utils/settings_validate_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/settings_validate_utility.py -------------------------------------------------------------------------------- /utils/value_convert_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/utils/value_convert_utility.py -------------------------------------------------------------------------------- /widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/__init__.py -------------------------------------------------------------------------------- /widgets/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/components/__init__.py -------------------------------------------------------------------------------- /widgets/components/accent_color_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/components/accent_color_button.py -------------------------------------------------------------------------------- /widgets/components/contributor_profile_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/components/contributor_profile_widget.py -------------------------------------------------------------------------------- /widgets/components/thumbnail_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/components/thumbnail_button.py -------------------------------------------------------------------------------- /widgets/core_widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/core_widgets/__init__.py -------------------------------------------------------------------------------- /widgets/core_widgets/alert_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/core_widgets/alert_window.py -------------------------------------------------------------------------------- /widgets/core_widgets/context_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/core_widgets/context_menu.py -------------------------------------------------------------------------------- /widgets/core_widgets/low_level_alert_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/core_widgets/low_level_alert_window.py -------------------------------------------------------------------------------- /widgets/core_widgets/setting_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/core_widgets/setting_panel.py -------------------------------------------------------------------------------- /widgets/core_widgets/tray_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/core_widgets/tray_menu.py -------------------------------------------------------------------------------- /widgets/history_widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/history_widgets/__init__.py -------------------------------------------------------------------------------- /widgets/history_widgets/history_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/history_widgets/history_object.py -------------------------------------------------------------------------------- /widgets/history_widgets/history_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/history_widgets/history_panel.py -------------------------------------------------------------------------------- /widgets/history_widgets/history_playlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/history_widgets/history_playlist.py -------------------------------------------------------------------------------- /widgets/history_widgets/history_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/history_widgets/history_video.py -------------------------------------------------------------------------------- /widgets/play_list/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/play_list/__init__.py -------------------------------------------------------------------------------- /widgets/play_list/added_play_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/play_list/added_play_list.py -------------------------------------------------------------------------------- /widgets/play_list/downloaded_play_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/play_list/downloaded_play_list.py -------------------------------------------------------------------------------- /widgets/play_list/downloading_play_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/play_list/downloading_play_list.py -------------------------------------------------------------------------------- /widgets/play_list/play_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/play_list/play_list.py -------------------------------------------------------------------------------- /widgets/setting_panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/__init__.py -------------------------------------------------------------------------------- /widgets/setting_panels/about_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/about_panel.py -------------------------------------------------------------------------------- /widgets/setting_panels/appearance_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/appearance_panel.py -------------------------------------------------------------------------------- /widgets/setting_panels/downloads_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/downloads_panel.py -------------------------------------------------------------------------------- /widgets/setting_panels/general_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/general_panel.py -------------------------------------------------------------------------------- /widgets/setting_panels/navigation_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/navigation_panel.py -------------------------------------------------------------------------------- /widgets/setting_panels/network_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/setting_panels/network_panel.py -------------------------------------------------------------------------------- /widgets/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/video/__init__.py -------------------------------------------------------------------------------- /widgets/video/added_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/video/added_video.py -------------------------------------------------------------------------------- /widgets/video/downloaded_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/video/downloaded_video.py -------------------------------------------------------------------------------- /widgets/video/downloading_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/video/downloading_video.py -------------------------------------------------------------------------------- /widgets/video/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisal-d/pytube-downloader/HEAD/widgets/video/video.py --------------------------------------------------------------------------------