# Update the progress bar progress_bar['value'] = (len(file) / total_size) * 100 root.update_idletasks()
# Get the total size of the file total_size = int(response.headers.get('content-length', 0))
def download_driver(self): try: response = requests.get(self.driver_url, stream=True) response.raise_for_status()
# Download the file in chunks with open(self.driver_filename, 'wb') as file: for chunk in response.iter_content(chunk_size=8192): file.write(chunk) update_progress(chunk)
progress_bar = tk.Progressbar(root, orient='horizontal', length=200, mode='determinate') progress_bar.pack()
progress_label['text'] = "Download complete!"
except requests.exceptions.RequestException as e: print(f"An error occurred: {e}")