Skip to content

Instantly share code, notes, and snippets.

@GuyAllard
GuyAllard / skeleton.py
Created March 16, 2016 10:51
A python script skeleton
#! /usr/bin/env python
"""
A skeleton python script which reads from an input file,
writes to an output file and parses command line arguments
"""
from __future__ import print_function
import sys
import argparse
def main():