You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/python/python-web.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ MetaDescription: Run and Debug Python code in the Web.
9
9
---
10
10
# Run and Debug Python in the Web
11
11
12
-
We are happy to announce experimental support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace.
12
+
We are happy to announce **experimental** support for running Python code on the Web. To try it out, install the latest pre-release version of the [Experimental - Python for the Web](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-python-web-wasm) extension from the Marketplace. This work is based on WASM in Python, which is currently in development. To learn more about how it works and the ongoing progress, you can read [Compiling Python to WebAssembly (WASM)](https://pythondev.readthedocs.io/wasm.html).
13
13
14
14
## Prerequisites
15
15
@@ -18,9 +18,9 @@ The following prerequisites are needed to use the extension:
18
18
* You need to have the [GitHub Repositories](https://marketplace.visualstudio.com/items?itemName=GitHub.remotehub) extension installed.
19
19
* You need to authenticate with GitHub.
20
20
* You need to use a browser that supports [cross-origin isolation](https://developer.chrome.com/docs/extensions/mv3/cross-origin-isolation/). The extension has been tested with the Microsoft Edge and Google Chrome browsers.
21
-
* You need to use the insider version of [VS Code for the Web](/docs/editor/vscode-web.md) (e.g.`https://insiders.vscode.dev/`)
22
-
* Your source code must either be hosted on a GitHub repository and accessed through the GitHub Repositories extension, or on your local file system.
23
-
* When starting [VS Code for the Web](/docs/editor/vscode-web.md), you need to add the following query parameter to the URL: `?vscode-coi=`.
21
+
* You need to use the insider version of [VS Code for the Web](/docs/editor/vscode-web.md) (for example`https://insiders.vscode.dev/`)
22
+
* Your source code must either be hosted on on your local file system or a GitHub repository that is accessed through the GitHub Repositories extension.
23
+
* When starting [VS Code for the Web](/docs/editor/vscode-web.md), you need to add the following query parameter to the end of the URL: `?vscode-coi=`.
24
24
25
25
## Run Hello World
26
26
@@ -36,7 +36,7 @@ The extension comes with an integrated Python REPL. To activate it, run the comm
36
36
37
37
## Debugging
38
38
39
-
There is support for debugging Python files on the Web. The features currently supported are:
39
+
There is support for debugging Python files on the Web and it uses the same UI as VS Code Desktop [debugging](/docs/python/debugging.md). The features currently supported are:
0 commit comments