I have this code that adds 50 points to a user in my json file but I keep getting a 'dict' object has no attribute 'append'
when trying to append new users to the users:
def updateUsers(chan):
j = urllib2.urlopen('http://tmi.twitch.tv/group/user/' + chan + '/chatters')
j_obj = json.load(j)
with open('dat.dat', 'r') as data_file:
data = json.load(data_file)
for dat in data['users']:
if dat in j_obj['chatters']['moderators'] or j_obj['chatters']['viewers']:
data['users']['tryhard_cupcake']['Points'] += 50
else:
data['users'].append([dat]) # append doesn't work here
with open('dat.dat', 'w') as out_file:
json.dump(data, out_file)
What is the proper way of adding new objects/users to users
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…