All Projects → mansuf → zippyshare-downloader

mansuf / zippyshare-downloader

Licence: MIT license
Download file from zippyshare directly with python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to zippyshare-downloader

fa5pro-downloader
A tool that allows you to download Font Awesome 5 Pro for free
Stars: ✭ 34 (+36%)
Mutual labels:  downloader
http-downloader
A download tool that is baked for the GitHub release assets. 专注于 GitHub 项目的工具安装
Stars: ✭ 18 (-28%)
Mutual labels:  downloader
wget-lua
Wget-AT is a modern Wget with Lua hooks, Zstandard (+dictionary) WARC compression and URL-agnostic deduplication.
Stars: ✭ 52 (+108%)
Mutual labels:  downloader
VandaDownloader
强大的下载特性支持,更加清晰的特性设计。
Stars: ✭ 25 (+0%)
Mutual labels:  downloader
aria2lib
A small library that is capable to run an aria2 executable without UI
Stars: ✭ 22 (-12%)
Mutual labels:  downloader
ee.Yrewind
Can rewind and save YouTube live stream
Stars: ✭ 133 (+432%)
Mutual labels:  downloader
tinydownloader
a tiny downloader with console panel.
Stars: ✭ 80 (+220%)
Mutual labels:  downloader
YoutubePlaylistDownloader
A tool to download whole playlists, channels or single videos from youtube and also optionally convert them to almost any format you would like
Stars: ✭ 226 (+804%)
Mutual labels:  downloader
anime-scraper
[partially working] Scrape and add anime episode stream URLs to uGet (Linux) or IDM (Windows) ~ Python3
Stars: ✭ 21 (-16%)
Mutual labels:  downloader
VKRdownloader
Vkrdownloader: All in one Video Downloader - Download videos from facebook twitter youtube tiktok and 1000+ other sites . YouTube downloader , facebook downloader . made by Vijay Kumar
Stars: ✭ 25 (+0%)
Mutual labels:  downloader
twist-dl
Simple Twist.moe/AnimeTwist anime downloader in CLI with support for batch downloading.
Stars: ✭ 28 (+12%)
Mutual labels:  downloader
nts
NTS Radio downloader and metadata parser
Stars: ✭ 58 (+132%)
Mutual labels:  downloader
acd
ACD helps you download Adobe Connect Sessions Videos and Audios, download files from FTP server, transfer files using Shift I/O
Stars: ✭ 117 (+368%)
Mutual labels:  downloader
EazyLoader
EazyLoader is Flask based web-application built to make downloading easy for you. Download videos and pictures from YouTube and Instagram in the best available quality. You can also download slides from SlideShare in PDF or PPTX format. In addition to that, you can calculate duration of YouTube Playlist at different speeds. You can also encrypt …
Stars: ✭ 42 (+68%)
Mutual labels:  downloader
yuu
Yuu - a simple AbemaTV and other we(e)bsite video downloader
Stars: ✭ 50 (+100%)
Mutual labels:  downloader
eodag
Earth Observation Data Access Gateway
Stars: ✭ 183 (+632%)
Mutual labels:  downloader
m3u8Downloader
meijuba.net,Python crawler,M3U8格式视频下载,桌面应用
Stars: ✭ 53 (+112%)
Mutual labels:  downloader
CocoaDownloader
An powerful download library for iOS, macOS.
Stars: ✭ 22 (-12%)
Mutual labels:  downloader
vuletube
Starter project for vue in combination with typescript. Getting response for youtube search. Call server part for saving videos. Use videos in three.js 3d port view. Control vuletube site with hands (NUI) also with voice command.
Stars: ✭ 12 (-52%)
Mutual labels:  downloader
Downloader
Android多任务单线程断点文件下载器
Stars: ✭ 29 (+16%)
Mutual labels:  downloader

pypi-total-downloads python-ver pypi-release-ver

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

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

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].