Skip to main content

No project description provided

Project description

NetPluck

NetPluck is a tool allows you to remotely extract assets, typically files, from local and remote archives, such as a zip, without fetching or opening the entire archive. NetPluck was specifically designed to be used for very large .zip files that were stored in remote locations such as buckets on Backblaze and CDNs. It is extremely useful if you want to fetch the list of files or extract specific files of very large remote files.

If you intend to fetch and extract all the contents of the archive or your files are very small you don't need this library.

There are three key features of NetPluck:

  1. Works very efficiently on large files
  2. Can tell you what's in the file without reading the entire thing
  3. Extracts specific files without reading the entire thing

NetPluck provides a CLI tool via netpluck and the core python libraries.

Installation

To get access to local and http/https files you can run:

pip install netpluck

If you want access to buckets like backblaze, you should install the optional dependency:

pip install buckethandler

If you don't want to use pip and instead want to install locally via this copy (or want to contribute development) you can run the following after cloning and cd'ing into the repository.

pip install -e .

Formats Supported

  1. zip
  2. zip64
  3. tar

Protocols Supported

  1. Local Files
  2. Remote Files over HTTP or HTTPS that support range
  3. Backblaze B2

Usage

Retrieving the List of Files in the Archive

netpluck --path mini.zip --toc
mini/
mini/empty.txt
mini/lava.png
mini/message.txt
mini/nova.bmp
mini/triangles.png
import netpluck

np = netpluck.NetPluck("mini.zip")
toc = np.get_file_list()
print(toc)
"""
['mini/', 'mini/empty.txt', 'mini/lava.png', 'mini/message.txt', 'mini/nova.bmp', 'mini/triangles.png']
"""

Extracting Files

You can pass regular expressions using --filter to extract files. If you do not specify the --out argument it will default to ./output/

netpluck --path mini.zip --filter="\.*bmp" --out ./output/
[1/1] 100.00% mini/nova.bmp => ./output/mini/nova.bmp
import netpluck

np = netpluck.NetPluck("mini.zip")
files = np.extract_from_filter(r"\.*.bmp","./output/")
"""
[1/1] 100.00% mini/nova.bmp => output\mini\nova.bmp
"""
print(files)
"""
['output\\mini\\nova.bmp']
"""

You can also use the --flatten flag if you want to strip all directories from the resulting output, this will dump all extracted matches into your output folder with no hierarchy.

Getting Statistics

You can enable the --stats flag to see data about bytes and lookups made.

netpluck --path mini.zip --stats --filter="\.*txt" --out ./output/
[1/2]  50.00% empty.txt => ./output/mini/empty.txt
[2/2] 100.00% message.txt => ./output/mini/message.txt

File size: 1.52MB
Cache hits: 7 size: 1.37KB
Uncached reads: 3 size: 64.10KB
Bytes saved: 1.46MB 95.88%

In this instance we read 64kb of the 1556kb file while extracting the two txt files.

Extending

Adding New Protocols and Archives

Protocols in NetPluck are handled by a prefix like: https:// or b2:// to add new ones you must modify the netpluck.py main class and ProtocolType enum. Make sure you modify the _guess_protocol method so it can automatically determine the appropriate one.

Archive types can be extended by adding your own handler to netpluck/virtual_archive and subclassing the VirtualArchive. Be sure to implement all interfaces exposed by VirtualArchive. See the existing zip archive handler for an example. Typically this means you implement __init__ and _read_uncached_range. See netpluck/virtual_file/local.py or netpluck/virtual_file/http.py for a simple example.

You may also need to add a new virtual file type depending on how your data is queried which can be done just like VirtualArchive but with VirtualFile.

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

netpluck-0.9.3.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

netpluck-0.9.3-py3-none-any.whl (18.2 kB view details)

Uploaded Python 3

File details

Details for the file netpluck-0.9.3.tar.gz.

File metadata

  • Download URL: netpluck-0.9.3.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for netpluck-0.9.3.tar.gz
Algorithm Hash digest
SHA256 f2d39b49a42a50399e455d424e2dfdfbe1e3780e6f17c67efc7b9560917b8bd2
MD5 0b088ed8f2468417367bb9e04cb9754b
BLAKE2b-256 1c716e92f0a171ebfa5d3e23f36eba23c781606c86031424979008973fd42371

See more details on using hashes here.

File details

Details for the file netpluck-0.9.3-py3-none-any.whl.

File metadata

  • Download URL: netpluck-0.9.3-py3-none-any.whl
  • Upload date:
  • Size: 18.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.11

File hashes

Hashes for netpluck-0.9.3-py3-none-any.whl
Algorithm Hash digest
SHA256 cad43c0dfcf6af612f05d42de5ff6e35778375343d3fc994c2cee3994a64f5b3
MD5 145e6e22e524366bd29b6248fcc1db93
BLAKE2b-256 db207db416049943811455f899c31c64ba3463e2a72df899129c5b907d8905b4

See more details on using hashes here.

Supported by

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