Source code for meta_package_manager.managers.vscode

# Copyright Kevin Deldycke <kevin@deldycke.com> and contributors.
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

from __future__ import annotations

from typing import Iterator

from extra_platforms import ALL_PLATFORMS

from meta_package_manager.base import Package, PackageManager
from meta_package_manager.capabilities import version_not_implemented


[docs] class VSCode(PackageManager): name = "Visual Studio Code" homepage_url = "https://code.visualstudio.com" platforms = ALL_PLATFORMS requirement = "1.60.0" cli_names = ("code",) """ .. code-block:: shell-session ► code --version 1.60.2 7f6ab5485bbc008386c4386d08766667e155244e x64 """ @property def installed(self) -> Iterator[Package]: """Fetch installed packages. .. code-block:: shell-session ► code --list-extensions --show-versions ms-python.python@2021.9.1246542782 ms-python.vscode-pylance@2021.9.3 ms-toolsai.jupyter@2021.8.2041215044 ms-toolsai.jupyter-keymap@1.0.0 samuelcolvin.jinjahtml@0.16.0 tamasfe.even-better-toml@0.14.2 trond-snekvik.simple-rst@1.5.0 """ output = self.run_cli("--list-extensions", "--show-versions") for package in output.splitlines(): package_id, installed_version = package.split("@") yield self.package(id=package_id, installed_version=installed_version) @version_not_implemented def install(self, package_id: str, version: str | None = None) -> str: """Install one package. .. code-block:: shell-session ► code --install-extension tamasfe.even-better-toml """ return self.run_cli("--install-extension", package_id)