Name | vsixget JSON |
Version |
0.1.0
JSON |
| download |
home_page | None |
Summary | A Python tool for downloading VSIX files from the Visual Studio Marketplace |
upload_time | 2025-07-26 15:58:06 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | MIT License
Copyright (c) 2025 Jeremiah K
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
|
keywords |
vscode
extensions
vsix
marketplace
download
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# 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
### From PyPI (Recommended)
**Using pipx (recommended for CLI tools):**
```bash
pipx install vsixget
```
**Using pip:**
```bash
pip install vsixget
```
> **Note:** [pipx](https://pipx.pypa.io/stable/) 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](https://pipx.pypa.io/stable/installation/).
### From Source
```bash
# Clone the repository
git clone https://github.com/jeremiah-k/vsixget.git
cd vsixget
# Install in development mode
pip install -e .
```
## Usage
```bash
# 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
```bash
# 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
```
Raw data
{
"_id": null,
"home_page": null,
"name": "vsixget",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": "Jeremiah K <17190268+jeremiah-k@users.noreply.github.com>",
"keywords": "vscode, extensions, vsix, marketplace, download",
"author": null,
"author_email": "Jeremiah K <17190268+jeremiah-k@users.noreply.github.com>",
"download_url": "https://files.pythonhosted.org/packages/da/03/db5a66aa4465593e65a06148ad1c6d4e7c7401ca6838ce27a2a07f98de06/vsixget-0.1.0.tar.gz",
"platform": null,
"description": "# vsixget\n\nA Python tool for downloading VSIX files from the Visual Studio Marketplace.\n\n## Features\n\n- Download VS Code extensions directly from the marketplace\n- Support for both direct extension IDs and marketplace URLs\n- Specify version or download the latest\n- Choose download directory\n- Network connectivity checking before downloads\n- Automatic retry logic with progressive delays\n- Real-time download progress with MB and percentage indicators\n- Reliable file integrity verification\n- Universal package downloads for maximum compatibility\n\n## Installation\n\n### From PyPI (Recommended)\n\n**Using pipx (recommended for CLI tools):**\n\n```bash\npipx install vsixget\n```\n\n**Using pip:**\n\n```bash\npip install vsixget\n```\n\n> **Note:** [pipx](https://pipx.pypa.io/stable/) 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](https://pipx.pypa.io/stable/installation/).\n\n### From Source\n\n```bash\n# Clone the repository\ngit clone https://github.com/jeremiah-k/vsixget.git\ncd vsixget\n\n# Install in development mode\npip install -e .\n```\n\n## Usage\n\n```bash\n# Basic usage\nvsixget publisher.extension\n\n# Download latest version without prompting\nvsixget --latest publisher.extension\n\n# Specify version\nvsixget -v 1.2.3 publisher.extension\n\n# Specify download directory\nvsixget -d ~/Downloads publisher.extension\n\n# Download from marketplace URL\nvsixget https://marketplace.visualstudio.com/items?itemName=publisher.extension\n```\n\n## Examples\n\n```bash\n# Download the Python extension\nvsixget ms-python.python\n\n# Download latest version without prompting\nvsixget --latest ms-python.python\n\n# Download a specific version of the Python extension\nvsixget -v 2023.4.1 ms-python.python\n\n# Download the Augment extension to the Downloads directory\nvsixget -d ~/Downloads augment.vscode-augment\n```\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2025 Jeremiah K\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.\n ",
"summary": "A Python tool for downloading VSIX files from the Visual Studio Marketplace",
"version": "0.1.0",
"project_urls": {
"Homepage": "https://github.com/jeremiah-k/vsixget",
"Issues": "https://github.com/jeremiah-k/vsixget/issues",
"Repository": "https://github.com/jeremiah-k/vsixget"
},
"split_keywords": [
"vscode",
" extensions",
" vsix",
" marketplace",
" download"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e098bb00fbaa289b28d6fa454c7123a389a1a8b16ced31b362a32155665b6d0c",
"md5": "59791f61c9a42f06b86c9abefb076245",
"sha256": "2c9fe7a1718f7c9525c2c902679fe6cbee086f583062a6ed0a24b351ba5f06ba"
},
"downloads": -1,
"filename": "vsixget-0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "59791f61c9a42f06b86c9abefb076245",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 8744,
"upload_time": "2025-07-26T15:58:05",
"upload_time_iso_8601": "2025-07-26T15:58:05.762447Z",
"url": "https://files.pythonhosted.org/packages/e0/98/bb00fbaa289b28d6fa454c7123a389a1a8b16ced31b362a32155665b6d0c/vsixget-0.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "da03db5a66aa4465593e65a06148ad1c6d4e7c7401ca6838ce27a2a07f98de06",
"md5": "bd948cd281f26f9721414f8958f114d9",
"sha256": "7c2158f55fcafb6eb78c26daf26b182e82d1fdb84f6a236462e5beb075f85850"
},
"downloads": -1,
"filename": "vsixget-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "bd948cd281f26f9721414f8958f114d9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 9176,
"upload_time": "2025-07-26T15:58:06",
"upload_time_iso_8601": "2025-07-26T15:58:06.498107Z",
"url": "https://files.pythonhosted.org/packages/da/03/db5a66aa4465593e65a06148ad1c6d4e7c7401ca6838ce27a2a07f98de06/vsixget-0.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-26 15:58:06",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jeremiah-k",
"github_project": "vsixget",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "vsixget"
}