Skip to content

Instantly share code, notes, and snippets.

@j0lvera
Created December 8, 2014 06:06
Show Gist options
  • Save j0lvera/494fda7e173657c0ea5f to your computer and use it in GitHub Desktop.
Save j0lvera/494fda7e173657c0ea5f to your computer and use it in GitHub Desktop.
Python module structure
"""module docstring"""
# imports
# constants
# exception classes
# interface functions
# classes
# internal functions & classes
def main(...):
...
if __name__ == '__main__':
status = main()
sys.exit(status)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment