我有一些要修改的广告系列,但我必须调用服务器并导出所有广告系列设置,以修改或添加所需的信息并将其发送回服务器。
我的修改存储在SQLite数据库中,因此,首先,我查询数据库以查找帐户ID(我可以在不同帐户中拥有许多广告系列),然后按每个帐户搜索广告系列。
theCursor.execute('SELECT * FROM SandboxPubTB')
rows = theCursor.fetchall()
for row in rows:
accounts.append(row[7])
for account in set(accounts):
theCursor.execute('SELECT CAMPAIGNNAME, CAMPAIGNID FROM SandboxPubTB WHERE ACCOUNTID =?', (account,) )
campaignRows = theCursor.fetchall()
for campaign in campaignRows:
campId= campaign[0] + "," + campaign[1] + "," + account
campaigns.append(campId)
我的campId列表的每个条目中都包含广告系列名称,广告系列ID和广告系列帐户ID。
此后,我遍历列表并将值分配给广告系列一级的变量:
for campaignNameId in set(campaigns):
campaignNameId = campaignNameId.split(',')
campaignName = campaignNameId[0]
campaignId = campaignNameId[1]
campaignAccount = campaignNameId[2]
现在是时候致电服务器以导出广告系列设置了
targetUrl = "https://sites.com/api/1.0/" + campaignAccount + "/campaigns/"+ campaignId
resp = requests.get(url=targetUrl, headers=header)
r = resp.json()
temp = r['publisher_bid_modifier']['values']
如果我打印温度,这就是我得到的:
[{
'target': 'msn-can',
'cpc_modification': 0.5
}, {
'target': 'msn-can-home',
'cpc_modification': 0.5
}, {
'target': 'smartify-journalistatecom',
'cpc_modification': 0.5
}, {
'target': 'foxnews-iosapp',
'cpc_modification': 1.22
}]
最后,这就是我遇到的问题。我想做的是遍历上面的字典列表,如果“ target”值存在并且“ cpc_modification”与数据库中的值不同,我将更改cpc值。如果不存在“目标”,我想将“目标”和“ cpc_modification”附加到字典列表中。
我成功完成了第一部分,但附加部分却有所不同。在elif中,即使我使用else,temp.append也会触发无限循环,我也不知道为什么。
for dt in r['publisher_bid_modifier']['values']:
#print(dt['target'])
#if dt['target']:
theCursor.execute('SELECT ADJUST, SITE FROM SandboxPubTB WHERE CAMPAIGNNAME =?', (campaignName,) )
campaignRows = theCursor.fetchall()
for t in campaignRows:
if t[1] == dt['target'] :
dt['cpc_modification'] = "{:.2f}".format((int(t[0]) / 100) + 1)
elif dt['target'] not in temp:
temp.append("{'target': "'" + t[1] + "'", 'cpc_modification': "'" + str(t[0]) + "'"}")
这很奇怪,因为我尝试使用局部变量来模拟相同的行为,并且似乎可以正常工作。
data = [{
"target": "publisher1",
"cpc_modification": 1.5
},
{
"target": "publisher2",
"cpc_modification": 0.9
}
]
for t in data:
if t['target'] == "publisher10":
t['cpc_modification'] = 1.9
else:
data.append({'target': 'publisher10', 'cpc_modification': 12})
print(t['target'], t['cpc_modification'])
print(data)
我已经尝试了很多事情,但我不知道出了什么问题。
答案 0 :(得分:1)
我相信您的问题就在这里。您正在遍历“数据”,但同时也在将其添加到“数据”。您应该创建一个新变量以附加到该变量。
temp = data
for t in data:
if t['target'] == "publisher10":
t['cpc_modification'] = 1.9
else:
temp.append({'target': 'publisher10', 'cpc_modification': 12})
print(t['target'], t['cpc_modification'])
print(temp)
我以here为例说明了我正在发生的事情