Initial commit

This commit is contained in:
2016-12-27 19:38:56 -07:00
commit bace104fdd
1636 changed files with 125236 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
class ${1:``Snippet_PythonClassNameFromFilename()``}(${2:data}):
${3}

View File

@@ -0,0 +1,2 @@
def ${1:name}(${2:data}):
${3}

View File

@@ -0,0 +1,3 @@
for ${1:var} in ${2:type}:
${3:pass}
${4}

View File

@@ -0,0 +1,2 @@
from ${1:module} import ${2:name}
${3}

View File

@@ -0,0 +1,3 @@
def get_${1:name}(self):
return self._$1
${2}

View File

@@ -0,0 +1,2 @@
if __name__ == '__main__':
${1}

View File

@@ -0,0 +1,2 @@
import ${1:module}
${2}

View File

@@ -0,0 +1,2 @@
def __init__(self, ${1:args}):
${2}

View File

@@ -0,0 +1 @@
def set_${1:name}(self, ${2:value}):

View File

@@ -0,0 +1,4 @@
try:
${1}
except ${2:Exception}
${3}