Added Download Progress and Percentage to the Interface
Changes Made:
-
Graphical Interface:
- Added a
progress_frame
below the log area to contain the progress bar and percentage. - Added a
CTkProgressBar
widget to display the progress bar. - Added a
CTkLabel
widget to display the progress percentage.
- Added a
-
New Functions:
update_progress(self, downloaded, total)
: Updates the progress bar and percentage.
-
Modifications in
Downloader
:- Modified the
process_media_element
function to callupdate_speed_callback
(progress update function) during download.
- Modified the
-
Initialization of
Downloader
:- Added the
update_progress
function during the initialization of theDownloader
class.
- Added the