Mercurial > hg > nsaunier > traffic-intelligence
view scripts/delete-object-tables.py @ 343:74e437ab5f11
first version of indicator loading code
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Fri, 21 Jun 2013 15:28:59 -0400 |
| parents | 1d90e9080cb2 |
| children |
line wrap: on
line source
#! /usr/bin/env python import sys,getopt import utils import storage options, args = getopt.getopt(sys.argv[1:], 'h',['help']) options = dict(options) if '--help' in options.keys() or '-h' in options.keys() or len(args) == 0: print('Usage: {0} --help|-h <database-filename.sqlite>'.format(sys.argv[0])) sys.exit() storage.removeObjectsFromSqlite(args[0])
