-
-
Save gEndelf/6f422ab587dc50d8843c6b7dc6f530ac to your computer and use it in GitHub Desktop.
Download file from Yandex.Disk through share link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# https://toster.ru/q/72866 | |
# How to | |
# wget http://gist.github.com/... | |
# chmod +x ya.py | |
# ./ya.py download_url path/to/directory | |
import os, sys, json | |
import urllib.parse as ul | |
sys.argv.append('.') if len(sys.argv) == 2 else None | |
base_url = 'https://cloud-api.yandex.net:443/v1/disk/public/resources/download?public_key=' | |
url = ul.quote_plus(sys.argv[1]) | |
folder = sys.argv[2] | |
res = os.popen('wget -qO - {}{}'.format(base_url, url)).read() | |
json_res = json.loads(res) | |
filename = ul.parse_qs(ul.urlparse(json_res['href']).query)['filename'][0] | |
os.system("wget '{}' -P '{}' -O '{}'".format(json_res['href'], folder, filename)) | |
# os.system("wget '{}'".format(json_res['href'])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment