|
1 |
| -# Project |
| 1 | +# Debugpy extension for Visual Studio Code |
2 | 2 |
|
3 |
| -> This repo has been populated by an initial template to help get you started. Please |
4 |
| -> make sure to update the content to build a great experience for community-building. |
| 3 | +A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marketplace.visualstudio.com/VSCode) that supports Python debugging with debugpy. debugpy provides a seamless debugging experience by allowing you to set breakpoints, step through code, inspect variables, and perform other essential debugging tasks. The debugy extension offers debugging support for various types of Python applications including scripts, web applications, remote processes, and multi-threaded processes. |
5 | 4 |
|
6 |
| -As the maintainer of this project, please make a few updates: |
| 5 | +Note: |
| 6 | +- The Python extension offers the debugpy extension as an optional installation, including it during the setup process. |
| 7 | +- This extension is supported for all [actively supported versions](https://devguide.python.org/#status-of-python-branches) of the Python language (i.e., Python >= 3.7). |
7 | 8 |
|
8 |
| -- Improving this README.MD file to provide a great experience |
9 |
| -- Updating SUPPORT.MD with content about this project's support experience |
10 |
| -- Understanding the security reporting process in SECURITY.MD |
11 |
| -- Remove this section from the README |
| 9 | +## Usage |
12 | 10 |
|
13 |
| -## Contributing |
| 11 | +Once installed in Visual Studio Code, debugpy will be automatically activated when you open a Python file. |
14 | 12 |
|
15 |
| -This project welcomes contributions and suggestions. Most contributions require you to agree to a |
16 |
| -Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us |
17 |
| -the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com. |
| 13 | +## Disabling the Debugpy extension |
| 14 | +If you want to disable the Debugpy extension, you can [disable this extension](https://code.visualstudio.com/docs/editor/extension-marketplace#_disable-an-extension) per workspace in Visual Studio Code. |
18 | 15 |
|
19 |
| -When you submit a pull request, a CLA bot will automatically determine whether you need to provide |
20 |
| -a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions |
21 |
| -provided by the bot. You will only need to do this once across all repos using our CLA. |
| 16 | +## Commands |
22 | 17 |
|
23 |
| -This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). |
24 |
| -For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or |
25 |
| -contact [[email protected]](mailto:[email protected]) with any additional questions or comments. |
| 18 | +| Command | Description | |
| 19 | +| ---------------------- | --------------------------------- | |
| 20 | +| Debugpy: viewOutput | Show the debugpy extension output. | |
| 21 | +| Debugpy: clearCacheAndReload | Allows you to clear the global values set in the extension. | |
| 22 | +| Debugpy: debugInTerminal | Allows you to debug a simple Python file in the terminal. | |
26 | 23 |
|
27 |
| -## Trademarks |
28 |
| - |
29 |
| -This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft |
30 |
| -trademarks or logos is subject to and must follow |
31 |
| -[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). |
32 |
| -Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. |
33 |
| -Any use of third-party trademarks or logos are subject to those third-party's policies. |
| 24 | +## Data and telemetry |
| 25 | +The Debubpy Extension for Visual Studio Code collects usage data and sends it to Microsoft to help improve our products and services. Read our [privacy statement](https://privacy.microsoft.com/privacystatement) to learn more. This extension respects the `telemetry.enableTelemetry` setting which you can learn more about at https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting. |
0 commit comments