-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcreate_table_jsons.py
executable file
·73 lines (62 loc) · 1.97 KB
/
create_table_jsons.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import os
import argparse
import logging
import hkkang_utils.file as file_utils
logger = logging.getLogger("JSON Converter")
def main(src_path: str, dst_path: str) -> None:
# Read in csv file
data = file_utils.read_csv_file(src_path)
# Gather information
dic = {}
for row in data:
table_name = row["table_name"]
if table_name not in dic:
dic[table_name] = []
dic[table_name].append(row)
# Write to json file
for table_name, value in dic.items():
# Create column informations
columns = []
for item in value:
columns.append({
"name": item["column_name"],
"description": "",
"key": False,
"type": item["data_type"],
})
meta_info = {
"name": table_name,
"description": "",
"schemaColor": "#91C4F2",
"columns": columns,
}
dst_file_path = os.path.join(dst_path, f"{table_name}.json")
logger.info(f"Write {table_name} to {dst_file_path}")
os.makedirs(os.path.dirname(dst_file_path), exist_ok=True)
file_utils.write_json_file(meta_info, dst_file_path)
def parse_args():
parser = argparse.ArgumentParser(description="Convert .csv to json files")
parser.add_argument(
"--src_path",
type=str,
help="Path to the source csv file.",
default="output.csv",
)
parser.add_argument(
"--dst_dir",
type=str,
help="Path to the destination directory (to save JSON files).",
default="web/databases/cars/tables",
)
return parser.parse_args()
if __name__ == "__main__":
logging.basicConfig(
format="[%(asctime)s %(levelname)s %(name)s] %(message)s",
datefmt="%m/%d %H:%M:%S",
level=logging.INFO,
)
args = parse_args()
src_path = args.src_path
dst_path = args.dst_dir
main(src_path, dst_path)
logger.info("Done!")