-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathpython.snip
163 lines (134 loc) · 3.06 KB
/
python.snip
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
snippet #!
abbr #!/usr/bin/env python3
alias shebang
options head
#!/usr/bin/env python3
${0}
snippet class
abbr class Class(...): ...
options head
class ${1:#:name}(${2:object}):
def __init__(self, ${3}):
${0:pass}
snippet classd
abbr class Class(...): "..."
options head
class ${1:#:name}(${2:object}):
"""${3:#:class documentation}"""
def __init__(self, ${4}):
"""${5:#:__init__ documentation}"""
${0:pass}
snippet def
abbr def function(...): ...
options head
def ${1:#:name}(${2}):
${0:pass}
snippet defd
abbr def function(...): """..."""
options head
def ${1:#:name}(${2}):
"""${3:#:function documentation}"""
${0:pass}
snippet defm
abbr def method(self, ...): ...
options head
def ${1:#:name}(self, ${2}):
${0:pass}
snippet defmd
abbr def method(self, ...): "..."
options head
def ${1:#:name}(self, ${2}):
"""${3:#:method documentation}"""
${0:pass}
snippet elif
abbr elif ...: ...
options head
elif ${1:#:condition}:
${0:pass}
snippet else
abbr else: ...
options head
else:
${0:pass}
snippet with_open
alias fileidiom
options head
with open(${1:#:file}, '${2:r}') as ${3:f}:
${0:pass}
snippet for
abbr for ... in ...: ...
options head
for ${1:#:value} in ${2:#:list}:
${0:pass}
snippet if
abbr if ...: ...
options head
if ${1:#:condition}:
${0:pass}
snippet ifmain
abbr if __name__ == '__main__': ...
alias main
options head
if __name__ == '__main__':
${0:pass}
snippet tryexcept
abbr try: ... except ...: ...
options head
try:
${1:pass}
except ${2:#:ExceptionClass}:
${3:pass}
snippet tryfinally
abbr try: ... finally: ...
options head
try:
${1:pass}
finally:
${2:pass}
snippet while
abbr while ...: ...
options head
while ${1:#:condition}:
${0:pass}
snippet with
abbr with {func}({file}) as :
options head
with ${1:open}(${2:#:filename, mode}) as ${3:f}:
${0:pass}
snippet filter
abbr [x for x in {list} if {condition}]
[$1 for ${1:x} in ${2:#:list} if ${3:#:condition}]
snippet print
options word
print(${0:#:TARGET})
snippet coding
abbr # -*- coding ...
# -*- coding: utf-8 -*-
snippet getattr
abbr getattr(..., ...)
options word
getattr(${1:#:obj}, ${2:#:attr})
snippet setattr
abbr setattr(..., ...)
setattr(${1:#:obj}, ${2:#:attr}, ${3:#:value})
snippet hasattr
abbr hasattr(..., ...)
options word
hasattr(${1:#:obj}, ${2:#:attr})
snippet pdb
abbr import pdb..
import pdb; pdb.set_trace()
snippet ipdb
abbr import ipdb..
import ipdb; ipdb.set_trace()
snippet pudb
abbr import pudb..
import pudb; pudb.set_trace()
snippet qtpdb
abbr removeInputHook...pdb
from PyQt5.QtCore import pyqtRemoveInputHook
pyqtRemoveInputHook()
import pdb; pdb.set_trace()
snippet ipy
abbr import ipython..
from IPython import embed; embed()