comparison scripts/create-metadata.py @ 969:5d788d2e8ffc

work in progress
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 07 Dec 2017 17:03:09 -0500
parents
children 9897a13772fb
comparison
equal deleted inserted replaced
968:32a34a143c27 969:5d788d2e8ffc
1 #! /usr/bin/env python
2
3 import sys, argparse
4 import cvutils
5
6
7 parser = argparse.ArgumentParser(description='The program displays the video.')
8 #parser.add_argument('-d', dest = 'siteDirectory', help = 'name of the directory for the site')#, required = True
9 parser.add_argument('-d', dest = 'databaseFilename', help = 'name of the metadata filename')
10 parser.add_argument('-s', dest = 'site', help = 'site id')
11
12 args = parser.parse_args()
13
14 print('Unfinished, look at methods in metadata module')