This repository has been archived by the owner on Apr 3, 2023. It is now read-only.
Releases: mansuf/zippyshare-downloader
Releases · mansuf/zippyshare-downloader
More pattern in v0.3.4
More pattern in v0.3.3
What's new in v0.3.3 ?
This update only fix "failed to get download url" in zippyshare
- Add more pattern
More pattern in v0.3.2
What's new in v0.3.2 ?
This update only fix "failed to get download url" in zippyshare
- Add more pattern
Some fixes in 0.3.1
What's new in v0.3.1 ?
This update only include some fixes and improvements. More info see below:
For CLI
- Fixed
--folder
without--async
option throwing error - Fixed some error message after finished download
For API
- Fixed
File.download()
with parameterfolder
throwing error - Fixed
Net.close_async()
are not closed properly - Improved
NetworkObject
class
v0.3.0
What's new in v0.3.0 ?
- Added proxy support
- Some bug fixes
For embedding
- Added
url
attribute inFile
class, returning origin zippyshare url. - Added
size_fmt
attribute inFile
class, returning formatted size of zippyshare file. - Added
date_uploaded_fmt
attribute inFile
class, returning formatted date uploaded of zippyshare file.
For Command Line Interface (CLI)
- Output cli is now changed from json format to pretty print format
- Added
--json
option, the output will be in json format, NOTE: all logging from the app will be disabled. - Now the app will throw error if
-pipe
and--no-download
are present - Fix
--silent
option are not working properly
v0.2.0
What's new in v0.2.0 ?
- Fixed unable to extract download url #10
For embedding
- Added
download_stdout()
, this function will download zippyshare file to stdout. Useful for piping media content to media player (like vlc) if playable.
For Command Line Interface (CLI)
- Added
-pipe
option, Download to stdout, useful for piping media content to media player (like vlc).
v0.1.3
v0.1.2
v0.1.1 (BROKEN)
What's new in v0.1.1 ?
CRITICAL FIX
- Fixed CLI won't run, because some modules are missing during installation.
v0.1.0
What's new in v0.1.0 ?
There a lot of reworks and new features, including:
- Reworked, optimized and fixed bugs in CLI
- Added fast download
- Added Documentation
For more informations about these updates, see below
For Embedding (API)
- Added
File.download_coro()
. The parameters are same fromFile.download()
- Added
fast
parameter forFile.download_coro()
extract_info_coro()
anddownload_coro()
now have native async downloader (the previous one was from download module threaded)extract_info_coro()
anddownload_coro()
now are faster than before when extracting info
For Command Line Interface (CLI)
- Added
--fast
option for faster download. NOTE: You must add--async
option in order to work - Fixed
--filename
option are not working - Optimized app