Skip to content

Instantly share code, notes, and snippets.

@bmacauley
Last active December 15, 2015 12:49
Show Gist options
  • Save bmacauley/5263004 to your computer and use it in GitHub Desktop.
Save bmacauley/5263004 to your computer and use it in GitHub Desktop.
module skeleton, short version
#!/usr/bin/env python
"""
Module Docstring
"""
#
## Code goes here.
#
def main():
"""Testing Docstring"""
pass
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment