
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
pyzenodo3
Advanced tools
Pure Python wrapper for Zenodo REST API.
Allows upload / download of data from Zenodo.
pip install pyzenodo3
Latest development
git clone https://github.com/scivision/pyzenodo3
pip install -e pyzenodo3
Here are several examples of using Zenodo from Python 3. All of them assume you have first:
import pyzenodo3
zen = pyzenodo3.Zenodo()
Get a Zenodo deposit:write API Token.
This token must remain private, NOT uploaded to GitHub, etc.!
create a simple text file mymeta.ini containing title, author etc. (see the example meta.ini in this repo)
upload file to Zenodo (myApiToken is the cut-n-pasted Zenodo API text token)
python upload_zenodo.py myApiToken mymeta.ini myfile.zip --use-sandbox
Note the --use-sandbox is to avoid making junk uploads while testing out.
Once you're sure things are working as intended, not using that flag uploads to "real" Zenodo permanently.
Rec = zen.find_record__by_github_repo('scivision/lowtran')
This Zenodo Record contains the metadata that can be further manipulated in a simple class containing the data in dictionaries, with a few future helper methods.
Recs = zen.search('scivision')
Recs is a list of Zenodo Records for the GitHub username queried, as in the example above.
deposit:publish API token to keep a human-in-the-loop in case of hacking of sensor nodes.FAQs
Pure Python 3 wrapper for the Zenodo REST API
We found that pyzenodo3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.