Use when the user mentions 'Zenodo' or asks to find, search, or download datasets, software, or research artifacts with DOIs. Zenodo hosts scientific datasets, code releases, and supplementary materials from publications.
Search and download research data, software, and publications from Zenodo.
Requires: requests (pip install requests)
Zenodo is a general-purpose open repository for research outputs:
All records get DOIs for citation.
# Get record details
python scripts/zenodo.py 1234567
# Get BibTeX citation
python scripts/zenodo.py 1234567 --format bibtex
# List files in a record
python scripts/zenodo.py 1234567 --files
# Download a file
python scripts/zenodo.py 1234567 --download filename.csv
# Download first file
python scripts/zenodo.py 1234567 --download
# Basic search
python scripts/zenodo.py --search "dark matter simulation"
# Search for datasets only
python scripts/zenodo.py --search "cosmology" --type dataset
# Search for software
python scripts/zenodo.py --search "MCMC sampler" --type software
# Most recent results
python scripts/zenodo.py --search "gravitational waves" --sort mostrecent
# Limit results
python scripts/zenodo.py --search "Planck" -n 5
Zenodo uses Elasticsearch query syntax:
title:keyword - Search in titlecreators.name:Author - Search by creatordoi:10.5281/zenodo.XXX - Search by DOIkeywords:physics - Search in keywordscommunities:astronomy - Search in communityCombine with AND, OR, NOT.
Filter with --type:
dataset - Research datasoftware - Code and softwarepublication - Papers, reportsposter - Conference posterspresentation - Slidesimage - Figures, plotsvideo - Videos# List available files first
python scripts/zenodo.py 1234567 --files
# Download specific file
python scripts/zenodo.py 1234567 --download data.hdf5
# Download to specific directory
python scripts/zenodo.py 1234567 --download data.hdf5 -o ./data/
# Default (JSON metadata)
python scripts/zenodo.py 1234567
# BibTeX for citation
python scripts/zenodo.py 1234567 --format bibtex
# DataCite XML
python scripts/zenodo.py 1234567 --format datacite
python scripts/zenodo.py --search "query" --type datasetpython scripts/zenodo.py <id> --filespython scripts/zenodo.py <id> --download <filename>python scripts/zenodo.py <id> --format bibtexMany papers deposit supplementary data on Zenodo. Search by: