Create VSCode Extensions with python
Project description
vscode
This package allows you to create vscode extensions with python. It does so by transpiling the python code to javascript.
Installation
Stable version:
pip install vscode-ext
Working version:
pip install git+https://github.com/CodeWithSwastik/vscode
Tutorial
Comming soon!
Example Extension
import vscode
ext = vscode.Extension(name="testpy", display_name="Test Py", version = "0.0.1")
@ext.event
def on_activate():
return f"The Extension '{ext.name}' has started"
@ext.command()
def hello_world():
return vscode.window.show_info_message(f'Hello World from {ext.name}')
vscode.build(ext)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vscode-ext-1.0.0.tar.gz
(1.8 kB
view details)
File details
Details for the file vscode-ext-1.0.0.tar.gz
.
File metadata
- Download URL: vscode-ext-1.0.0.tar.gz
- Upload date:
- Size: 1.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.10.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9cbdaf217dd4a8503a80dfbc1ba6351f5b6dcc06f12dc83399f61723fb240e2 |
|
MD5 | 14d9ce4f3ff30d055a51816c3681e16c |
|
BLAKE2b-256 | 04bb33398e6c7f7491f68c79bb4d35775aea4be704553ea2eeb4da0c1b289358 |