Skip to content

Instantly share code, notes, and snippets.

@fsodogandji
Created May 29, 2013 12:10
Show Gist options
  • Save fsodogandji/5669825 to your computer and use it in GitHub Desktop.
Save fsodogandji/5669825 to your computer and use it in GitHub Desktop.
Template file for python
#!/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