Chocolatey Community Coffee Break

Join the Chocolatey Team on our regular monthly stream where we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

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

Announcing Chocolatey Central Management 0.10.0

Livestream from
Thursday, 06 October 2022

We recently released our largest update to Chocolatey Central Management so far. Join Gary and Steph to find out more about Chocolatey Central Management and the new features and fixes we've added to this release.

Watch On-Demand
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
Chocolatey Product Spotlight: Chocolatey 1.2.0 and Chocolatey Licensed Extension 5.0.0

Livestream from
Thursday, 03 November 2022

Join Paul and Gary for this months Chocolatey product livestream where we look at the latest release of Chocolatey 1.2.0, Chocolatey Licensed Extension 5.0.0 and shine a spotlight on the new hook scripts functionality. This opens up so many possibilities for Chocolatey CLI users!

Watch On-Demand
Chocolatey Coding Livestream

Livestream from
Tuesday, 29 November 2022

Join Josh as he adds the ability to manage Chocolatey GUI config and features with the Chocolatey Ansible Collection.

Watch On-Demand
Introduction into Chocolatey with Veeam

Webinar from
Tuesday, 13 December 2022

Join Gary, Paul, and Maurice as they introduce and demonstrate how to use Chocolatey! Questions will be answered live in an Ask Me Anything format.

Watch On-Demand

Downloads:

57,081

Downloads of v 2022.13.12381007:

258

Last Update:

27 Aug 2022

Package Maintainer(s):

Software Author(s):

  • Microsoft

Tags:

python vscode-python vscode microsoft

Python VSCode Extension

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

  • 1
  • 2
  • 3

2022.13.12381007 | Updated: 27 Aug 2022

Downloads:

57,081

Downloads of v 2022.13.12381007:

258

Maintainer(s):

Software Author(s):

  • Microsoft

Python VSCode Extension 2022.13.12381007

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

  • 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="'2022.13.12381007'" [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="'2022.13.12381007'" 
$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: '2022.13.12381007'
    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  '2022.13.12381007'
end

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


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

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


package { 'vscode-python':
  ensure   => '2022.13.12381007',
  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 27 Aug 2022.

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.68.0 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-2022.13.12381007.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/2022.13.12381007/vspackage

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

  Type:     sha256
  Checksum: 3ECFFB1150F31904E1C9B513A56CEB1140105097733DD7D9C80E1F33BB584417

  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-2022.13.12381007.vsix"
tools\chocolateyuninstall.ps1
$ErrorActionPreference = 'Stop'

Uninstall-VsCodeExtension -extensionId 'ms-python.python'
tools\ms-python.python-2022.13.12381007.vsix
md5: 82466B64DDA8F0434997B693FDBCA6E4 | sha1: F3084EFDC8AC5EBE60F90270AB595FC57D65C789 | sha256: 3ECFFB1150F31904E1C9B513A56CEB1140105097733DD7D9C80E1F33BB584417 | sha512: 6A09656CA9F6E440E3F3071F87A5718FB90B682EAF2ADD19CEE28466020AA98660529FCCAF186333E735A815F65E6BF7B0DCE15901FA1D584502BECC67A9A792

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 2022.17.13020517 512 Sunday, October 30, 2022 Approved
Python VSCode Extension 2022.17.13011006 156 Saturday, October 29, 2022 Approved
Python VSCode Extension 2022.17.12991026 268 Thursday, October 27, 2022 Approved
Python VSCode Extension 2022.17.12981938 163 Wednesday, October 26, 2022 Approved
Python VSCode Extension 2022.17.12941045 434 Saturday, October 22, 2022 Approved
Python VSCode Extension 2022.17.12921047 181 Friday, October 21, 2022 Approved
Python VSCode Extension 2022.17.12871028 547 Saturday, October 15, 2022 Approved
Python VSCode Extension 2022.17.12861055 174 Friday, October 14, 2022 Approved
Python VSCode Extension 2022.17.12831005 495 Monday, October 10, 2022 Approved
Python VSCode Extension 2022.17.12801004 258 Saturday, October 8, 2022 Approved
Python VSCode Extension 2022.15.12731017 520 Saturday, October 1, 2022 Approved
Python VSCode Extension 2022.15.12711056 256 Wednesday, September 28, 2022 Approved
Python VSCode Extension 2022.15.12691752 336 Tuesday, September 27, 2022 Approved
Python VSCode Extension 2022.15.12631011 365 Thursday, September 22, 2022 Approved
Python VSCode Extension 2022.15.12621040 315 Tuesday, September 20, 2022 Approved
Python VSCode Extension 2022.15.12591021 254 Saturday, September 17, 2022 Approved
Python VSCode Extension 2022.15.12571012 284 Thursday, September 15, 2022 Approved
Python VSCode Extension 2022.15.12532020 461 Sunday, September 11, 2022 Approved
Python VSCode Extension 2022.15.12501015 300 Thursday, September 8, 2022 Approved
Python VSCode Extension 2022.15.12451011 480 Saturday, September 3, 2022 Approved
Python VSCode Extension 2022.13.12411009 440 Tuesday, August 30, 2022 Approved
Python VSCode Extension 2022.13.12381007 258 Saturday, August 27, 2022 Approved
Python VSCode Extension 2022.13.12371004 182 Friday, August 26, 2022 Approved
Python VSCode Extension 2022.13.12341009 379 Tuesday, August 23, 2022 Approved
Python VSCode Extension 2022.13.12301015 270 Sunday, August 21, 2022 Approved
Python VSCode Extension 2022.13.12241007 479 Monday, August 15, 2022 Approved
Python VSCode Extension 2022.13.12171009 556 Saturday, August 6, 2022 Approved
Python VSCode Extension 2022.13.12141005 288 Wednesday, August 3, 2022 Approved
Python VSCode Extension 2022.11.12131835 244 Tuesday, August 2, 2022 Approved
Python VSCode Extension 2022.11.12031009 548 Saturday, July 23, 2022 Approved
Python VSCode Extension 2022.11.11991004 373 Tuesday, July 19, 2022 Approved
Python VSCode Extension 2022.11.11961004 253 Saturday, July 16, 2022 Approved
Python VSCode Extension 2022.11.11931021 232 Thursday, July 14, 2022 Approved
Python VSCode Extension 2022.11.11921007 346 Monday, July 11, 2022 Approved
Python VSCode Extension 2022.11.11891004 282 Friday, July 8, 2022 Approved
Python VSCode Extension 2022.11.11881005 142 Friday, July 8, 2022 Approved
Python VSCode Extension 2022.9.11821004 599 Sunday, July 3, 2022 Approved
Python VSCode Extension 2022.9.11791004 263 Thursday, June 30, 2022 Approved
Python VSCode Extension 2022.9.11741005 606 Friday, June 24, 2022 Approved
Python VSCode Extension 2022.9.11681004 471 Saturday, June 18, 2022 Approved
Python VSCode Extension 2022.9.11651038 269 Wednesday, June 15, 2022 Approved
Python VSCode Extension 2022.9.11611009 389 Saturday, June 11, 2022 Approved
Python VSCode Extension 2022.9.11601008 161 Friday, June 10, 2022 Approved
Python VSCode Extension 2022.7.11541009 452 Saturday, June 4, 2022 Approved
Python VSCode Extension 2022.7.11521008 154 Friday, June 3, 2022 Approved
Python VSCode Extension 2022.7.11461005 459 Friday, May 27, 2022 Approved
Python VSCode Extension 2022.7.11401005 452 Saturday, May 21, 2022 Approved
Python VSCode Extension 2022.7.11400308 185 Friday, May 20, 2022 Approved
Python VSCode Extension 2022.7.11381925 188 Thursday, May 19, 2022 Approved
Python VSCode Extension 2022.7.11332232 483 Saturday, May 14, 2022 Approved
Python VSCode Extension 2022.7.11291008 430 Tuesday, May 10, 2022 Approved
Python VSCode Extension 2022.7.11262018 263 Sunday, May 8, 2022 Approved
Python VSCode Extension 2022.6.0 220 Friday, May 6, 2022 Approved
Python VSCode Extension 2022.5.11181002 489 Friday, April 29, 2022 Approved
Python VSCode Extension 2022.5.11111003 501 Friday, April 22, 2022 Approved
Python VSCode Extension 2022.5.11101004 145 Thursday, April 21, 2022 Approved
Python VSCode Extension 2022.5.11091652 227 Wednesday, April 20, 2022 Approved
Python VSCode Extension 2022.5.11051003 372 Sunday, April 17, 2022 Approved
Python VSCode Extension 2022.5.11021002 239 Thursday, April 14, 2022 Approved
Python VSCode Extension 2022.5.10911002 650 Saturday, April 2, 2022 Approved
Python VSCode Extension 2022.5.10901002 235 Friday, April 1, 2022 Approved
Python VSCode Extension 2022.3.10841003 489 Sunday, March 27, 2022 Approved
Python VSCode Extension 2022.3.10811002 369 Wednesday, March 23, 2022 Approved
Python VSCode Extension 2022.3.10771003 335 Saturday, March 19, 2022 Approved
Python VSCode Extension 2022.3.10701002 492 Saturday, March 12, 2022 Approved
Python VSCode Extension 2022.3.10661003 402 Tuesday, March 8, 2022 Approved
Python VSCode Extension 2022.3.10631003 225 Sunday, March 6, 2022 Approved
Python VSCode Extension 2022.0.1814523869 817 Saturday, February 12, 2022 Approved
Python VSCode Extension 2022.0.1786462952 548 Saturday, February 5, 2022 Approved
Python VSCode Extension 2021.12.1559732655 1440 Friday, December 10, 2021 Approved
Python VSCode Extension 2021.11.1422169775 1118 Saturday, November 6, 2021 Approved
Python VSCode Extension 2021.10.1365161279 667 Saturday, October 23, 2021 Approved
Python VSCode Extension 2021.10.1336267007 559 Thursday, October 14, 2021 Approved
Python VSCode Extension 2021.10.1317843341 491 Friday, October 8, 2021 Approved
Python VSCode Extension 2021.9.1246542782 702 Tuesday, September 21, 2021 Approved
Python VSCode Extension 2021.9.1230869389 498 Tuesday, September 14, 2021 Approved
Python VSCode Extension 2021.9.1218897484 369 Friday, September 10, 2021 Approved
Python VSCode Extension 2021.9.1191016588 411 Saturday, September 4, 2021 Approved
Python VSCode Extension 2021.8.1159798656 529 Tuesday, August 24, 2021 Approved
Python VSCode Extension 2021.8.1147840270 332 Friday, August 20, 2021 Approved
Python VSCode Extension 2021.8.1105858891 683 Saturday, August 7, 2021 Approved
Python VSCode Extension 2021.8.1102490946 191 Friday, August 6, 2021 Approved
Python VSCode Extension 2021.7.1060902895 561 Saturday, July 24, 2021 Approved
Python VSCode Extension 2021.7.1053846006 280 Thursday, July 22, 2021 Approved
Python VSCode Extension 2021.6.944021595 951 Thursday, June 17, 2021 Approved
Python VSCode Extension 2021.5.926500501 396 Saturday, June 12, 2021 Approved
Python VSCode Extension 2021.5.842923320 881 Saturday, May 15, 2021 Approved
Python VSCode Extension 2021.5.840043038 186 Friday, May 14, 2021 Approved
Python VSCode Extension 2021.5.829140558 367 Tuesday, May 11, 2021 Approved
Python VSCode Extension 2021.4.765268190 716 Tuesday, April 20, 2021 Approved
Python VSCode Extension 2021.3.680753044 854 Friday, March 26, 2021 Approved
Python VSCode Extension 2021.3.658691958 531 Wednesday, March 17, 2021 Approved
Python VSCode Extension 2021.2.636928669 449 Wednesday, March 10, 2021 Approved
Python VSCode Extension 2021.2.633441544 213 Tuesday, March 9, 2021 Approved
Python VSCode Extension 2021.2.625869727 301 Saturday, March 6, 2021 Approved
Python VSCode Extension 2021.2.582707922 571 Saturday, February 20, 2021 Approved
Python VSCode Extension 2021.2.576481509 261 Thursday, February 18, 2021 Approved
Python VSCode Extension 2021.1.502429796 793 Friday, January 22, 2021 Approved
Python VSCode Extension 2020.12.424452561 796 Wednesday, December 16, 2020 Approved
Python VSCode Extension 2020.11.371526539 721 Friday, November 20, 2020 Approved
Python VSCode Extension 2020.11.367453362 229 Wednesday, November 18, 2020 Approved
Python VSCode Extension 2020.11.358366026 401 Thursday, November 12, 2020 Approved
Python VSCode Extension 2020.10.332292344 570 Thursday, October 29, 2020 Approved
Python VSCode Extension 2020.9.114305 652 Wednesday, October 7, 2020 Approved
Python VSCode Extension 2020.9.112786 385 Wednesday, September 30, 2020 Approved
Python VSCode Extension 2020.9.111407 346 Thursday, September 24, 2020 Approved
Python VSCode Extension 2020.8.109390 386 Wednesday, September 16, 2020 Approved
Python VSCode Extension 2020.8.108011 344 Thursday, September 10, 2020 Approved
Python VSCode Extension 2020.8.106424 293 Friday, September 4, 2020 Approved
Python VSCode Extension 2020.8.105369 274 Tuesday, September 1, 2020 Approved
Python VSCode Extension 2020.8.105045 271 Friday, August 28, 2020 Approved
Python VSCode Extension 2020.8.103604 303 Saturday, August 22, 2020 Approved
Python VSCode Extension 2020.8.101144 386 Thursday, August 13, 2020 Approved
Python VSCode Extension 2020.7.96456 502 Friday, July 24, 2020 Approved
Python VSCode Extension 2020.7.94776 392 Friday, July 17, 2020 Approved
Python VSCode Extension 2020.6.91350 440 Wednesday, July 1, 2020 Approved
Python VSCode Extension 2020.6.90262 290 Friday, June 26, 2020 Approved
Python VSCode Extension 2020.6.89148 289 Saturday, June 20, 2020 Approved
Python VSCode Extension 2020.6.88468 257 Wednesday, June 17, 2020 Approved
Python VSCode Extension 2020.5.86806 309 Thursday, June 11, 2020 Approved
Python VSCode Extension 2020.5.86398 236 Tuesday, June 9, 2020 Approved
Python VSCode Extension 2020.5.80290 558 Wednesday, May 20, 2020 Approved
Python VSCode Extension 2020.5.78807 355 Wednesday, May 13, 2020 Approved
Python VSCode Extension 2020.4.76186 534 Tuesday, April 28, 2020 Approved
Python VSCode Extension 2020.4.74986 294 Tuesday, April 21, 2020 Approved
Python VSCode Extension 2020.3.71113 428 Wednesday, April 1, 2020 Approved
Python VSCode Extension 2020.3.69010 271 Saturday, March 21, 2020 Approved
Python VSCode Extension 2020.2.64397 432 Saturday, February 22, 2020 Approved
Python VSCode Extension 2020.2.63990 136 Thursday, February 20, 2020 Approved
Python VSCode Extension 2020.2.63072 221 Thursday, February 13, 2020 Approved
Python VSCode Extension 2020.2.62710 149 Wednesday, February 12, 2020 Approved
Python VSCode Extension 2020.1.58038 408 Tuesday, January 14, 2020 Approved
Python VSCode Extension 2020.1.57204 200 Wednesday, January 8, 2020 Approved
Python VSCode Extension 2019.11.50794 310 Friday, November 22, 2019 Approved
Python VSCode Extension 2019.11.49689 127 Tuesday, November 19, 2019 Approved
Python VSCode Extension 2019.10.44104 269 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