Skip to content

Instantly share code, notes, and snippets.

@oconnoat
Last active August 29, 2015 13:56
Show Gist options
  • Save oconnoat/8821507 to your computer and use it in GitHub Desktop.
Save oconnoat/8821507 to your computer and use it in GitHub Desktop.
template for a new python file
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" docstring """
import os
import sys
import argparse
import logging
__author__ = "Alexander O'Connor <Alex.OConnor@scss.tcd.ie>"
__copyright__ = "Copyright 2014, Alexander O'Connor <Alex.OConnor@scss.tcd.ie>"
__credits__ = ["Alexander O'Connor <Alex.OConnor@scss.tcd.ie>"]
__license__ = "Copyright"
__version__ = "0.1"
__email__ = "Alexander O'Connor <Alex.OConnor@scss.tcd.ie>"
__status__ = "Prototype"
if __name__ == "__main__":
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment