This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
zippylite/README.md

35 lines
717 B
Markdown

# 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.