This repository was archived by the owner on Jun 25, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork35
cstrap/python-snippets
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Python snippets collections.
Initially ported from PyCharm, TextMate, SublimeText and other editors/IDEs.
If you'd like to contribute, feel free tosubmit a pull request on github
Thanks!
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 | ifname == "main" |
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 |
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) |
Abbreviation | Description |
---|---|
pdb | PDB set trace |
ipdb | iPDB set trace |
rpdb | rPDB set trace |
pudb | PuDB set trace |
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 |
Seechangelog for all changes and releases.
If you experience problems with the auto-formatting of certain snippets, make sure you have the optioneditor.tabCompletion
set ononlySnippets
oron
.
About
Python snippets for Visual Studio Code
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.
Contributors10
Uh oh!
There was an error while loading.Please reload this page.