Below is a discussion of use cases that I'd like to solve with a package format for the web. There's also a list of requirements on the final solution.
Finally a list of use cases that I don't think we should aim to solve.
#! /usr/bin/python | |
import sys, re | |
checkedVersion = False | |
ignoredHeaders = False | |
with open(sys.argv[1], 'rU') as csvfile: | |
for row in csvfile: | |
if not checkedVersion: |
Below is a discussion of use cases that I'd like to solve with a package format for the web. There's also a list of requirements on the final solution.
Finally a list of use cases that I don't think we should aim to solve.