如何使用Python将JSONB插入到Postgresql中?

时间:2017-09-22 23:13:21

标签: python json postgresql psycopg2 jsonb

我是python和postgresql的新手

我一直在用python编写每个json行的硬编码,我不认为这是可扩展的方法。如果有人可以指向我可以处理从python插入json而无需硬编码的文献或文档。

我已经调查了COPY。

2 个答案:

答案 0 :(得分:2)

import json

data = [1, [2,3], {'a': [4,5]}]
my_json = json.dumps(data)
insert_query = "insert into t (j) values (%s) returning j"
cursor.execute(insert_query, (my_json,))
print (cursor.fetchone()[0])

输出:

[1, [2, 3], {'a': [4, 5]}]

答案 1 :(得分:1)

使用dataset + psycopg2

import dataset

def construct_pg_url(postgres_user='postgres', postgres_password='', postgres_host='localhost', postgres_port='5432', postgres_database='postgres'):
    PG_URL = "postgresql://" + postgres_user + ":" + postgres_password + '@' + postgres_host + ':' + postgres_port + '/' + postgres_database
    return PG_URL

pgconn = dataset.Database(
             url=construct_pg_url(),
             schema='my_schema'
)
table = pgconn['my_table']
rows = [dict(foo='bar', baz='foo')] * 10000
table.insert_many(rows)