We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0c22ae commit 460c7afCopy full SHA for 460c7af
Download from cmd using python/run.py.py
@@ -0,0 +1,9 @@
1
+import urllib.request
2
+url = input("Enter the Download-Url\n")
3
+name = input("Enter the name of the File with the extension\n")
4
+try:
5
+ print("Downloading starts...\n")
6
+ urllib.request.urlretrieve(url, name)
7
+ print("Download completed..!!")
8
+except Exception as e:
9
+ print(e)
0 commit comments