https://github.com/rednafi/py-vscode
An Opinionated Beginner Friendly Guide for Optimizing Python Coding Experience in Visual Studio Code. Check it out here: https://py-vscode.readthedocs.io/en/latest/index.html
https://github.com/rednafi/py-vscode
py vscode vscode-py vscode-settings vscode-snippets vscode-theme vsts
Last synced: 3 months ago
JSON representation
An Opinionated Beginner Friendly Guide for Optimizing Python Coding Experience in Visual Studio Code. Check it out here: https://py-vscode.readthedocs.io/en/latest/index.html
- Host: GitHub
- URL: https://github.com/rednafi/py-vscode
- Owner: rednafi
- Created: 2019-09-28T06:02:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-10-25T13:29:19.000Z (over 5 years ago)
- Last Synced: 2025-03-23T19:51:24.871Z (3 months ago)
- Topics: py, vscode, vscode-py, vscode-settings, vscode-snippets, vscode-theme, vsts
- Homepage:
- Size: 2.35 MB
- Stars: 10
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to Python in VS Code 🦄
## An Opinionated Guide
Read the free guide at [py-vscode.readthedocs.io](https://py-vscode.readthedocs.io/en/latest/index.html)
![]()
**This is an ongoing work. I need contributors. Specially, if you are doing python in VS Code on MacOS/Windows, please consider contributing.**
## Contribution Guidelines
* This guideline has been made with [Sphinx](http://www.sphinx-doc.org/en/master/) and served with [Read The Docs](https://readthedocs.org/) ❤️* The pages are written in `markdown.md` format and are located in `docs/files/` folder. If you want to make an edit (You're awesome 👍)
* Clone the repo
* Make your changes to the files in `docs/files/`
* And send me a pull request* If you want to extend/add new pages to the guideline (Whoa, I owe you one 🔥)
* Clone the repo
* Make add new `newfile.md` in `docs/files` folder
* Write your contents in markdown format
* Add the new section in `docs/index.rst` file
* And send me a pull request* If you want to build the website locally after making an edit (Please Breed 🔱)
* Make a python environment, activate it and install the requirements via:
```python
pip install -r requirements.txt
```
* Make your changes according to the above guildelines
* From the root directory, run:
```python
sphinx-build -b html docs/ docs/_build
```
* Navigate to `docs/_build/files` to find your newly built html pages. Open them in your browser for inspection.
* If you are satisfied with your edits, send me a pull request.