Created
May 29, 2013 12:10
-
-
Save fsodogandji/5669825 to your computer and use it in GitHub Desktop.
Template file for python
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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# vim: ai ts=4 sts=4 et sw=4 nu | |
from __future__ import (unicode_literals, absolute_import, | |
division, print_function) | |
""" | |
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