chg: [tools] fix the attribution confidence level

pull/370/head
Alexandre Dulaunoy 2019-03-19 16:49:19 +01:00
parent 095b0a4d81
commit 6e19d21d3a
No known key found for this signature in database
GPG Key ID: 09E2CD4944E6CBCD
1 changed files with 5 additions and 1 deletions

View File

@ -16,7 +16,11 @@ with open(args.filename) as json_file:
for value in data['values']:
if value.get('meta'):
if not value.get('meta').get('attribution-confidence') and (value.get('meta').get('cfr-suspected-state-sponsor') or value.get('meta').get('country')):
value.get('meta')['attribution-confidence'] = 50
value.set('meta')['attribution-confidence'] = "50"
elif value.get('meta').get('attribution-confidence') and (value.get('meta').get('cfr-suspected-state-sponsor') or value.get('meta').get('country')):
value.get('meta')['attribution-confidence'] = str(value.get('meta').get('attribution-confidence'))
with open(args.filename, 'w') as json_file:
json.dump(data, json_file, indent=2, sort_keys=True, ensure_ascii=False)