将包含相同键的json列表中的值插入到MYSQL数据库中的两个不同值中

时间:2014-09-04 04:10:32

标签: python mysql json list dictionary

我有一个存储在json file1中的dicts列表,它们具有相同的键,但每个重复键有两个不同的值,如下所示。我想插入一个MySQL数据库,其中key匹配某个列,然后在从另一个json file2获取密钥后,将两个值插入say x和y列。这是因为我试图更新从json文件2创建的表,以包含来自json file1的dicts列表中的其他值

json file 1
[{"a": 0.022222222222162753,      
"b": 0.022222222222162753, 
"c":0.022222222222162753, 
"d": 0.022222222222162753,
"e": 2.6761620240410805e-12, 
"f": 0.022222222222162753},
{"a": 0.022222222222162753, 
"b": 0.022222222222162753, 
"c": 0.022222222222162753, 
"d": 0.022222222222162753, 
"e": 0.022222222222162753,
"f": 0.022222222222162753}]

json file 2
{"a":1,      
"b": 2, 
"c": 3, 
"d": 4,
"e": 5, 
"f": 6}

这是我的代码,用于根据与表单中的重复键匹配的列将结果加载到MySQL数据库中,Key | value one |在另一个json文件中找到密钥后,将值设为2。

 for line3 in open("json file 2.json"):
    jline3=json.loads(line3)
    url3 =jline1["url"]

    for line4 in open("json file 1.json"):
        jline4 = json.load(line4)
        computedHITS=jline2[url3]

        """cursor.execute( """
          """  UPDATE `RANKED`.`EVALINDEX`
            SET `HITS`= %s
            WHERE `URL` = %s """
            """,  (computedHITS, url3))"""
        print "Number of rows inserted: %d" % cursor.rowcount
        db.commit() """

2 个答案:

答案 0 :(得分:1)

加载整个文件。然后循环json2键并在pk在json1文件中时更新

>>> import json
>>> with open("file_2.json") as f2, open("file_1.json") as f1:
...     json_pks     = json.loads(f2.read())
...     json_updates = json.loads(f1.read())
...     for pk in json_pks:
...         x_value = json_updates[0].get(pk,'')
...         y_value = json_updates[1].get(pk,'')
...         
...         if x_value and y_value:
...             #db stuff
...             print "update YOUR_TABLE set x=%r,y=%r where YOUR_PK=%s" % (x_value,y_value,pk)
... 
update YOUR_TABLE set x=0.022222222222162753,y=0.022222222222162753 where YOUR_PK=a
update YOUR_TABLE set x=0.022222222222162753,y=0.022222222222162753 where YOUR_PK=c
update YOUR_TABLE set x=0.022222222222162753,y=0.022222222222162753 where YOUR_PK=b
update YOUR_TABLE set x=2.6761620240410805e-12,y=0.022222222222162753 where YOUR_PK=e
update YOUR_TABLE set x=0.022222222222162753,y=0.022222222222162753 where YOUR_PK=d
update YOUR_TABLE set x=0.022222222222162753,y=0.022222222222162753 where YOUR_PK=f

答案 1 :(得分:0)

您必须在json file1

中编写2个循环

必须像

for json_raw_data in open("json file 2.json"):
    # Load full json data at a time
    json_objects = json.loads(json_raw_data)
    #Loop over each dict in json data.
    for each_date in json_objects:
        #Do your operation