Bulk update for CKAN datasets/resources
Project description
ckanext-bulk
An extension that helps to perform bulk operations over CKAN entities, such as datasets, resources, organizations and groups.
Interface
The extension provides an IBulk interface that allows you to register custom entity managers or override the default ones.
By default the extension provides entity managers for datasets, resources, organizations and groups. You might have some custom
entities on your CKAN portal, or some specific logic for the existing ones.
Here's how to register a custom entity manager:
import ckan.plugins as p
from ckanext.bulk.interfaces import IBulk
from ckanext.bulk.entity_managers import base, DatasetEntityManager
class CustomDatasetEntityManager(DatasetEntityManager):
"""Custom implementation of the DatasetEntityManager."""
entity_type = "dataset"
@classmethod
def get_fields(cls) -> list[base.FieldItem]:
# Override to add custom fields
fields = super().get_fields()
fields.extend([
base.FieldItem(value="custom_field", text="Custom Field")
])
return fields
@classmethod
def search_entities_by_filters(
cls, filters: list[base.FilterItem], global_operator: str = const.GLOBAL_AND
) -> list[dict[str, Any]]:
# Implement custom search logic
return super().search_entities_by_filters(filters, global_operator)
class CustomBulk(p.SingletonPlugin):
p.implements(IBulk, inherit=True)
def register_entity_manager(
self, entity_managers: dict[str, type[base.EntityManager]]
):
# Register your custom entity manager
entity_managers[CustomDatasetEntityManager.entity_type] = CustomDatasetEntityManager
return entity_managers
The interface allows you to:
- Create custom entity managers by extending base managers (
DatasetEntityManager,GroupEntityManager, etc.) or creating your own. - Override default entity managers with your own implementations
Your entity manager should implement these key methods:
get_fields(): Returns available fields for the entitysearch_entities_by_filters(): Implements search logicupdate_entity(): Handles entity updatesdelete_entity(): Handles entity deletion
CSV export
The extension provides a way to export data to CSV.
You can implement the IBulk interface and override the prepare_csv_data() method to prepare the data for export.
[!IMPORTANT] Ensure, that your extension is loaded before the
bulkextension, as we call the first implementation of the method, to allow plugins to override the default implementation.
The method should return a list of dictionaries, the keys will be used as a header in the CSV file.
Data for search results and logs are stored in redis, and expire after 1 hour. This method will be called before the data is stored in redis, so we can reduce the amount of data to store in redis.
The export_type parameter can be "result" or "logs".
Example of how to override the prepare_csv_data() method:
class CustomBulk(p.SingletonPlugin):
p.implements(IBulk, inherit=True)
def prepare_csv_data(
self,
data: list[dict[str, Any]],
export_type: str,
entity_type: str | None = None,
) -> list[dict[str, Any]]:
# Implement custom logic to prepare the data for export
return data
Requirements
Compatibility with core CKAN versions:
| CKAN version | Compatible? |
|---|---|
| 2.9 | no |
| 2.10 | yes |
| 2.11 | yes |
| master | not tested |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ckanext_bulk-0.4.0.tar.gz.
File metadata
- Download URL: ckanext_bulk-0.4.0.tar.gz
- Upload date:
- Size: 106.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d98f13eb73866110dc711ab12032e8c697cec2623db763c0d06d095cb7dd0370
|
|
| MD5 |
0913ae1dcd92814f81777ffbcc4c286c
|
|
| BLAKE2b-256 |
e7dcb2c7162dbf030ab484939d2bf3a9602b5fccd7c74fe4357dc4b415d4f9c0
|
File details
Details for the file ckanext_bulk-0.4.0-py3-none-any.whl.
File metadata
- Download URL: ckanext_bulk-0.4.0-py3-none-any.whl
- Upload date:
- Size: 115.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
367d8d655ebf75d8602661d5f4e0e41698f1653aa8d742c623631881c69170c1
|
|
| MD5 |
ad1bb52f274d4eb6da79dc23fd4bbba2
|
|
| BLAKE2b-256 |
82a4ad9e239fc505c22f26249d5da2ca528ec062619b39091676e22261a5784c
|