An open API service indexing awesome lists of open source software.

https://github.com/jonathanporta/safe_extractor

Some code that supposedly extracts zip/tar archives safely.
https://github.com/jonathanporta/safe_extractor

Last synced: over 1 year ago
JSON representation

Some code that supposedly extracts zip/tar archives safely.

Awesome Lists containing this project

README

          

# safe_extractor
Some code that supposedly extracts zip/tar archives safely.

No guarantees.

## Install
`pip install safe_extractor`

## Usage
```
from safe_extractor import safe_extractor
safe_extractor.untar_it("myfile.tar.gz", extract_path='.')
safe_extractor.unzip_it("myfile.zip", extract_path='.')
```