add command line args and env vars

This commit is contained in:
David Todd 2019-04-09 14:12:41 -05:00
parent f5ea583844
commit 777d70d7a4
1 changed files with 17 additions and 3 deletions

View File

@ -3,10 +3,24 @@
# Usage: ./GenThumb.py
from pathlib import Path
import getopt
import sys
import os
baseuri = "https://s3.wasabisys.com/c0de-photography/"
thumb_path = "./thumbs"
pathlist_file = "pathlist_EOS 30D:10.03.2015 - Jay Cooke:.txt" # Index file created by GenThumb.py
baseuri = os.environ.get('BASEURI',"https://s3.wasabisys.com/c0de-photography/")
thumb_path = os.environ.get('THUMBNAILS', "./thumbs")
try:
opts, args = getopt.getopt(sys.argv[1:],"hp:",["pathlist="])
except getopt.GetoptError:
print ('GenThumb.py -p <pathlist file>')
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print ('GenThumb.py -p <pathlist file>')
sys.exit()
elif opt in ("-p", "--pathlist"):
pathlist_file = arg # Index file created by GenThumb.py
template = """
<html>