allenai / allenai/cached_path

Caching a single file in a tar/zip should not extract all files

オープン
#260 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
Feature request
主要言語
Python
スター
47
フォーク
22
PR マージ指標
30日以内にマージされた PR はありません

説明

**Is your feature request related to a problem? Please describe.**
When extracting a single file from a tar/zip archive, currently all files in the archive are extracted using the `tarfile.extractall` function even though only a single file was requested. This leads to bloated cache directories containing unnecessary files. Note below, I only request `dummy.txt` but I also get `folder`:

```python
>>> import cached_path
>>> path = "https://github.com/allenai/cached_path/raw/refs/heads/main/test_fixtures/utf-8_sample/archives/utf-8.tar.gz!dummy.txt"
>>> f = cached_path.cached_path(path, extract_archive=True, quiet=True)
>>> [x.name for x in f.parent.iterdir()]
['dummy.txt', 'folder']
```

**Describe the solution you'd like**
Extract only the file requested using the `tarfile.extract` function rather than the `tarfile.extractall` function.

**Describe alternatives you've considered**
None

**Additional context**
None

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。