New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

github-release-downloader

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github-release-downloader

Package to download any release assets from the latest compatible version

pipPyPI
Version
1.1.0
Weekly downloads
234
-22%
Maintainers
1
Weekly downloads
 
Created

GitHub Release Downloader

PyPI version shields.io GitHub license Python versions

Python package to download/filter any release assets from the latest compatible version.

Installation

pip install github-release-downloader

Usage

This tool can be used as library:

from semantic_version import SimpleSpec
from github_release_downloader import check_and_download_updates, GitHubRepo
from pathlib import Path
import re


check_and_download_updates(
    GitHubRepo("OwnerName", "RepoName", "OptionallyToken"),  # Releases source
    SimpleSpec("~1.1"),  # Search 1.1.0 compatible version
    assets_mask=re.compile(".*\\.exe"),  # Download *.exe only
    downloads_dir=Path("downloads"),  # Where to download
)

Or either it can be used as cli-tool:

python -m github_release_downloader -u OwnerName -n RepoName -r ~1.1 -m .*\.exe -o .\downloads

Features

  • Downloads compatible releases (or latest if no requirements set)
  • Filters assets using regex
  • Has optional download_callback
  • CLI tool can be used in CI
  • Handles token from GITHUB_TOKEN env
  • Loads updates only when it's needed (caches last version used)
  • Loggs own actions
  • Uses only few GitHub API endpoints (don't download code, you've never needed)

Keywords

github

FAQs

Related posts