Skip to main content

Download file from zippyshare directly with python

Project description

zippyshare-downloader

Download file from zippyshare directly from python

Table of Contents

Key Features

In zippyshare-downloader you can:

  • download file from Zippyshare (Yes of course).
  • Extract filename, date uploaded, file size, and downloadable url information from given url.
  • Fast Download, allows you to download in 2 connections at same time simultaneously.

Minimum Python version

3.5.x

Installation

Python Packages Index (PyPI)

pip install zippyshare-downloader

From the source

Clone the repository

git clone https://github.com/mansuf/zippyshare-downloader.git
cd zippyshare-downloader

And then run setup.py

python setup.py install

Simple Usage

Command Line Interface (CLI)

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"

Embedding (API)

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)

Links

FAQ

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zippyshare-downloader-0.2.0.tar.gz (15.2 kB view hashes)

Uploaded Source

Built Distribution

zippyshare_downloader-0.2.0-py3-none-any.whl (18.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page