dephell-archive 0.1.7

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

dephellarchive 0.1.7

DepHell Archive



Module to work with files and directories in archive in pathlib style.

Goal: provide the same interface as pathlib.Path for archives.
State: partially implemented. Need to implement more methods.

Installation
Install from PyPI:
python3 -m pip install --user dephell_archive

Usage
from pathlib import Path
from tempfile import TemporaryDirectory

from dephell_archive import ArchivePath

with TemporaryDirectory() as cache:
path = ArchivePath(
archive_path=Path('tests', 'requirements', 'wheel.whl'),
cache_path=Path(cache),
)
subpath = path / 'dephell' / '__init__.py'
with subpath.open() as stream:
content = stream.read()

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.