-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml-to-postgres.py
executable file
·88 lines (75 loc) · 2.79 KB
/
xml-to-postgres.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
77
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/env python
# Copyright (C) 2016 Jason Owen <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
A small script to load individual XML documents (one per file) into a column in
a table in a PostgreSQL database.
"""
import argparse
import psycopg2
def parse_args():
parser = argparse.ArgumentParser(
description='''
Load one or more XML documents into a PostgreSQL database. The
target database table must have one xml column (specified via the
`column` argument), and any other columns in the table must have
default values.
''',
epilog='''
See also the PostgreSQL table creation syntax
(https://www.postgresql.org/docs/current/sql-createtable.html) and
the PostgreSQL xml data type
(https://www.postgresql.org/docs/current/datatype-xml.html).
''',
)
parser.add_argument('user', help='user to connect to the database as')
parser.add_argument('dbname', help='database to connect to')
parser.add_argument('table', help='table to insert into')
parser.add_argument('column', help=('''column to insert into; the data type
of the column must be xml'''))
parser.add_argument('filename', nargs='*', default='-', help='''Filenames of
XML files to load''')
return parser.parse_args()
def load_xml_documents(user, dbname, table, column, filenames):
conn = psycopg2.connect("dbname={} user={}".format(args.dbname, args.user))
cur = conn.cursor()
insert_statement = (
"INSERT INTO {} ({}) VALUES (XMLPARSE (DOCUMENT %s))".format(
args.table,
args.column
)
)
for filename in filenames:
with open(filename) as xml_file:
xml = xml_file.read()
cur.execute(insert_statement, [xml])
conn.commit()
cur.close()
conn.close()
if __name__ == "__main__":
args = parse_args()
print("Database: {}, user: {}, table: {}, column: {}".format(
args.dbname,
args.user,
args.table,
args.column,
))
load_xml_documents(
args.user,
args.dbname,
args.table,
args.column,
args.filename
)