Skip to content

matthiasprobst/zenodo_search

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zenodo Search

Perform zenodo searches with python.

Note: Zenodo updated the backend. This resulted in the searches failing with the old version of this package. For example, the doi string should not be the full doi anymore, but only the id. Some of the old search strings also don't work anymore. This is hopefully a temporary issue and will be fixed soon.

Installation

pip install zenodo_search

Dependencies

  • requests

Usage

import zenodo_search as zsearch

search_string = 'doi:8357399'
records = zsearch.search(search_string)

Open Quickstart Notebook

More examples can be found in the examples folder.