Skip to content

Instantly share code, notes, and snippets.

@motleytech
Created April 15, 2016 01:59
Show Gist options
  • Save motleytech/f6fb77d4c4099331d691e658ec523881 to your computer and use it in GitHub Desktop.
Save motleytech/f6fb77d4c4099331d691e658ec523881 to your computer and use it in GitHub Desktop.
python starter snippet for atom
'.source.python':
'scaffolding':
'prefix': 'sca'
'body': '''
"""
module for doing module stuff
"""
__author__ = 'Motleytech <https://github.com/motleytech>'
def main():
"""
documentation for the main function goes here
"""
print 'What a cool module'
if __name__ == '__main__':
main()
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment