Skip to content
forked from alanjds/unix_ar

AR file handling for Python (including .deb files)

License

Notifications You must be signed in to change notification settings

getninjas/unix_ar

 
 

Repository files navigation

unix_ar

PyPI version Build Status Read The Docs

This packages allows the reading and writing of AR archive files.

It is inspired by the tarfile and zipfile that are part of Python's standard library (unfortunately the name arfile was taken on PyPI).

Features

The package provides a ArFile partially implementing the interface of tarfile.TarFile

>>> import unix_ar
>>> import tarfile
>>> ar_file = unix_ar.open('mypackage.deb')
>>> tarball = ar_file.open('data.tar.gz/')  # default interest location on .deb files
>>> tar_file = tarfile.open(fileobj=tarball)  # handles gz decompression internally
>>> tar_file.extractfile('usr/local/mypackage/bin/mybinarycontent.sh')

Credits

This package was created by Remi Rampin, that does not want to maintain it anymore.

Packages

No packages published

Languages

  • Python 95.9%
  • Shell 3.4%
  • Batchfile 0.7%