Przeglądaj źródła

Updated .gitignore, added help for options

david 5 lat temu
rodzic
commit
4b014c546a
2 zmienionych plików z 6 dodań i 2 usunięć
  1. 1 0
      .gitignore
  2. 5 2
      dataLoad.py

+ 1 - 0
.gitignore

@@ -9,3 +9,4 @@ images/
 data/
 __pycache__/
 2019-10-05_18-24-46_beanzilla.png
+misery.json

+ 5 - 2
dataLoad.py

@@ -19,11 +19,14 @@ parser.add_argument("--download", help="Download Images", action="store_true")
 parser.add_argument("--train", help="Convert Images to Text", action="store_true")
 parser.add_argument("--quick", help="Quick convert Images to Text", action="store_true")
 parser.add_argument("--update", help="Update s0urce.js script", action="store_true")
-parser.add_argument("JSON", type=str, nargs="?", help="Filename to save results", default="test.js"
-)
+parser.add_argument("JSON", type=str, nargs="?", help="Filename to save results", default="test.js")
 args = parser.parse_args()
 # pprint(args)
 
+# Or perhaps have parser.print_help()
+if ( not args.download and not args.train and not args.quick and not args.update ):
+    parser.error("Need --download, --train, --quick, or --update")
+
 # httpbin.org/headers
 sess = requests.Session()
 head = {