A simple Python script to download file in iOS
from urllib.request import urlretrieve
url = input('URL: ')
filename = url.split('/')[-1]
urlretrieve(url, filename)
print("Downloaded file: {}".format(filename))
Published on 2019-04-29.
More articles like this:
-
Code Snippets
-
Productivity
-
Working on iPad
Previous <- Trying PreText
Next -> iOS Shortcut: Convert PDF to Image