/zippyshare-downloader

Download file from zippyshare directly from python

Primary LanguagePythonMIT LicenseMIT

zippyshare-downloader

Download file from zippyshare directly from python

Installation

pip install zippyshare-downloader

Simple usage:

from zippyshare_downloader import Zippyshare

z = Zippyshare()
z.download('give zippyshare url here')

extract info usage:

from zippyshare_downloader import Zippyshare

z = Zippyshare()
info = z.extract_info('give zippyshare url here')

print(info)

# {'name_file': ..., 'size': ..., 'date_upload': ....}