Metadata-Version: 2.4
Name: ckanext-harvest-basket
Version: 1.5.5
Summary: A bunch of custom harvesters for ckanext-harvest
Author-email: DataShades <datashades@linkdigital.com.au>, Sergey Motornyuk <sergey.motornyuk@linkdigital.com.au>, Oleksandr Cherniavskyi <mutantsan@gmail.com>
Maintainer-email: DataShades <datashades@linkdigital.com.au>
License: AGPL
Project-URL: Homepage, https://github.com/DataShades/ckanext-harvest-basket
Keywords: CKAN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ckanext-transmute<2,>=1.8.0
Requires-Dist: html2markdown<1,>=0.1.7
Requires-Dist: geojson<4,>=2.5.0
Requires-Dist: jsonschema>=4.0.0
Provides-Extra: dev
Requires-Dist: pytest-ckan; extra == "dev"
Requires-Dist: mkdocs<1.7,>=1.6.1; extra == "dev"
Requires-Dist: mkdocs-material<10,>=9.5.42; extra == "dev"
Requires-Dist: mkdocs-include-markdown-plugin<7,>=6.2.2; extra == "dev"
Requires-Dist: mkdocstrings-python<2,>=1.11.1; extra == "dev"
Requires-Dist: mkdocs-exclude<2,>=1.0.2; extra == "dev"
Provides-Extra: csw
Requires-Dist: OWSLib<1,>=0.31.0; extra == "csw"
Dynamic: license-file

The **ckanext-harvest-basket** extension adds a set of custom harvesters to CKAN, making it easy to gather data from various platforms like ODS, ArcGIS, Socrata, DKAN, Junar, and more. With these harvesters, you can automatically pull datasets from different sources into your CKAN instance, helping you manage and share data more efficiently.

Key features:

* Harvesters for popular data platforms, including CKAN, ODS, ArcGIS, Socrata, DKAN, Junar and others.
* Integration with the [ckanext-transmute](https://github.com/DataShades/ckanext-transmute) extension, which allows you to transform datasets during the harvesting process using a harvest source configuration.
* Source checkup preview. When creating a source, the harvester will try to connect to the remote portal and harvest one dataset to check if it’s accessible.
* Anonymous user restrictions. You can disallow anonymous users from accessing harvester pages.

See the [documentation](https://datashades.github.io/ckanext-harvest-basket/) for more information.

## Quick start

1. Install the extension from `PyPI`:
    ```bash
    pip install ckanext-harvest-basket
    ```

2. Enable the main plugin and harvesters you want to use in your CKAN configuration file (e.g. `ckan.ini` or `production.ini`):

    ```ini
    ckan.plugins = ... harvest_basket arcgis_harvester socrata_harvester ...
    ```

## Developer installation

To install `ckanext-harvest-basket` for development, activate your CKAN virtualenv and
do:

```bash
git clone https://github.com/DataShades/ckanext-harvest-basket.git
cd ckanext-harvest-basket
pip install -e '.[dev]'
```


## Tests

To run the tests, do:

```bash
pytest --ckan-ini=test.ini
```

## License

[AGPL](https://www.gnu.org/licenses/agpl-3.0.en.html)
