util/generate-hugo-content.py: read schema from CSV

Read the schema fields from CSV instead of Excel now that there is
a copy here in the repository.
This commit is contained in:
Alan Orth 2021-12-07 22:57:09 +02:00
parent 2074dfe8ce
commit 0265e97a2b
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ parser.add_argument(
parser.add_argument(
"-i",
"--input-file",
help="Path to schema fields file (idss_schema_fields.xlsx).",
help="Path to schema fields file (schema-fields.csv).",
required=True,
type=argparse.FileType("r"),
)
@ -198,7 +198,7 @@ os.makedirs("site/content/terms", mode=0o755, exist_ok=True)
if args.debug:
print(f"Opening {args.input_file.name}")
df = pd.read_excel(args.input_file.name)
df = pd.read_csv(args.input_file.name)
# Added inplace=True
df.dropna(how="all", axis=1, inplace=True)
df.fillna("", inplace=True)