diff --git a/dbfp.py b/dbfp.py index 701320d..8bb6e3f 100644 --- a/dbfp.py +++ b/dbfp.py @@ -127,31 +127,6 @@ def parseArgs(): else: parser.print_help() - # return - - - # if (args.pull): - # fingerprintDir() - # return - - # if (args.file is None) or (args.fp is None) or (args.pull is None): - # parser.print_help() - # return - - # # compare a sqlite database file to all fingerprints - # if (args.fp and args.fpdir): - # compareFingerprintDir(args.file, args.fp, args.fpdir) - # return - - # # compare a sqlite database file to a fingerprint - # if (args.fp): - # compareFingerprint(args.file, args.fp) - # return - - # # create a fingerprint from the sqlite file - # filename = toolbox.ToolBox.parseFilename(args.file) - # fileout = filename + "_" + timestr + '.json' - # createFingerprint(args.file, fileout, args.verbose, args.app_name, args.app_version, args.notes) if __name__ == "__main__": diff --git a/libs/fingerprint_comp.py b/libs/fingerprint_comp.py deleted file mode 100644 index 188bdc7..0000000 --- a/libs/fingerprint_comp.py +++ /dev/null @@ -1,23 +0,0 @@ -# -# -# -from libs import fingerprint - - -class FingerprintRunner: - """ - Compare Finger Prints from a directory - """ - - # - def __init__(self): - return - - # - def dirCompare(self, folder): - return - - - def compareFingerprint(self, fp1, fp2): - pass -