Skip to content

Instantly share code, notes, and snippets.

@bmacauley
Last active December 15, 2015 12:49
Show Gist options
  • Save bmacauley/5263025 to your computer and use it in GitHub Desktop.
Save bmacauley/5263025 to your computer and use it in GitHub Desktop.
module skeleton, long version alternate
#!/usr/bin/env python
# -*- coding: ascii -*-
"""
package.module
~~~~~~~~~~~~~
A description which can be long and explain the complete
functionality of this module even with indented code examples.
Class/Function however should not be documented here.
:copyright: year by my name, see AUTHORS for more details
:license: license_name, see LICENSE for more details
"""
#
## Code goes here.
#
def test():
""" """
pass
if __name__=='__main__':
test()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment