Add title download time elapsed to finish log

This commit is contained in:
rlaphoenix 2023-03-01 16:06:55 +00:00
parent 7ee5e71075
commit d75996f6e4
1 changed files with 5 additions and 1 deletions

View File

@ -434,6 +434,8 @@ class dl:
if skip_dl: if skip_dl:
self.log.info("Skipping Download...") self.log.info("Skipping Download...")
else: else:
dl_start_time = time.time()
try: try:
with Live( with Live(
Padding( Padding(
@ -561,8 +563,10 @@ class dl:
final_path = self.mux_tracks(title, not no_folder, not no_source) final_path = self.mux_tracks(title, not no_folder, not no_source)
title_dl_time = time_elapsed_since(dl_start_time)
downloaded_table = Table.grid(expand=True) downloaded_table = Table.grid(expand=True)
downloaded_table.add_row("Download Finished! :tada:") downloaded_table.add_row(f" :tada: Download Finished in [progress.elapsed]{title_dl_time}[/]!")
downloaded_table.add_row(Text(str(final_path), overflow="fold")) downloaded_table.add_row(Text(str(final_path), overflow="fold"))
console.print(Padding( console.print(Padding(
downloaded_table, downloaded_table,