Skip to content

Commit 11dad8b

Browse files
committed
update -v 0.0.9 plus project manger and theme , icon , code runner
1 parent 45683a4 commit 11dad8b

6 files changed

+132
-10
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
16- [**Jupyter Cell Tags**](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.vscode-jupyter-cell-tags)<br>
3131
17- [**Jupyter Keymap**](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.jupyter-keymap)<br>
3232
18- [**Jupyter Slide Show**](https://marketplace.visualstudio.com/items?itemName=ms-toolsai.vscode-jupyter-slideshow)<br>
33-
19- [****]()<br>
34-
20- [****]()<br>
35-
21- [****]()<br>
36-
22- [****]()<br>
33+
19- [**GitHub Theme**](https://marketplace.visualstudio.com/items?itemName=GitHub.github-vscode-theme)<br>
34+
20- [**Material Icon Theme**](https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme)<br>
35+
21- [**Project Manager**](https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager)<br>
36+
22- [**Code Runner**](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner)<br>
3737

3838

3939
<br><br>

img/Logo.png

16 KB
Loading

package.json

+43-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "python-silver-pack",
33
"displayName": "Python Silver Pack",
44
"description": "Elevate your Pyhton development experience with the Pyhton Pro Toolkit, a handpicked ensemble of top-tier Visual Studio Code extensions. This carefully curated pack brings together the best tools and utilities, streamlining your workflow and enhancing your capabilities as a frontend developer..",
5-
"version": "0.0.1",
5+
"version": "0.0.2",
66
"publisher": "echoWebNerds",
77
"license": "MIT",
88
"engines": {
@@ -12,7 +12,7 @@
1212
"name": "echoWebNerds",
1313
"email": "[email protected]"
1414
},
15-
"icon": "image/logo2.png",
15+
"icon": "img/Logo.png",
1616
"galleryBanner": {
1717
"color": "#bd93f9",
1818
"theme": "dark"
@@ -23,23 +23,28 @@
2323
},
2424
"homepage": "https://github.com/echoWebNerds/VsCode-Python-Extensions",
2525
"categories": [
26-
"Extension Packs"
26+
"Extension Packs",
27+
"Linters",
28+
"Formatters",
29+
"Debuggers"
2730
],
2831
"keywords": [
32+
"python extension pack",
2933
"Python",
3034
"package python",
3135
"package Python",
3236
"package Python",
3337
"python package",
3438
"Python Package",
35-
"pack frontend",
39+
"pack python",
3640
"Python pack",
3741
"Python-pack",
3842
"Python_pack",
3943
"PythonPack",
4044
"python-pack",
4145
"python_pack",
4246
"python",
47+
"PYTHON",
4348
"pack",
4449
"packs",
4550
"pack python",
@@ -59,7 +64,34 @@
5964
"Codeium",
6065
"AutoTag",
6166
"Intelli code",
62-
"Better Comments"
67+
"Better Comments",
68+
"codeium",
69+
"jupyter",
70+
"jupyter",
71+
"JUPYTER",
72+
"python indent",
73+
"python test explorer",
74+
"pylance",
75+
"test",
76+
"testing",
77+
"pytest",
78+
"typehint",
79+
"completion",
80+
"autocompletion",
81+
"python snippets",
82+
"python debugging",
83+
"python debugger",
84+
"python preview",
85+
"debug python",
86+
"debug",
87+
"debugging",
88+
"debugging Python",
89+
"debugging python",
90+
"Debugging Python",
91+
"Black Formatte",
92+
"black formatter",
93+
"black formatter",
94+
"Django"
6395
],
6496
"extensionPack": [
6597
"ms-python.black-formatter",
@@ -87,7 +119,12 @@
87119
"ms-toolsai.jupyter",
88120
"ms-toolsai.vscode-jupyter-cell-tags",
89121
"ms-toolsai.jupyter-keymap",
90-
"ms-toolsai.vscode-jupyter-slideshow"
122+
"ms-toolsai.vscode-jupyter-slideshow",
123+
"PKief.material-icon-theme",
124+
"GitHub.github-vscode-theme",
125+
"alefragnani.project-manager",
126+
"formulahendry.code-runner"
127+
91128
],
92129
"dependencies": {
93130
"vsce": "^2.15.0"

python-silver-pack-0.0.1.vsix

3.21 MB
Binary file not shown.

python-silver-pack-0.0.2.vsix

3.22 MB
Binary file not shown.

text.txt

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
GitLens: Enhance Git integration for inline blame annotations, code lens, and history exploration.
2+
Bracket Pair Colorizer: Colorizes matching brackets for better code readability.
3+
Python Preview: Previews Markdown-formatted Python code in a rendered HTML view.
4+
Indent Rainbow: Visualizes indentation levels with different colors.
5+
Better Comments: Supports annotations for better code documentation.
6+
AutoDocstring: Generates docstrings automatically for functions and classes.
7+
Python Snippets: Provides a collection of reusable code blocks.
8+
9+
Testing and Debugging:
10+
11+
Python Test Explorer: Discovers, runs, and visualizes test results for unittest, pytest, nose, and doctest.
12+
Jest: Seamless integration for running and debugging Jest tests.
13+
pdb++: Enhanced debugger with improved syntax highlighting, stepping, and variable inspection.
14+
15+
Linting and Code Quality:
16+
17+
Pylint: Popular linter for identifying code style issues and potential errors.
18+
Black: Automatic code formatter for consistent style.
19+
mypy: Static type checker for finding type errors before runtime.
20+
21+
Environment and Dependency Management:
22+
23+
Python Indent: Detects and fixes indentation errors automatically.
24+
Visual Studio IntelliCode: AI-assisted IntelliSense with recommendations based on your code context.
25+
Pylance: Advanced language server with enhanced type checking and IntelliSense.
26+
Remote Development: Develop and debug Python code running on remote machines or containers.
27+
28+
Specific Frameworks and Libraries:
29+
30+
Django: Support for Django development, including IntelliSense, code navigation, and debugging.
31+
Flask: Support for Flask development, including IntelliSense and code navigation.
32+
Anaconda Extension Pack: Collection of extensions for data science and machine learning with Python.
33+
34+
Additional Notable Extensions:
35+
36+
Git Graph: Visualizes Git branches and commits in a graph view.
37+
Project Manager: Manages multiple projects within a single workspace.
38+
Code Spell Checker: Checks spelling in code comments and strings.
39+
بهترین افزونه‌های مربوط به پایتون برای ویژوال استودیو کد، افزونه‌هایی هستند که به شما کمک می‌کنند تا کد پایتون خود را سریع‌تر و آسان‌تر بنویسید، تست کنید و اشکال‌زدایی کنید.
40+
41+
در اینجا برخی از بهترین افزونه‌های پایتون برای ویژوال استودیو کد آورده شده است:
42+
43+
Python IntelliSense
44+
45+
این افزونه پیشنهادات تکمیل کد هوشمندی را برای پایتون ارائه می‌دهد. این افزونه به شما کمک می‌کند تا کدهای خود را سریع‌تر و دقیق‌تر بنویسید.
46+
47+
Python Debugging
48+
49+
این افزونه به شما کمک می‌کند تا کد پایتون خود را اشکال‌زدایی کنید. این افزونه به شما امکان می‌دهد تا نقاط توقف را تنظیم کنید، مراحل اجرا را مشاهده کنید و مقادیر متغیرها را بررسی کنید.
50+
51+
Python Test Explorer
52+
53+
این افزونه به شما کمک می‌کند تا تست‌های پایتون خود را مدیریت کنید. این افزونه به شما امکان می‌دهد تا تست‌ها را اجرا کنید، نتایج تست‌ها را مشاهده کنید و تست‌ها را به صورت خودکار اجرا کنید.
54+
55+
PythonDocstring Generator
56+
57+
این افزونه به شما کمک می‌کند تا مستندات پایتون خود را ایجاد کنید. این افزونه به شما امکان می‌دهد تا مستندات را به صورت خودکار ایجاد کنید یا مستندات خود را به صورت دستی ویرایش کنید.
58+
59+
Python Linting
60+
61+
این افزونه به شما کمک می‌کند تا کد پایتون خود را بررسی کنید. این افزونه خطاها و هشدارهای احتمالی را در کد شما شناسایی می‌کند.
62+
63+
Python Formatter
64+
65+
این افزونه به شما کمک می‌کند تا کد پایتون خود را فرمت کنید. این افزونه کد شما را به صورت یکپارچه و خوانا فرمت می‌کند.
66+
67+
Python Snippets
68+
69+
این افزونه به شما کمک می‌کند تا کد پایتون خود را سریع‌تر بنویسید. این افزونه کدهای از پیش تعریف شده‌ای را ارائه می‌دهد که می‌توانید از آن‌ها استفاده کنید.
70+
71+
علاوه بر این افزونه‌های اصلی، افزونه‌های دیگری نیز وجود دارند که می‌توانند برای توسعه پایتون مفید باشند. برخی از این افزونه‌ها عبارتند از:
72+
73+
Pylance
74+
75+
این افزونه یک تکمیل کد هوشمند و یک سیستم اشکال‌زدایی پیشرفته را ارائه می‌دهد.
76+
77+
Jupyter Notebook
78+
79+
این افزونه به شما امکان می‌دهد تا Jupyter Notebooks را در ویژوال استودیو کد باز کنید و ویرایش کنید.
80+
81+
PyCharm Professional Edition for VS Code
82+
83+
این افزونه ویژگی‌های پیشرفته‌ای از PyCharm را به ویژوال استودیو کد اضافه می‌کند.
84+
85+
انتخاب بهترین افزونه‌های پایتون برای ویژوال استودیو کد به نیازها و ترجیحات شما بستگی دارد. با این حال، افزونه‌های ذکر شده در بالا، یک نقطه شروع عالی هستند.

0 commit comments

Comments
 (0)