Created
April 15, 2016 01:59
-
-
Save motleytech/f6fb77d4c4099331d691e658ec523881 to your computer and use it in GitHub Desktop.
python starter snippet for atom
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.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