Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code: ConfigNamesError
Exception: RuntimeError
Message: Dataset scripts are no longer supported, but found quickextract.py
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 67, in compute_config_names_response
config_names = get_dataset_config_names(
path=dataset,
token=hf_token,
)
File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
dataset_module = dataset_module_factory(
path,
...<4 lines>...
**download_kwargs,
)
File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1215, in dataset_module_factory
raise e1 from None
File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1175, in dataset_module_factory
raise RuntimeError(f"Dataset scripts are no longer supported, but found {filename}")
RuntimeError: Dataset scripts are no longer supported, but found quickextract.pyNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
quickextract
Extract / Merge / Parse archives from any source — pure stdlib CLI (optional py7zr for .7z).
Download
curl -L -o quickextract.py https://huggingface.co/datasets/Offlin33er/quickextract/resolve/main/quickextract.py
Usage
python quickextract.py extract data.zip https://example.com/logs.tar.gz ./out/
python quickextract.py merge a.zip b.tar.gz ./merged/ --on-conflict rename
python quickextract.py parse bundle.zip --limit 20 --files
- extract — zip, tar, tar.gz/tgz, tar.bz2, tar.xz, gz, bz2, xz (+7z with
pip install py7zr); sources may be local paths, directories (auto-finds archives inside), or http(s) URLs;--flattendrops all files into DEST directly - merge — combines archives/directories into one tree, dedupes identical (path, sha256) pairs, conflicts via
--on-conflict skip|rename|overwrite - parse — inspect an archive without extracting: entry count, uncompressed payload, type histogram, optional per-file listing
Safety: path-traversal (zip-slip) members are blocked; symlink/device tar members are skipped; collisions are auto-renamed and reported.
Version 1.0.1 — tested against fixture zips/tars, a malicious traversal zip, and symlink/device tar members.
- Downloads last month
- 31