Skip to main content

No project description provided

Project description

Tests

ckanext-collection

Tools for building interfaces for data collections using declarative style.

This extension simplifies describing series of items, such as datasets from search page, users registered on portal, rows of CSV file, tables in DB, etc. Once you defined the way of fetching items from data source, you'll get generic interface for pagination, search and displaying data in any format: HTML page, CSV document, JSON list, or any other custom format that you can describe.

Read the documentation for a full user guide.

Quickstart

Install the extension

pip install ckanext-collection

Add collection to the ckan.plugins setting in your CKAN config file

Define the collection

from ckan import model
from ckanext.collection.shared import collection, data, columns, serialize


## collection of all resources from DB
class MyCollection(collection.Collection):
    DataFactory = data.ModelData.with_attributes(model=model.Resource)
    # `names` controls names of fields exported by serializer
    # further in this guide
    ColumnsFactory = columns.Columns.with_attributes(names=["name", "size"])

## collection of all packages available via search API
class MyCollection(collection.Collection):
    DataFactory = data.ApiSearchData.with_attributes(action="package_search")
    ColumnsFactory = columns.Columns.with_attributes(names=["name", "title"])

## collection of all records from CSV file
class MyCollection(collection.Collection):
    DataFactory = data.CsvFileData.with_attributes(source="/path/to/file.csv")
    ColumnsFactory = columns.Columns.with_attributes(names=["a", "b"])

Initialize collection object and work with data:

# collection with first page of results(1st-10th items)
col = MyCollection()
items = list(col)

# collection with third page of results(21st-30th items)
col = MyCollection("", {"page": 3})
items = list(col)


# alternatively, read all the items into memory at once, without pagination.
# It may be quite expensive operation depending on number of items
col = MyCollection()
items = list(col.data)

# or get the slice of data from 8th till 12th
items = list(col.data[8:12])

# check total number of items in collection
print(col.data.total)

Serialize data using Serializer service:

# JSON string
serializer = serialize.JsonSerializer(col)

# or CSV string
serializer = serialize.CsvSerializer(col)

# or python list of dictionaries
serializer = serialize.DictListSerializer(col)


print(serializer.serialize())

License

AGPL

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ckanext_collection-0.3.0.tar.gz (85.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ckanext_collection-0.3.0-py3-none-any.whl (102.8 kB view details)

Uploaded Python 3

File details

Details for the file ckanext_collection-0.3.0.tar.gz.

File metadata

  • Download URL: ckanext_collection-0.3.0.tar.gz
  • Upload date:
  • Size: 85.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.19

File hashes

Hashes for ckanext_collection-0.3.0.tar.gz
Algorithm Hash digest
SHA256 437932ca32dd91038575d1c36eefc5974b6b8aebc5f7dbe9640becafb05fb09c
MD5 680cadba5061d2e39bb6dc4442abb8d7
BLAKE2b-256 2976dbfe994e07330d9edb90ce372ca6d21dc9424d51b879a0442808d4ec7c91

See more details on using hashes here.

File details

Details for the file ckanext_collection-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for ckanext_collection-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fd7e2aa4c5693442a4abc554b210ae34abe163c0aa1b8285714ef176ff68e7df
MD5 04a0d13d015fdc022a5ba32650980069
BLAKE2b-256 f05d6b590e1fe8877f97faa72513efda896e4978a27fbccee77e77d179fce095

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page