-1
Talk to me guys, How do I convert a script made in python to run on android? My script is very simple, only to extract a file that will always stay in the same place, do not need a graphical interface for it, just need an icon I click and it does this file extraction to the point that any layman simply click the icon.
Thank you.
Here I did the test in windows.
'''
Programa para apagar a pasta com todo o conteúdo interno
e depois descompactar.
'''
import shutil
shutil.rmtree('C:\\teste')
import zipfile
fantasy_zip = zipfile.ZipFile('C:\\teste.zip')
fantasy_zip.extractall('C:\\')
fantasy_zip.close()