#zip-archive #io #utility #networking #tool #library #single-file

bin+lib partialzip

Download single files from online zip archives or list the content

28 releases (stable)

new 3.4.1 Apr 19, 2024
3.4.0 Jan 20, 2024
3.2.0 Nov 26, 2023
2.1.2 Aug 29, 2023
0.6.1 Mar 15, 2022

#90 in Compression

Download history 8/week @ 2024-01-15 282/week @ 2024-02-19 89/week @ 2024-02-26 3/week @ 2024-03-11 12/week @ 2024-03-18 25/week @ 2024-04-01 133/week @ 2024-04-15

158 downloads per month
Used in 2 crates

MPL-2.0 license

35KB
637 lines

PartialZip

Github Build Status

PartialZip is a rewrite of https://github.com/planetbeing/partial-zip in Rust.

It allows you to download single files from inside online zip archives.

You are welcome to add more zip types and decompression methods and file sources.

How to Use

As a command line tool:

cargo install partialzip
partialzip list http://yoururl/file.ipsw
partialzip download http://yoururl/file.ipsw kernelcache.release.iphone10 kernelcache.release.iphone10

Or from git sources:

cargo build --release
# listing files
./target/release/partialzip list http://yoururl/file.ipsw
# download file
./target/release/partialzip download http://yoururl/file.ipsw filename
# for example for kernelcache:
./target/release/partialzip download http://yoururl/file.ipsw kernelcache.release.iphone10 kernelcache.release.iphone10

Docker:

# build the container
docker build -t marcograss/partialzip .
# run it
# list files
docker run --rm marcograss/partialzip list http://yoururl/file.ipsw
# download piping to stdout and save it on the host
docker run --rm marcograss/partialzip pipe http://yoururl/file.ipsw kernelcache.release.iphone10 > kernelcache.release.iphone10

What is used for

Sometimes zip archives are huge and you just need a couple of files, for example, a kernelcache from an ipsw

./target/release/partialzip download "http://XXXXX/iPhone10,6_11.1.2_15B202_Restore.ipsw" kernelcache.release.iphone10b kernelcache.release.iphone10b

As you can see the time (and traffic) saved is significant.

PartialZip only downloads the required chunks for your file, allowing you to download a few Mb instead of several Gb of the original archive.

Prerequisites

One prerequisite to be able to partially download zips from http servers is that the server support the Range Header. In this way you can request specific parts of the archive.

Not all servers support this. You can check if this is supported using the -r flag

cargo run -- -r list http://yoururl/yourfile.zip

How to use as a library

If you want to use partialzip as a library and you want to reduce the binary size, you can choose in your Cargo.toml the flag default-features = false in the partialzip dependency. This will not build the command line of partialzip which is not required to use it as a library, and it will avoid including some unnecessary dependencies and save space.

rustls

You can avoid using openssl by enabling the rustls feature to avoid the dependency

Showcases

Dependencies

~20–33MB
~533K SLoC