.. You should enable this project on travis-ci.org and coveralls.io to make
these badges work. The necessary Travis and Coverage config files have been
generated for you.
.. image:: https://travis-ci.org/davidread/ckanext-downloadall.svg?branch=master
:target: https://travis-ci.org/davidread/ckanext-downloadall
.. image:: https://img.shields.io/pypi/v/ckanext-downloadall.svg
:target: https://pypi.python.org/project/ckanext-downloadall/
:alt: Latest Version
.. image:: https://img.shields.io/pypi/pyversions/ckanext-downloadall.svg
:target: https://pypi.python.org/project/ckanext-downloadall/
:alt: Supported Python versions
.. image:: https://img.shields.io/pypi/status/ckanext-downloadall.svg
:target: https://pypi.python.org/project/ckanext-downloadall/
:alt: Development Status
.. image:: https://img.shields.io/pypi/l/ckanext-downloadall.svg
:target: https://pypi.python.org/project/ckanext-downloadall/
:alt: License
===================
ckanext-downloadall
This CKAN extension adds a “Download all” button to datasets. This downloads
a zip file containing all the resource files and a datapackage.json.
.. image:: demo.png
This zip file is a good way to package data for storing or sending, because:
you keep all the data files together
you include the documentation (metadata) - avoids the common problem of being
handed some data files and not know anything about it or where to find info
the metadata is machine-readable, so can be used by tools, software and in
automated workflows. For example:
- validating a series of data releases all meet a standard schema
- loading it into a database, using the column types and foreign key
relations specified in the metadata
The datapackage.json <https://frictionlessdata.io/specs/data-package/>_ is a
Frictionless Data <https://frictionlessdata.io/specs/data-package/>_
standard, also known as a Data Package.
Technical notes
~~~~~~~~~~~~~~~