Skip to main content

cldfzenodo

Build Status PyPI

cldfzenodo provides programmatic access to CLDF data deposited on Zenodo.

NOTE: The Zenodo upgrade from October 13, 2023 introduced quite a few changes in various parts of the system. Thus, cldfzenodo before version 2.0 cannot be used anymore. cldfzenodo is meant to be backwards compatible, i.e. provides the same Python API as cldfzenodo 1.x - but may issue deprecation warnings.

Install

pip install cldfzenodo

pycldf dataset resolver

cldfzenodo registers (upon installation) a pycldf dataset resolver for dataset locators of the form https://doi.org/10.5281/zenodo.[0-9]+ and https://zenodo.org/record/[0-9]+. Thus, after installation you should be able to retrieve pycldf.Dataset instances running

>>> from pycldf.ext.discovery import get_dataset
>>> import pathlib
>>> pathlib.Path('wacl').mkdir()
>>> ds = get_dataset('https://doi.org/10.5281/zenodo.7322688', pathlib.Path('wacl'))
>>> ds.properties['dc:title']
'World Atlas of Classifier Languages'

CLI

cldfzenodo provides a subcommand to be run from cldfbench. To make use of this command, you have to install cldfbench, which can be done via

pip install cldfzenodo[cli]

Then you can download CLDF datasets from Zenodo, using the DOI for identification. E.g.

cldfbench zenodo.download 10.5281/zenodo.4683137  --directory wals-2020.1/

will download WALS Online as CLDF dataset into wals-2020.1:

$ tree wals-2020.1/
wals-2020.1/
├── areas.csv
├── chapters.csv
├── codes.csv
├── contributors.csv
├── countries.csv
├── examples.csv
├── language_names.csv
├── languages.csv
├── parameters.csv
├── sources.bib
├── StructureDataset-metadata.json
└── values.csv

0 directories, 12 files

API

Metadata and data of (potential) CLDF datasets deposited on Zenodo is accessed via cldfzenodo.Record objects. Such objects can be obtained in various ways:

  • Via DOI:
    >>> from cldfzenodo import API
    >>> rec = API.get_record(doi='10.5281/zenodo.4762034')
    >>> rec.title
    'glottolog/glottolog: Glottolog database 4.4 as CLDF'
    
  • Via concept DOI and version tag:
    >>> from cldfzenodo import API
    >>> rec = API.get_record(conceptdoi='10.5281/zenodo.3260727', version='4.5')
    >>> rec.title
    'glottolog/glottolog: Glottolog database 4.5 as CLDF'
    
  • From deposits grouped into a Zenodo community:
    >>> from cldfzenodo import API
    >>> for rec in API.iter_records(community='dictionaria'):
    ...     print(rec.title)
    ...     break
    ...     
    dictionaria/iquito: Iquito dictionary
    
  • From search results using keywords:
    >>> from cldfzenodo import API
    >>> for rec in API.iter_records(keyword='cldf:Wordlist'):
    ...     print(rec.title)
    ...     break
    ...     
    CLDF dataset accompanying Zariquiey et al.'s "Evolution of Body-Part Terminology in Pano" from 2022
    

cldfzenodo.Record objects provide sufficient metadata to allow identification and data access:

>>> from cldfzenodo import API
>>> print(API.get_record(doi='10.5281/zenodo.4762034').bibtex)
@misc{zenodo-4762034,
  author    = {Hammarström, Harald and Forkel, Robert and Haspelmath, Martin and Bank, Sebastian},
  title     = {glottolog/glottolog: Glottolog database 4.4 as CLDF},
  keywords  = {cldf:StructureDataset, linguistics},
  publisher = {Zenodo},
  year      = {2021},
  doi       = {10.5281/zenodo.4762034},
  url       = {https://doi.org/10.5281/zenodo.4762034},
  copyright = {Creative Commons Attribution 4.0}
}

One can download the full deposit (and access - possible multiple - CLDF datasets):

from pycldf import iter_datasets

API.get_record(doi='...').download('my_directory')
for cldf in iter_datasets('my_directory'):
    pass

But often, only the "pure" CLDF data is of interest - and not the additional metadata and curation context, e.g. of cldfbench-curated datasets. This can be done via

cldf = API.get_record(doi='...').download_dataset('my_directory')

Release files for cldfzenodo 3.0.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for cldfzenodo 3.0.0
File Size Uploaded
cldfzenodo-3.0.0.tar.gz 20.8 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for cldfzenodo 3.0.0
File Interpreter ABI Platform
cldfzenodo-3.0.0-py2.py3-none-any.whl Python 3, Python 2 none any Details

Total release size: 37.3 kB

Release files / cldfzenodo-3.0.0.tar.gz

Download URL cldfzenodo-3.0.0.tar.gz
Size 20.8 kB
Tags Source
SHA-256 checksum
How to use checksums
1357baf6035e8f2531e8b9bbf9e1e89cb73707a8db626d2bd22d10b83e6d07d3
BLAKE2b-256 checksum
How to use checksums
51bd9e3c2d286bfde968ba625b8fd66dac4e276c7986d6d79f34384013569505
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.3

Release files / cldfzenodo-3.0.0-py2.py3-none-any.whl

Download URL cldfzenodo-3.0.0-py2.py3-none-any.whl
Size 16.6 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
8d2adf1cfb99e86d179d640185d7899ba3b96395a90c88dd10f145d4b0663556
BLAKE2b-256 checksum
How to use checksums
967cca82a8a8b912963db1f8b4db99fb4253b934a37c493081b80b0500b97394
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.3

Release history Release notifications | RSS feed

This release

3.0.0 This release

2 release files

2.2.2

2 release files

2.2.1

2 release files

2.2.0

2 release files

2.1.2

2 release files

2.1.1

2 release files

2.1.0

2 release files

2.0.0

2 release files

1.1.0

2 release files

1.0.0

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page