A
A
apiwi2020-04-26 18:11:29
Python
apiwi, 2020-04-26 18:11:29

How to create a loading animation?

There is this code:

response = requests.get('https://dropfiles.ru/files/2828181a9b881cebd0fef825618a085a.zip')
file = tempfile.TemporaryFile()
file.write(response.content)
fzip = zipfile.ZipFile(file)
fzip.extractall('C:\\Users\\{0}\\Documents\\Rockstar Games\\GTA V\\User Music'.format(getuser()))
file.close()
fzip.close()


How can I embed file loading animation in it? There is the same code, but using tkinter.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question