All Projects → cstrap → python-snippets

cstrap / python-snippets

Licence: other
Python snippets for Visual Studio Code

Projects that are alternatives of or similar to python-snippets

vscode-language-terraform
Adds support for the Terraform configuration language to Visual Studio Code
Stars: ✭ 58 (-9.37%)
Mutual labels:  vscode-snippets
gml-support
GameMaker Language Support in Visual Studio Code.
Stars: ✭ 36 (-43.75%)
Mutual labels:  vscode-snippets
awesome-flutter-snippets
Awesome Flutter Snippets is a collection snippets and shortcuts for commonly used Flutter functions and classes
Stars: ✭ 136 (+112.5%)
Mutual labels:  vscode-snippets
Symfony-code-snippets
Over 100 Symfony Code Snippets for PhP code And Over 80 Twig Code Snippets. Just type the letters 'sf' to get a list of all available Symfony Code Snippets. For Twig Just Type the Tag name and you will get AutoCompletion.
Stars: ✭ 15 (-76.56%)
Mutual labels:  vscode-snippets
vscode-cql
CQL language support for VS Code.
Stars: ✭ 15 (-76.56%)
Mutual labels:  vscode-snippets
Vscode-Emoji-Snippets
Visual Code Emoji Snippets 🚀😎
Stars: ✭ 56 (-12.5%)
Mutual labels:  vscode-snippets
vscode-icon-fonts
Snippets for popular icon fonts such as Font Awesome, Ionicons, Glyphicons, Octicons, Material Design Icons and many more!
Stars: ✭ 33 (-48.44%)
Mutual labels:  vscode-snippets
fast-arrow
A VSCode snippet to write JS arrow function really fast
Stars: ✭ 18 (-71.87%)
Mutual labels:  vscode-snippets
testcafe-snippets
Code snippets for TestCafe
Stars: ✭ 54 (-15.62%)
Mutual labels:  vscode-snippets
vscode-st
Extension for VS Code to support Structured Text language.
Stars: ✭ 94 (+46.88%)
Mutual labels:  vscode-snippets
vsc html5 boilerplate
This is a Visual Studio Code snippet extension for generating HTML 5 boilerplate code
Stars: ✭ 32 (-50%)
Mutual labels:  vscode-snippets
vscode-react-javascript-snippets
Extension for React/Javascript snippets with search supporting ES7+ and babel features
Stars: ✭ 782 (+1121.88%)
Mutual labels:  vscode-snippets
vscode-liquid-snippets
Shopify Liquid Template Snippets
Stars: ✭ 22 (-65.62%)
Mutual labels:  vscode-snippets
stencil-snippets
An extension to add some snippets on vs code
Stars: ✭ 21 (-67.19%)
Mutual labels:  vscode-snippets
vscode-saltstack
SaltStack extension for Microsoft Visual Studio Code
Stars: ✭ 26 (-59.37%)
Mutual labels:  vscode-snippets
getx snippets extension
An extension to accelerate the process of developing applications with flutter, aimed at everyone using the GetX package.
Stars: ✭ 142 (+121.88%)
Mutual labels:  vscode-snippets
VSCode-Bedrock-Development-Extension
An extension that provides support for files such as: .mcfunction, .json and .lang. Features include: completion, validations, formatters, diagnostics, cheat-sheets, code-actions, generation of files, and development tools to help develop Minecraft Bedrock Addons or Minecraft Education Edition.
Stars: ✭ 45 (-29.69%)
Mutual labels:  vscode-snippets

Python snippets

Python snippets collections.

Initially ported from PyCharm, TextMate, SublimeText and other editors/IDEs.

If you'd like to contribute, feel free to submit a pull request on github

Thanks!

Features

Base snippets

Abbreviation Description
env #!/usr/bin/env python
env3 #!/usr/bin/env python3
enc # -- coding=utf-8 --
enco # coding=utf-8
fenc from future import ...
fenco from future import ... (no -*-)
im import
fim from ... import ...
class New class
classd New dataclass
defs New method
def New function
dowhile Do while structure
adef Async function
property New property
enum New Enum
if if
for for
lambda lambda expression
while while
try try:except:
tryef try:except:else:finally:
trye try:except:else:
tryf try:except:finally:
s self
__ magic
ifmain if name == "main"

Comprehensions

Abbreviation Description
lc List comprehension
lcie List comprehension if else
lci List comprehension if filter
dc Dictionary comprehension
dci Dictionary comprehension if filter
sc Set comprehension
sci Set Comprehension if filter
gc Generator comprehension
gci Generator comprehension if filter

Unittest

Abbreviation Description
ase Assert equal
asne Assert not equal
asr Assert raises
ast Assert True
asf Assert False
asi Assert is
asint Assert is not
asino Assert is None
asinno Assert is not None
asin Assert in
asni Assert not in
as Assert
fail Fail (a test)

Debugging

Abbreviation Description
pdb PDB set trace
ipdb iPDB set trace
rpdb rPDB set trace
pudb PuDB set trace

Tkinter

Abbreviation Description
imtk Import Tkinter py2
imtk3 Import tkinter py3
config Root configuration
button Button
label Label
frame Frame
entry Entry
grid Grid
sticky Sticky
checkbutton Check button
mainloop Main loop
pack Pack
side Side
bind Bind
menu Menu
addcascade Add cascade
addcommand Add command
addseperator Add seperator

Release Notes

See changelog for all changes and releases.

Troubleshooting

If you experience problems with the auto-formatting of certain snippets, make sure you have the option editor.tabCompletion set on onlySnippets or on.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].