после скачивая софта, в консоль пишет "-1 / unknown" принт не помог, подскажите пожалуйста
import wget
import os
from rich import print
from rich.console import Console
from rich.table import Table
from time import sleep
def dowload_file(url):
wget.download(url, 'C:')
# os.remove(__fisle__)
#
console = Console()
tasks = [f"task {n}" for n in range(1, 11)]
with console.status("[bold green]Working on tasks...") as status:
while tasks:
task = tasks.pop(0)
sleep(1)
console.log(f"{task} complete")
def main():
dowload_file('')
print("\n[bold green] software downloaded to folder C [/bold green]")
if __name__ == '__main__':
main()
input('Press ENTER to exit')
альтернативы не нашёл, как можно обойти или скрыть её?