Module to work with files and directories in archive in pathlib style.
- Goal: provide the same interface as 
pathlib.Pathfor archives. - State: partially implemented. Need to implement more methods.
 
Install from PyPI:
python3 -m pip install --user dephell_archivefrom 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()