Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.28 KB

README.md

File metadata and controls

35 lines (27 loc) · 1.28 KB

zenodo-upload

upload big files to Zenodo.org using cURL, jq and bash

Uploading big files to https://zenodo.org from the commandline using the Zenodo API is not straight forward. zenodo_upload.sh tries to make this a little easier.

Inspired by Max Ogden's gist at https://gist.github.com/maxogden/b758cf0fe6d353846ef9ce7d03fdca0c .

prerequisites

  1. jq
  2. curl
  3. bash

usage

  1. open a terminal
  2. clone this repository
  3. set environment variable ZENODO_TOKEN to Zenodo access token (see https://zenodo.org/account/settings/applications/tokens/new/)
export ZENODO_TOKEN=[Zenodo access token]
  1. create a new publication in Zenodo using the web ui, enter some information (e.g., title) and click save
  2. in the browser, copy the deposition id (e.g., in https://zenodo.org/deposit/12345 , 12345 is the deposition id)
  3. in terminal and upload a file using
./zenodo_upload.sh [deposition id] [filename] [--verbose/-v, optional]
  1. on completion, you should see something like:
+ curl ...
######################################################################## 100.0%
  1. in the web ui, refresh the deposition page and observe that the file was uploaded.