Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

159,171

Downloads of v 2024.23.2024121003:

289

Last Update:

11 Dec 2024

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

Python VSCode Extension

This is not the latest version of Python VSCode Extension available.

  • 1
  • 2
  • 3

2024.23.2024121003 | Updated: 11 Dec 2024

Downloads:

159,171

Downloads of v 2024.23.2024121003:

289

Maintainer(s):

Software Author(s):

  • Microsoft

Python VSCode Extension 2024.23.2024121003

This is not the latest version of Python VSCode Extension available.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires vscode to be installed.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Python VSCode Extension, run the following command from the command line or from PowerShell:

>

To upgrade Python VSCode Extension, run the following command from the command line or from PowerShell:

>

To uninstall Python VSCode Extension, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade vscode-python -y --source="'INTERNAL REPO URL'" --version="'2024.23.2024121003'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade vscode-python -y --source="'INTERNAL REPO URL'" --version="'2024.23.2024121003'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install vscode-python
  win_chocolatey:
    name: vscode-python
    version: '2024.23.2024121003'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'vscode-python' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2024.23.2024121003'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller vscode-python
{
    Name     = "vscode-python"
    Version  = "2024.23.2024121003"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'vscode-python':
  ensure   => '2024.23.2024121003',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 11 Dec 2024.

Description

A Visual Studio Code extension withrich support for the Python language (for all actively supported versions of the language: 2.7, >=3.5), including features such as IntelliSense, linting, debugging, code navigation, code formatting, Jupyter notebook support, refactoring, variable explorer, test explorer, snippets, and more!

Features

  • IntelliSense: Edit your code with auto-completion, code navigation, syntax checking and more
  • Linting: Get additional code analysis with Pylint, Flake8 and more
  • Code formatting: Format your code with black, autopep or yapf
  • Debugging: Debug your Python scripts, web apps, remote or multi-threaded processes
  • Testing: Run and debug tests through the Test Explorer with unittest, pytest or nose
  • Jupyter Notebooks: Define and run code cells, render plots, visualize variables through the variable explorer and more
  • Environments: Automatically activate and switch between virtualenv, venv, pipenv, conda and pyenv environments
  • Refactoring: Restructure your Python code with variable extraction, method extraction and import sorting

Notes

  • This package requires Visual Studio Code 1.94.0-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240918-20240913-20240913-20240913-20240913-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-20240415-insider or newer.
    You can install either the vscode or vscode-insiders package.
  • The extension will be installed in all editions of Visual Studio Code which can be found.
  • While this package installs a specific version of the extension, Visual Studio Code by default will update the extension to the latest version on startup if there's a newer version available on the marketplace.
    See Extension auto-update for instructions on how to disable auto-update.
  • This package is automatically updated using the Chocolatey Automatic Package Update Model (AU).
    If you find it is out of date by more than a day or two, please contact the maintainer(s) and let them know the package is no longer updating correctly.

screenshot


legal\LICENSE.txt
LICENSE

Copyright (c) Microsoft Corporation. All rights reserved.

MIT License

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.
legal\VERIFICATION.txt
VERIFICATION

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

The Visual Code extension has been downloaded from the official Visual Studio Marketplace public gallery
and can be verified by:

1. Go to the Visual Studio Marketplace page for the package

  https://marketplace.visualstudio.com/items?itemName=ms-python.python

and download the package ms-python.python-2024.23.2024121003.vsix using the Download Extension link
in the Resources section of the sidebar.

Alternatively the package can be downloaded directly from

  https://marketplace.visualstudio.com/_apis/public/gallery/publishers/ms-python/vsextensions/python/2024.23.2024121003/vspackage

2. The package can be validated by comparing checksums
  - Use powershell function 'Get-Filehash' - Get-Filehash ms-python.python-2024.23.2024121003.vsix
  - Use chocolatey utility 'checksum.exe' - checksum -t sha256 -f ms-python.python-2024.23.2024121003.vsix

  Type:     sha256
  Checksum: 8B654B74AED8CB35A700DF05674B607ADF18E57D3D491E0C4D7F1F93B994B703

  File LICENSE.txt is obtained from https://marketplace.visualstudio.com/items/ms-python.python/license
tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

Install-VsCodeExtension -extensionId "$toolsDir\ms-python.python-2024.23.2024121003.vsix"
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'

Uninstall-VsCodeExtension -extensionId 'ms-python.python'
tools\ms-python.python-2024.23.2024121003.vsix
md5: 8BC87E1583069DE598273903D3372C23 | sha1: C9F8E72887020B7D4D159CC960AC89191FB802B2 | sha256: 8B654B74AED8CB35A700DF05674B607ADF18E57D3D491E0C4D7F1F93B994B703 | sha512: 62860892753A58B4B38188631156560871A7D83F15ADF037AA13AF80029B79407784D73F7A9F14B9EF3FD8AD7A40EE269EC6D4D538110ACA3B8FA6C6E288D618

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Python VSCode Extension 2025.11.2025072801 164 Tuesday, July 29, 2025 Approved
Python VSCode Extension 2025.11.2025072501 315 Saturday, July 26, 2025 Approved
Python VSCode Extension 2025.11.2025072201 252 Wednesday, July 23, 2025 Approved
Python VSCode Extension 2025.11.2025071801 446 Saturday, July 19, 2025 Approved
Python VSCode Extension 2025.11.2025071501 380 Wednesday, July 16, 2025 Approved
Python VSCode Extension 2025.11.2025071403 204 Tuesday, July 15, 2025 Approved
Python VSCode Extension 2025.10.0 468 Friday, July 11, 2025 Approved
Python VSCode Extension 2025.9.2025070301 783 Friday, July 4, 2025 Approved
Python VSCode Extension 2025.9.2025070101 265 Wednesday, July 2, 2025 Approved
Python VSCode Extension 2025.9.2025063002 210 Tuesday, July 1, 2025 Approved
Python VSCode Extension 2025.9.2025062701 365 Saturday, June 28, 2025 Approved
Python VSCode Extension 2025.9.2025062501 260 Thursday, June 26, 2025 Approved
Python VSCode Extension 2025.9.2025062401 253 Wednesday, June 25, 2025 Approved
Python VSCode Extension 2025.9.2025062001 426 Saturday, June 21, 2025 Approved
Python VSCode Extension 2025.9.2025061801 199 Thursday, June 19, 2025 Approved
Python VSCode Extension 2025.8.0 362 Tuesday, June 17, 2025 Approved
Python VSCode Extension 2025.7.2025060501 587 Friday, June 6, 2025 Approved
Python VSCode Extension 2025.7.2025060401 56 Thursday, June 5, 2025 Approved
Python VSCode Extension 2025.7.2025053001 418 Saturday, May 31, 2025 Approved
Python VSCode Extension 2025.7.2025052901 145 Friday, May 30, 2025 Approved
Python VSCode Extension 2025.7.2025052801 110 Thursday, May 29, 2025 Approved
Python VSCode Extension 2025.7.2025052701 142 Wednesday, May 28, 2025 Approved
Python VSCode Extension 2025.7.2025052601 229 Monday, May 26, 2025 Approved
Python VSCode Extension 2025.7.2025052301 286 Saturday, May 24, 2025 Approved
Python VSCode Extension 2025.7.2025052102 189 Thursday, May 22, 2025 Approved
Python VSCode Extension 2025.7.2025052004 140 Wednesday, May 21, 2025 Approved
Python VSCode Extension 2025.7.2025051901 255 Tuesday, May 20, 2025 Approved
Python VSCode Extension 2025.7.2025051601 149 Saturday, May 17, 2025 Approved
Python VSCode Extension 2025.7.2025051507 270 Friday, May 16, 2025 Approved
Python VSCode Extension 2025.7.2025051401 111 Thursday, May 15, 2025 Approved
Python VSCode Extension 2025.7.2025051301 196 Wednesday, May 14, 2025 Approved
Python VSCode Extension 2025.7.2025051201 221 Tuesday, May 13, 2025 Approved
Python VSCode Extension 2025.7.2025050601 429 Tuesday, May 6, 2025 Approved
Python VSCode Extension 2025.5.2025042501 610 Saturday, April 26, 2025 Approved
Python VSCode Extension 2025.5.2025042401 115 Friday, April 25, 2025 Approved
Python VSCode Extension 2025.5.2025042201 238 Wednesday, April 23, 2025 Approved
Python VSCode Extension 2025.5.2025042101 261 Monday, April 21, 2025 Approved
Python VSCode Extension 2025.5.2025041801 418 Saturday, April 19, 2025 Approved
Python VSCode Extension 2025.1.2025021701 1612 Tuesday, February 18, 2025 Approved
Python VSCode Extension 2025.1.2025021102 441 Wednesday, February 12, 2025 Approved
Python VSCode Extension 2025.1.2025021001 267 Tuesday, February 11, 2025 Approved
Python VSCode Extension 2025.1.2025020701 301 Saturday, February 8, 2025 Approved
Python VSCode Extension 2025.1.2025020602 129 Friday, February 7, 2025 Approved
Python VSCode Extension 2024.23.2025012801 601 Wednesday, January 29, 2025 Approved
Python VSCode Extension 2024.23.2025012401 481 Saturday, January 25, 2025 Approved
Python VSCode Extension 2024.23.2025012301 174 Friday, January 24, 2025 Approved
Python VSCode Extension 2024.23.2025011501 593 Thursday, January 16, 2025 Approved
Python VSCode Extension 2024.23.2025011301 379 Tuesday, January 14, 2025 Approved
Python VSCode Extension 2024.23.2025011101 289 Sunday, January 12, 2025 Approved
Python VSCode Extension 2024.23.2025010901 243 Friday, January 10, 2025 Approved
Python VSCode Extension 2024.23.2025010801 169 Thursday, January 9, 2025 Approved
Python VSCode Extension 2024.23.2025010701 209 Wednesday, January 8, 2025 Approved
Python VSCode Extension 2024.23.2025010601 279 Tuesday, January 7, 2025 Approved
Python VSCode Extension 2024.23.2024121901 772 Friday, December 20, 2024 Approved
Python VSCode Extension 2024.23.2024121801 218 Thursday, December 19, 2024 Approved
Python VSCode Extension 2024.23.2024121701 134 Wednesday, December 18, 2024 Approved
Python VSCode Extension 2024.23.2024121601 335 Tuesday, December 17, 2024 Approved
Python VSCode Extension 2024.23.2024121301 316 Saturday, December 14, 2024 Approved
Python VSCode Extension 2024.23.2024121003 289 Wednesday, December 11, 2024 Approved
Python VSCode Extension 2024.21.2024120501 524 Friday, December 6, 2024 Approved
Python VSCode Extension 2024.21.2024112901 575 Saturday, November 30, 2024 Approved
Python VSCode Extension 2024.21.2024112701 236 Thursday, November 28, 2024 Approved
Python VSCode Extension 2024.21.2024112001 613 Thursday, November 21, 2024 Approved
Python VSCode Extension 2024.21.2024111901 209 Wednesday, November 20, 2024 Approved
Python VSCode Extension 2024.21.2024111501 442 Saturday, November 16, 2024 Approved
Python VSCode Extension 2024.21.2024111401 166 Friday, November 15, 2024 Approved
Python VSCode Extension 2024.21.2024111301 174 Thursday, November 14, 2024 Approved
Python VSCode Extension 2024.21.2024111202 262 Wednesday, November 13, 2024 Approved
Python VSCode Extension 2024.19.2024111101 339 Tuesday, November 12, 2024 Approved
Python VSCode Extension 2024.19.2024110802 258 Saturday, November 9, 2024 Approved
Python VSCode Extension 2024.19.2024110601 260 Thursday, November 7, 2024 Approved
Python VSCode Extension 2024.19.2024110502 282 Wednesday, November 6, 2024 Approved
Python VSCode Extension 2024.19.2024103101 428 Friday, November 1, 2024 Approved
Python VSCode Extension 2024.19.2024103001 126 Thursday, October 31, 2024 Approved
Python VSCode Extension 2024.17.2024102201 534 Wednesday, October 23, 2024 Approved
Python VSCode Extension 2024.17.2024102101 261 Tuesday, October 22, 2024 Approved
Python VSCode Extension 2024.17.2024101501 456 Wednesday, October 16, 2024 Approved
Python VSCode Extension 2024.17.2024101402 198 Tuesday, October 15, 2024 Approved
Python VSCode Extension 2024.17.2024101101 321 Saturday, October 12, 2024 Approved
Python VSCode Extension 2024.17.2024101001 134 Friday, October 11, 2024 Approved
Python VSCode Extension 2024.17.2024100801 308 Wednesday, October 9, 2024 Approved
Python VSCode Extension 2024.17.2024100701 261 Tuesday, October 8, 2024 Approved
Python VSCode Extension 2024.17.2024100401 372 Saturday, October 5, 2024 Approved
Python VSCode Extension 2024.17.2024100202 285 Thursday, October 3, 2024 Approved
Python VSCode Extension 2024.17.2024100102 325 Wednesday, October 2, 2024 Approved
Python VSCode Extension 2024.15.2024092702 817 Saturday, September 28, 2024 Approved
Python VSCode Extension 2024.15.2024092502 359 Thursday, September 26, 2024 Approved
Python VSCode Extension 2024.15.2024092401 269 Wednesday, September 25, 2024 Approved
Python VSCode Extension 2024.15.2024092301 266 Tuesday, September 24, 2024 Approved
Python VSCode Extension 2024.15.2024092001 665 Saturday, September 21, 2024 Approved
Python VSCode Extension 2024.15.2024091901 206 Friday, September 20, 2024 Approved
Python VSCode Extension 2024.15.2024091801 473 Thursday, September 19, 2024 Approved
Python VSCode Extension 2024.15.2024091601 2434 Tuesday, September 17, 2024 Approved
Python VSCode Extension 2024.15.2024091301 383 Saturday, September 14, 2024 Approved
Python VSCode Extension 2024.15.2024091202 198 Friday, September 13, 2024 Approved
Python VSCode Extension 2024.15.2024091201 212 Thursday, September 12, 2024 Approved
Python VSCode Extension 2024.15.2024091001 401 Wednesday, September 11, 2024 Approved
Python VSCode Extension 2024.15.2024090406 499 Thursday, September 5, 2024 Approved
Python VSCode Extension 2024.13.2024082701 647 Wednesday, August 28, 2024 Approved
Python VSCode Extension 2024.13.2024082601 295 Tuesday, August 27, 2024 Approved
Python VSCode Extension 2024.13.2024082201 403 Friday, August 23, 2024 Approved
Python VSCode Extension 2024.13.2024082102 298 Thursday, August 22, 2024 Approved
Python VSCode Extension 2024.13.2024082001 284 Wednesday, August 21, 2024 Approved
Python VSCode Extension 2024.13.2024081501 440 Friday, August 16, 2024 Approved
Python VSCode Extension 2024.13.2024081401 175 Thursday, August 15, 2024 Approved
Python VSCode Extension 2024.13.2024081301 253 Wednesday, August 14, 2024 Approved
Python VSCode Extension 2024.13.2024080901 414 Saturday, August 10, 2024 Approved
Python VSCode Extension 2024.13.2024080801 185 Friday, August 9, 2024 Approved
Python VSCode Extension 2024.13.2024080701 220 Thursday, August 8, 2024 Approved
Python VSCode Extension 2024.13.2024080606 259 Wednesday, August 7, 2024 Approved
Python VSCode Extension 2024.13.2024080501 264 Tuesday, August 6, 2024 Approved
Python VSCode Extension 2024.13.2024080201 311 Saturday, August 3, 2024 Approved
Python VSCode Extension 2024.13.2024073102 271 Thursday, August 1, 2024 Approved
Python VSCode Extension 2024.11.2024072502 508 Friday, July 26, 2024 Approved
Python VSCode Extension 2024.11.2024072402 159 Thursday, July 25, 2024 Approved
Python VSCode Extension 2024.11.2024072303 226 Wednesday, July 24, 2024 Approved
Python VSCode Extension 2024.11.2024072201 259 Tuesday, July 23, 2024 Approved
Python VSCode Extension 2024.11.2024071901 355 Saturday, July 20, 2024 Approved
Python VSCode Extension 2024.11.2024071802 161 Friday, July 19, 2024 Approved
Python VSCode Extension 2024.11.2024071702 368 Thursday, July 18, 2024 Approved
Python VSCode Extension 2024.11.2024071602 202 Wednesday, July 17, 2024 Approved
Python VSCode Extension 2024.11.2024071501 286 Tuesday, July 16, 2024 Approved
Python VSCode Extension 2024.11.2024071403 196 Monday, July 15, 2024 Approved
Python VSCode Extension 2024.11.2024071401 202 Sunday, July 14, 2024 Approved
Python VSCode Extension 2024.11.2024071203 130 Saturday, July 13, 2024 Approved
Python VSCode Extension 2024.11.2024071202 189 Friday, July 12, 2024 Approved
Python VSCode Extension 2024.11.2024071004 189 Thursday, July 11, 2024 Approved
Python VSCode Extension 2024.11.2024070901 277 Wednesday, July 10, 2024 Approved
Python VSCode Extension 2024.11.2024070802 282 Tuesday, July 9, 2024 Approved
Python VSCode Extension 2024.11.2024070502 370 Saturday, July 6, 2024 Approved
Python VSCode Extension 2024.9.2024062703 926 Friday, June 28, 2024 Approved
Python VSCode Extension 2024.9.2024062701 242 Thursday, June 27, 2024 Approved
Python VSCode Extension 2024.9.2024062507 234 Wednesday, June 26, 2024 Approved
Python VSCode Extension 2024.9.11762332 361 Tuesday, June 25, 2024 Approved
Python VSCode Extension 2024.9.11731015 362 Saturday, June 22, 2024 Approved
Python VSCode Extension 2024.9.11721010 188 Friday, June 21, 2024 Approved
Python VSCode Extension 2024.9.11711009 211 Thursday, June 20, 2024 Approved
Python VSCode Extension 2024.9.11691012 371 Tuesday, June 18, 2024 Approved
Python VSCode Extension 2024.9.11661012 347 Saturday, June 15, 2024 Approved
Python VSCode Extension 2024.9.11641010 319 Thursday, June 13, 2024 Approved
Python VSCode Extension 2024.9.11621011 380 Tuesday, June 11, 2024 Approved
Python VSCode Extension 2024.8.0 373 Thursday, June 6, 2024 Approved
Python VSCode Extension 2024.7.11511013 540 Friday, May 31, 2024 Approved
Python VSCode Extension 2024.7.11501016 275 Thursday, May 30, 2024 Approved
Python VSCode Extension 2024.7.11491011 259 Wednesday, May 29, 2024 Approved
Python VSCode Extension 2024.7.11481011 273 Monday, May 27, 2024 Approved
Python VSCode Extension 2024.7.11451014 347 Saturday, May 25, 2024 Approved
Python VSCode Extension 2024.7.11371014 597 Friday, May 17, 2024 Approved
Python VSCode Extension 2024.7.11361010 256 Thursday, May 16, 2024 Approved
Python VSCode Extension 2024.7.11341012 356 Monday, May 13, 2024 Approved
Python VSCode Extension 2024.7.11311010 378 Saturday, May 11, 2024 Approved
Python VSCode Extension 2024.7.11301009 175 Friday, May 10, 2024 Approved
Python VSCode Extension 2024.7.11291009 276 Thursday, May 9, 2024 Approved
Python VSCode Extension 2024.7.11281013 223 Wednesday, May 8, 2024 Approved
Python VSCode Extension 2024.7.11241010 454 Saturday, May 4, 2024 Approved
Python VSCode Extension 2024.6.0 198 Friday, May 3, 2024 Approved
Python VSCode Extension 2024.5.11172159 1356 Saturday, April 27, 2024 Approved
Python VSCode Extension 2024.5.11141012 776 Wednesday, April 24, 2024 Approved
Python VSCode Extension 2024.5.11132132 315 Tuesday, April 23, 2024 Approved
Python VSCode Extension 2024.5.11101014 752 Saturday, April 20, 2024 Approved
Python VSCode Extension 2024.5.11091012 361 Friday, April 19, 2024 Approved
Python VSCode Extension 2024.5.11082240 702 Thursday, April 18, 2024 Approved
Python VSCode Extension 2024.5.11021008 637 Friday, April 12, 2024 Approved
Python VSCode Extension 2024.5.11011009 223 Thursday, April 11, 2024 Approved
Python VSCode Extension 2024.5.11002139 271 Wednesday, April 10, 2024 Approved
Python VSCode Extension 2024.4.0 561 Friday, April 5, 2024 Approved
Python VSCode Extension 2024.3.10871011 668 Thursday, March 28, 2024 Approved
Python VSCode Extension 2024.3.10861011 253 Wednesday, March 27, 2024 Approved
Python VSCode Extension 2024.3.10851013 262 Tuesday, March 26, 2024 Approved
Python VSCode Extension 2024.3.10811014 468 Friday, March 22, 2024 Approved
Python VSCode Extension 2024.3.10791010 362 Wednesday, March 20, 2024 Approved
Python VSCode Extension 2024.3.10782301 363 Tuesday, March 19, 2024 Approved
Python VSCode Extension 2024.3.10742127 547 Sunday, March 17, 2024 Approved
Python VSCode Extension 2024.3.10681011 683 Sunday, March 10, 2024 Approved
Python VSCode Extension 2024.3.10660538 313 Friday, March 8, 2024 Approved
Python VSCode Extension 2024.3.10651007 332 Wednesday, March 6, 2024 Approved
Python VSCode Extension 2024.3.10641005 362 Tuesday, March 5, 2024 Approved
Python VSCode Extension 2024.3.10611008 412 Saturday, March 2, 2024 Approved
Python VSCode Extension 2024.1.10531008 681 Sunday, February 25, 2024 Approved
Python VSCode Extension 2024.1.10451007 831 Thursday, February 15, 2024 Approved
Python VSCode Extension 2024.1.10411917 586 Monday, February 12, 2024 Approved
Python VSCode Extension 2024.0.0 730 Saturday, February 3, 2024 Approved
Python VSCode Extension 2023.25.10292213 545 Tuesday, January 30, 2024 Approved
Python VSCode Extension 2023.25.10221012 572 Wednesday, January 24, 2024 Approved
Python VSCode Extension 2023.25.10191009 551 Sunday, January 21, 2024 Approved
Python VSCode Extension 2023.25.10171013 426 Thursday, January 18, 2024 Approved
Python VSCode Extension 2023.25.10111009 652 Friday, January 12, 2024 Approved
Python VSCode Extension 2023.25.10101826 328 Thursday, January 11, 2024 Approved
Python VSCode Extension 2023.23.13541005 1618 Saturday, December 23, 2023 Approved
Python VSCode Extension 2023.23.13521007 490 Tuesday, December 19, 2023 Approved
Python VSCode Extension 2023.23.13481009 282 Sunday, December 17, 2023 Approved
Python VSCode Extension 2023.23.13470325 471 Wednesday, December 13, 2023 Approved
Python VSCode Extension 2023.23.13391009 561 Friday, December 8, 2023 Approved
Python VSCode Extension 2023.21.13351006 565 Sunday, December 3, 2023 Approved
Python VSCode Extension 2023.21.13261010 680 Monday, November 27, 2023 Approved
Python VSCode Extension 2023.21.13141007 956 Saturday, November 11, 2023 Approved
Python VSCode Extension 2023.21.13140305 270 Friday, November 10, 2023 Approved
Python VSCode Extension 2023.21.13071013 670 Saturday, November 4, 2023 Approved
Python VSCode Extension 2023.21.13061009 305 Thursday, November 2, 2023 Approved
Python VSCode Extension 2023.19.13031019 500 Tuesday, October 31, 2023 Approved
Python VSCode Extension 2023.19.13001012 397 Friday, October 27, 2023 Approved
Python VSCode Extension 2023.19.12991923 220 Friday, October 27, 2023 Approved
Python VSCode Extension 2023.19.12980103 700 Wednesday, October 25, 2023 Approved
Python VSCode Extension 2023.19.12961014 277 Tuesday, October 24, 2023 Approved
Python VSCode Extension 2023.19.12931008 752 Sunday, October 22, 2023 Approved
Python VSCode Extension 2023.19.12921011 778 Friday, October 20, 2023 Approved
Python VSCode Extension 2023.19.12911010 277 Thursday, October 19, 2023 Approved
Python VSCode Extension 2023.19.12901009 368 Wednesday, October 18, 2023 Approved
Python VSCode Extension 2023.19.12861011 541 Saturday, October 14, 2023 Approved
Python VSCode Extension 2023.19.12821010 603 Tuesday, October 10, 2023 Approved
Python VSCode Extension 2023.19.12791027 1116 Saturday, October 7, 2023 Approved
Python VSCode Extension 2023.17.12751008 527 Tuesday, October 3, 2023 Approved
Python VSCode Extension 2023.17.12721006 332 Sunday, October 1, 2023 Approved
Python VSCode Extension 2023.17.12692049 517 Tuesday, September 26, 2023 Approved
Python VSCode Extension 2022.19.13071014 5647 Friday, November 4, 2022 Approved
Python VSCode Extension 2022.17.13020517 604 Sunday, October 30, 2022 Approved
Python VSCode Extension 2022.17.13011006 311 Saturday, October 29, 2022 Approved
Python VSCode Extension 2022.17.12991026 406 Thursday, October 27, 2022 Approved
Python VSCode Extension 2022.17.12981938 262 Wednesday, October 26, 2022 Approved
Python VSCode Extension 2022.17.12941045 600 Saturday, October 22, 2022 Approved
Python VSCode Extension 2022.17.12921047 288 Friday, October 21, 2022 Approved
Python VSCode Extension 2022.17.12871028 635 Saturday, October 15, 2022 Approved
Python VSCode Extension 2022.17.12861055 272 Friday, October 14, 2022 Approved
Python VSCode Extension 2022.17.12831005 606 Monday, October 10, 2022 Approved
Python VSCode Extension 2022.17.12801004 366 Saturday, October 8, 2022 Approved
Python VSCode Extension 2022.15.12731017 605 Saturday, October 1, 2022 Approved
Python VSCode Extension 2022.15.12711056 406 Wednesday, September 28, 2022 Approved
Python VSCode Extension 2022.15.12691752 478 Tuesday, September 27, 2022 Approved
Python VSCode Extension 2022.15.12631011 470 Thursday, September 22, 2022 Approved
Python VSCode Extension 2022.15.12621040 448 Tuesday, September 20, 2022 Approved
Python VSCode Extension 2022.15.12591021 340 Saturday, September 17, 2022 Approved
Python VSCode Extension 2022.15.12571012 443 Thursday, September 15, 2022 Approved
Python VSCode Extension 2022.15.12532020 558 Sunday, September 11, 2022 Approved
Python VSCode Extension 2022.15.12501015 408 Thursday, September 8, 2022 Approved
Python VSCode Extension 2022.15.12451011 588 Saturday, September 3, 2022 Approved
Python VSCode Extension 2022.13.12411009 530 Tuesday, August 30, 2022 Approved
Python VSCode Extension 2022.13.12381007 347 Saturday, August 27, 2022 Approved
Python VSCode Extension 2022.13.12371004 317 Friday, August 26, 2022 Approved
Python VSCode Extension 2022.13.12341009 484 Tuesday, August 23, 2022 Approved
Python VSCode Extension 2022.13.12301015 384 Sunday, August 21, 2022 Approved
Python VSCode Extension 2022.13.12241007 592 Monday, August 15, 2022 Approved
Python VSCode Extension 2022.13.12171009 684 Saturday, August 6, 2022 Approved
Python VSCode Extension 2022.13.12141005 378 Wednesday, August 3, 2022 Approved
Python VSCode Extension 2022.11.12131835 345 Tuesday, August 2, 2022 Approved
Python VSCode Extension 2022.11.12031009 645 Saturday, July 23, 2022 Approved
Python VSCode Extension 2022.11.11991004 490 Tuesday, July 19, 2022 Approved
Python VSCode Extension 2022.11.11961004 340 Saturday, July 16, 2022 Approved
Python VSCode Extension 2022.11.11931021 325 Thursday, July 14, 2022 Approved
Python VSCode Extension 2022.11.11921007 435 Monday, July 11, 2022 Approved
Python VSCode Extension 2022.11.11891004 425 Friday, July 8, 2022 Approved
Python VSCode Extension 2022.11.11881005 232 Friday, July 8, 2022 Approved
Python VSCode Extension 2022.9.11821004 712 Sunday, July 3, 2022 Approved
Python VSCode Extension 2022.9.11791004 410 Thursday, June 30, 2022 Approved
Python VSCode Extension 2022.9.11741005 704 Friday, June 24, 2022 Approved
Python VSCode Extension 2022.9.11681004 543 Saturday, June 18, 2022 Approved
Python VSCode Extension 2022.9.11651038 357 Wednesday, June 15, 2022 Approved
Python VSCode Extension 2022.9.11611009 477 Saturday, June 11, 2022 Approved
Python VSCode Extension 2022.9.11601008 262 Friday, June 10, 2022 Approved
Python VSCode Extension 2022.7.11541009 536 Saturday, June 4, 2022 Approved
Python VSCode Extension 2022.7.11521008 259 Friday, June 3, 2022 Approved
Python VSCode Extension 2022.7.11461005 545 Friday, May 27, 2022 Approved
Python VSCode Extension 2022.7.11401005 543 Saturday, May 21, 2022 Approved
Python VSCode Extension 2022.7.11400308 275 Friday, May 20, 2022 Approved
Python VSCode Extension 2022.7.11381925 269 Thursday, May 19, 2022 Approved
Python VSCode Extension 2022.7.11332232 617 Saturday, May 14, 2022 Approved
Python VSCode Extension 2022.7.11291008 590 Tuesday, May 10, 2022 Approved
Python VSCode Extension 2022.7.11262018 367 Sunday, May 8, 2022 Approved
Python VSCode Extension 2022.6.0 297 Friday, May 6, 2022 Approved
Python VSCode Extension 2022.5.11181002 601 Friday, April 29, 2022 Approved
Python VSCode Extension 2022.5.11111003 591 Friday, April 22, 2022 Approved
Python VSCode Extension 2022.5.11101004 240 Thursday, April 21, 2022 Approved
Python VSCode Extension 2022.5.11091652 346 Wednesday, April 20, 2022 Approved
Python VSCode Extension 2022.5.11051003 471 Sunday, April 17, 2022 Approved
Python VSCode Extension 2022.5.11021002 377 Thursday, April 14, 2022 Approved
Python VSCode Extension 2022.5.10911002 743 Saturday, April 2, 2022 Approved
Python VSCode Extension 2022.5.10901002 319 Friday, April 1, 2022 Approved
Python VSCode Extension 2022.3.10841003 564 Sunday, March 27, 2022 Approved
Python VSCode Extension 2022.3.10811002 479 Wednesday, March 23, 2022 Approved
Python VSCode Extension 2022.3.10771003 420 Saturday, March 19, 2022 Approved
Python VSCode Extension 2022.3.10701002 580 Saturday, March 12, 2022 Approved
Python VSCode Extension 2022.3.10661003 497 Tuesday, March 8, 2022 Approved
Python VSCode Extension 2022.3.10631003 363 Sunday, March 6, 2022 Approved
Python VSCode Extension 2022.0.1814523869 915 Saturday, February 12, 2022 Approved
Python VSCode Extension 2022.0.1786462952 637 Saturday, February 5, 2022 Approved
Python VSCode Extension 2021.12.1559732655 1588 Friday, December 10, 2021 Approved
Python VSCode Extension 2021.11.1422169775 1207 Saturday, November 6, 2021 Approved
Python VSCode Extension 2021.10.1365161279 748 Saturday, October 23, 2021 Approved
Python VSCode Extension 2021.10.1336267007 669 Thursday, October 14, 2021 Approved
Python VSCode Extension 2021.10.1317843341 589 Friday, October 8, 2021 Approved
Python VSCode Extension 2021.9.1246542782 803 Tuesday, September 21, 2021 Approved
Python VSCode Extension 2021.9.1230869389 629 Tuesday, September 14, 2021 Approved
Python VSCode Extension 2021.9.1218897484 467 Friday, September 10, 2021 Approved
Python VSCode Extension 2021.9.1191016588 507 Saturday, September 4, 2021 Approved
Python VSCode Extension 2021.8.1159798656 648 Tuesday, August 24, 2021 Approved
Python VSCode Extension 2021.8.1147840270 450 Friday, August 20, 2021 Approved
Python VSCode Extension 2021.8.1105858891 781 Saturday, August 7, 2021 Approved
Python VSCode Extension 2021.8.1102490946 274 Friday, August 6, 2021 Approved
Python VSCode Extension 2021.7.1060902895 648 Saturday, July 24, 2021 Approved
Python VSCode Extension 2021.7.1053846006 442 Thursday, July 22, 2021 Approved
Python VSCode Extension 2021.6.944021595 1068 Thursday, June 17, 2021 Approved
Python VSCode Extension 2021.5.926500501 499 Saturday, June 12, 2021 Approved
Python VSCode Extension 2021.5.842923320 982 Saturday, May 15, 2021 Approved
Python VSCode Extension 2021.5.840043038 273 Friday, May 14, 2021 Approved
Python VSCode Extension 2021.5.829140558 446 Tuesday, May 11, 2021 Approved
Python VSCode Extension 2021.4.765268190 829 Tuesday, April 20, 2021 Approved
Python VSCode Extension 2021.3.680753044 987 Friday, March 26, 2021 Approved
Python VSCode Extension 2021.3.658691958 632 Wednesday, March 17, 2021 Approved
Python VSCode Extension 2021.2.636928669 539 Wednesday, March 10, 2021 Approved
Python VSCode Extension 2021.2.633441544 309 Tuesday, March 9, 2021 Approved
Python VSCode Extension 2021.2.625869727 421 Saturday, March 6, 2021 Approved
Python VSCode Extension 2021.2.582707922 668 Saturday, February 20, 2021 Approved
Python VSCode Extension 2021.2.576481509 358 Thursday, February 18, 2021 Approved
Python VSCode Extension 2021.1.502429796 899 Friday, January 22, 2021 Approved
Python VSCode Extension 2020.12.424452561 893 Wednesday, December 16, 2020 Approved
Python VSCode Extension 2020.11.371526539 854 Friday, November 20, 2020 Approved
Python VSCode Extension 2020.11.367453362 318 Wednesday, November 18, 2020 Approved
Python VSCode Extension 2020.11.358366026 496 Thursday, November 12, 2020 Approved
Python VSCode Extension 2020.10.332292344 703 Thursday, October 29, 2020 Approved
Python VSCode Extension 2020.9.114305 754 Wednesday, October 7, 2020 Approved
Python VSCode Extension 2020.9.112786 477 Wednesday, September 30, 2020 Approved
Python VSCode Extension 2020.9.111407 435 Thursday, September 24, 2020 Approved
Python VSCode Extension 2020.8.109390 488 Wednesday, September 16, 2020 Approved
Python VSCode Extension 2020.8.108011 430 Thursday, September 10, 2020 Approved
Python VSCode Extension 2020.8.106424 358 Friday, September 4, 2020 Approved
Python VSCode Extension 2020.8.105369 368 Tuesday, September 1, 2020 Approved
Python VSCode Extension 2020.8.105045 358 Friday, August 28, 2020 Approved
Python VSCode Extension 2020.8.103604 397 Saturday, August 22, 2020 Approved
Python VSCode Extension 2020.8.101144 468 Thursday, August 13, 2020 Approved
Python VSCode Extension 2020.7.96456 592 Friday, July 24, 2020 Approved
Python VSCode Extension 2020.7.94776 462 Friday, July 17, 2020 Approved
Python VSCode Extension 2020.6.91350 571 Wednesday, July 1, 2020 Approved
Python VSCode Extension 2020.6.90262 420 Friday, June 26, 2020 Approved
Python VSCode Extension 2020.6.89148 407 Saturday, June 20, 2020 Approved
Python VSCode Extension 2020.6.88468 384 Wednesday, June 17, 2020 Approved
Python VSCode Extension 2020.5.86806 451 Thursday, June 11, 2020 Approved
Python VSCode Extension 2020.5.86398 372 Tuesday, June 9, 2020 Approved
Python VSCode Extension 2020.5.80290 670 Wednesday, May 20, 2020 Approved
Python VSCode Extension 2020.5.78807 496 Wednesday, May 13, 2020 Approved
Python VSCode Extension 2020.4.76186 638 Tuesday, April 28, 2020 Approved
Python VSCode Extension 2020.4.74986 404 Tuesday, April 21, 2020 Approved
Python VSCode Extension 2020.3.71113 521 Wednesday, April 1, 2020 Approved
Python VSCode Extension 2020.3.69010 369 Saturday, March 21, 2020 Approved
Python VSCode Extension 2020.2.64397 535 Saturday, February 22, 2020 Approved
Python VSCode Extension 2020.2.63990 225 Thursday, February 20, 2020 Approved
Python VSCode Extension 2020.2.63072 303 Thursday, February 13, 2020 Approved
Python VSCode Extension 2020.2.62710 235 Wednesday, February 12, 2020 Approved
Python VSCode Extension 2020.1.58038 520 Tuesday, January 14, 2020 Approved
Python VSCode Extension 2020.1.57204 299 Wednesday, January 8, 2020 Approved
Python VSCode Extension 2019.11.50794 395 Friday, November 22, 2019 Approved
Python VSCode Extension 2019.11.49689 210 Tuesday, November 19, 2019 Approved
Python VSCode Extension 2019.10.44104 440 Saturday, November 9, 2019 Approved
Discussion for the Python VSCode Extension Package

Ground Rules:

  • This discussion is only about Python VSCode Extension and the Python VSCode Extension package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Python VSCode Extension, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus