Data Package Creator.
Project description
CKNEXT Data Package Creator
CKAN extension to use the fritioncless library
Table of Contents
Publish or Update Package to Pypi
- Check the last version published on Pypi.
- Update
CHANGELOG.md
file with a short review of what had been done. - Update
setup.py
file with the new version number. - Commit all the above changes with the new version number (one above that publish on Pypi). Example:
git commit -am 'v0.1.1'
. - Push the created commit to the online repository: Example:
git push origin master
. - Create a new tag with the new version number (same as used to commit last changes). Example:
git tag v0.1.1 HEAD
. - Push the new created tag to the online repository: Example:
git push origin v0.1.1
. - Publish on Pypi with
make update-package
.
Instalation
pip install ckanext-datapackage-creator
Configuration
Once installed, add the datapackage_creator
plugin to the ckan.plugins
configuration option in your INI file.
ckan.plugins = ... datapackage_creator
Datapackage Creator Configuration
The plugin allows you to configure which fields of the resource and package are mandatory and/or 'readonly', for this you just need to add a configuration in your INI file.
datapackage_creator = /path/to/datapackage_creator.json
We suggest that the file path would be /etc/ckan/default/datapackage_creator.json
or in the same folder as ckan.ini
file.
Configuration example file:
{
"package": {
"required": [],
"readonly": []
},
"resource": {
"required": [],
"readonly": []
}
}
Mandatory possible package fields:
- title
- notes
- source
- version
Possible read-only package fields:
Nothing
Mandatory possible resource fields:
- title
- description
- format
- type
- encoding
- field.name (Column field)
- field.title (Column field)
- field.description (Column field)
- field.format (Column field)
Possible read-only package fields:
- format
- type
- encoding
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
Hashes for ckanext-datapackage-creator-0.0.24.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9baf9be2e2ec78e6747e141de93e0c9e6a27b2a6c1eb154840ad01acdc01dd4 |
|
MD5 | 953fd6b31dcfc0633281563e01657ba8 |
|
BLAKE2b-256 | f69c9a0849b7507c7727f6c62ab10074e20fd224e8f6160f68b9d42d8538d009 |
Hashes for ckanext_datapackage_creator-0.0.24-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf6cad697e081563ec340dc8e00c02f9ee48f01ee8d111633fb8cf6f7c5cea61 |
|
MD5 | 977f46f58f80c14c2236c59ea21f0486 |
|
BLAKE2b-256 | 832edab22921f994ea5f3e8a1d0e6cd841bd0aee6c62c880eda82eea88de66c5 |