I am using the aria2c downloader ( https://aria2.github.io/ ) in my python script. The aria2c is a command-line tool to batch download some stuff.
import os
#...
os.system("aria2c " + url)
The output of aria2c is displayed in the same console with the downloaded percentage and download speed etc.
Now, I want to convert my python program to a GUI. The GUI must display information of the download speed and percentage, which must be graphical labels in Tkinter GUI.
Is there any way to use aria2c and achieve this?
Python default library's
subprocess
module allows you to call and interact with other programs. That will certainly suit your problem very well.