Initial commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
class ${1:``Snippet_PythonClassNameFromFilename()``}(${2:data}):
|
||||
${3}
|
||||
@@ -0,0 +1,2 @@
|
||||
def ${1:name}(${2:data}):
|
||||
${3}
|
||||
@@ -0,0 +1,3 @@
|
||||
for ${1:var} in ${2:type}:
|
||||
${3:pass}
|
||||
${4}
|
||||
@@ -0,0 +1,2 @@
|
||||
from ${1:module} import ${2:name}
|
||||
${3}
|
||||
@@ -0,0 +1,3 @@
|
||||
def get_${1:name}(self):
|
||||
return self._$1
|
||||
${2}
|
||||
@@ -0,0 +1,2 @@
|
||||
if __name__ == '__main__':
|
||||
${1}
|
||||
@@ -0,0 +1,2 @@
|
||||
import ${1:module}
|
||||
${2}
|
||||
@@ -0,0 +1,2 @@
|
||||
def __init__(self, ${1:args}):
|
||||
${2}
|
||||
@@ -0,0 +1 @@
|
||||
def set_${1:name}(self, ${2:value}):
|
||||
@@ -0,0 +1,4 @@
|
||||
try:
|
||||
${1}
|
||||
except ${2:Exception}
|
||||
${3}
|
||||
Reference in New Issue
Block a user