Skip to content

Instantly share code, notes, and snippets.

@benjamingeiger
Created July 24, 2015 19:32
Show Gist options
  • Save benjamingeiger/ed1c46fc8bd41f569cbe to your computer and use it in GitHub Desktop.
Save benjamingeiger/ed1c46fc8bd41f569cbe to your computer and use it in GitHub Desktop.
Python skeleton file.
#!/usr/bin/python
#
# Copyright (c) 2015 Benjamin Geiger <email.redacted>
"""
Module-specific doc string.
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import unicode_literals
from __future__ import print_function
import sys
if sys.version_info < (3, 0):
input = raw_input
#import numpy as np
#import scipy as sp
#import matplotlib.pyplot as plt
#import pandas as pd
def main():
print("Insert unit test here.")
if __name__ == "__main__":
main()
# vim: set et sw=4 ts=4:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment