if __name__ == "__main__":
default_project = os.environ.get("GCLOUD_PROJECT")
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
"filename", help="The path to the file to inspect.")
parser.add_argument(
"output_filename",
help="The path to which the redacted image will be written.")
parser.add_argument(
"--project",
help="The Google Cloud project id to use as a parent resource.",
default=default_project)
parser.add_argument(
"--info_types", action="append",
help="Strings representing info types to look for. A full list of "