Script that downloads vsix files from Visual Studio Marketplace
Find a file
2025-07-27 05:47:27 -05:00
.github/workflows Fix PyPI publishing issues and clean up package metadata 2025-07-26 10:49:57 -05:00
.trunk +x .trunk/trunk 2025-07-26 11:54:27 -05:00
src/vsixget Bump version 2025-07-26 10:23:16 -05:00
.gitignore Restructure package with clean separation and comprehensive .gitignore 2025-07-26 08:55:17 -05:00
LICENSE Initial commit 2025-05-03 09:24:31 -05:00
MANIFEST.in Restructure project to use modern src/ layout and improve installation docs 2025-07-26 07:58:50 -05:00
pyproject.toml Fix invalid PyPI classifier 2025-07-26 10:56:30 -05:00
README.md Update README.md 2025-07-27 05:47:27 -05:00

vsixget

A Python tool for downloading VSIX files from the Visual Studio Marketplace.

Features

  • Download VS Code extensions directly from the marketplace
  • Support for both direct extension IDs and marketplace URLs
  • Specify version or download the latest
  • Choose download directory
  • Network connectivity checking before downloads
  • Automatic retry logic with progressive delays
  • Real-time download progress with MB and percentage indicators
  • Reliable file integrity verification
  • Universal package downloads for maximum compatibility

Installation

Using pipx (recommended for CLI tools):

pipx install vsixget

Using pip:

pip install vsixget

Note: pipx is recommended for installing CLI tools as it creates isolated environments and makes the tools available globally. If you don't have pipx installed, see the pipx installation guide.

From Source

# Clone the repository
git clone https://github.com/jeremiah-k/vsixget.git
cd vsixget

# Install in development mode
pipx install -e .

Usage

# Basic usage
vsixget publisher.extension

# Download latest version without prompting
vsixget --latest publisher.extension

# Specify version
vsixget -v 1.2.3 publisher.extension

# Specify download directory
vsixget -d ~/Downloads publisher.extension

# Download from marketplace URL
vsixget https://marketplace.visualstudio.com/items?itemName=publisher.extension

Examples

# Download the Python extension
vsixget ms-python.python

# Download latest version without prompting
vsixget --latest ms-python.python

# Download a specific version of the Python extension
vsixget -v 2023.4.1 ms-python.python

# Download the Augment extension to the Downloads directory
vsixget -d ~/Downloads augment.vscode-augment