Enhance your CKAN experience with our extension that enables seamless previews of various archive formats, ensuring easy access and efficient data management.
CKAN >= 2.10
ckan.plugins = unfold
ckan.views.default_views = unfold_view
Working with different archive formats requires different tools:
It depends on unrar
command-line utility to do the actual decompression. Note that by default it expect it to be in PATH
.
If unrar launching fails, you need to fix this.
Alternatively, rarfile
can also use either unar from TheUnarchiver or
bsdtar from libarchive as
decompression backend. From those unar is preferred as bsdtar has very limited support for RAR archives.
It depends on cryptography or PyCryptodome modules to process archives with password-protected headers.
We are using py7zr
library.
The py7zr depends on several external libraries. You should install these libraries with py7zr.
There are PyCryptodome
, PyZstd
, PyPPMd
, bcj-cffi
, texttable
, and multivolumefile
.
These packages are automatically installed when installing with pip command.
For extra information, please visit the official documentation, especially the dependencies section.
We are using built-in library zipfile
. Please consider referring to the official documentation for more information.
We are using built-in library tarfile
. Please consider referring to the official documentation for more information.
We are using rpmfile
library.
If you want to use rpmfile with zstd compressed rpms, you'll need to install the zstandard
module.