Download file from zippyshare directly from python
In zippyshare-downloader
you can:
3.5.x
pip install zippyshare-downloader
Clone the repository
git clone https://github.com/mansuf/zippyshare-downloader.git
cd zippyshare-downloader
And then run setup.py
python setup.py install
NOTE: If you think zippyshare-downloader are already downloaded with latest version, but the app doesn't seems work properly (like this case #11). You can reinstall zippyshare-downloader by following this command:
# For Windows
py -3 -m pip cache purge zippyshare_downloader
py -3 -m pip uninstall zippyshare-downloader
py -3 -m pip install -U zippyshare-downloader
# For Linux / Mac OS
python3 -m pip cache purge zippyshare_downloader
python3 -m pip uninstall zippyshare-downloader
python3 -m pip install -U zippyshare-downloader
If still doesn't work properly that means Zippyshare change their code, you can open issue here
Read here for more informations
zippyshare-dl "insert zippyshare url here"
# or
zippyshare-downloader "insert zippyshare url here"
# Use this if `zippyshare-dl` and `zippyshare-downloader` didn't work
python -m zippyshare_downloader "insert zippyshare url here"
Use zippyshare-downloader
in your python script
Read here for more informations
from zippyshare_downloader import extract_info, extract_info_coro
# by default, parameter download is True
file = extract_info('insert zippyshare url here', download=True)
print(file)
# Output: <Zippyshare File name="..." size="...">
# async version
async def get_info():
file = await extract_info_coro('insert zippyshare url here', download=True)
print(file)
Q: I always getting NameError: The use of "bla bla" is not allowed
, what should i do ?
A: Zippyshare always change their code, Please update to last version, if your zippyshare-downloader is latest version, then open a issue here