From f24f0aebc609742412852f52fc4779f65e801d46 Mon Sep 17 00:00:00 2001 From: eleith Date: Sun, 9 Apr 2017 23:06:57 -0700 Subject: [PATCH] add readme --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/README.md b/README.md index e69de29..0dd0511 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,34 @@ +# zippylite + +unzip a bunch of csv files and import than into an sqlite database, all from the command line + +## REQUIREMENTS + +a zip file containing csv files of data. the names of the csv files will become your tables and the first row of each csv file will be your columns. all column types will be of type TEXT. + +## INSTALLING + +TBD + +## EXAMPLE USAGE + +``` +chmod 700 zippylite.js +./zippylite.js -f path/to/archive.zip -o database.sqlite +``` + +## Authors + +eleith + +## Testing + +TBD + +## Contributions + +issues and pull requests are welcome + +## MISC + +the original intent of this exercise was to produce a sqlite table from [caltrain's zipped data](http://www.caltrain.com/developer.html) for use in my android caltrain app.