-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_schema_extractor.py
76 lines (63 loc) · 2.09 KB
/
db_schema_extractor.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
74
75
76
#!/usr/bin/env python3
"""
DB Schema Extractor
This script connects to a PostgreSQL or CockroachDB database using credentials from a config file,
extracts the complete database schema (tables, columns, indexes, views, constraints, etc.),
and saves it to a file for use with LLMs like Claude or ChatGPT.
"""
import argparse
from config_manager import load_config, connect_to_db
from schema_generator import generate_schema_definition, schema_to_text
def main():
parser = argparse.ArgumentParser(
description="Extract database schema for LLM context."
)
parser.add_argument(
"-c", "--config", required=True, help="Path to the configuration file"
)
parser.add_argument("-o", "--output", required=True, help="Output file path")
parser.add_argument(
"-s", "--schema", default="public", help="Database schema (default: public)"
)
parser.add_argument(
"-f",
"--format",
choices=["json", "text"],
default="text",
help="Output format (default: text)",
)
parser.add_argument(
"--db-type",
choices=["postgres", "cockroachdb"],
help="Database type (auto-detected by default)",
)
args = parser.parse_args()
# Load configuration
try:
config = load_config(args.config)
except Exception as e:
print(f"Error loading config file: {e}")
return 1
# Connect to the database
conn = connect_to_db(config)
if not conn:
return 1
try:
# Generate schema definition
schema_info = generate_schema_definition(conn, args.schema)
# Save to file
with open(args.output, "w") as f:
if args.format == "json":
import json
json.dump(schema_info, f, indent=2)
else: # text format
f.write(schema_to_text(schema_info))
print(f"Schema extracted successfully to {args.output}")
except Exception as e:
print(f"Error generating schema: {e}")
return 1
finally:
conn.close()
return 0
if __name__ == "__main__":
exit(main())