I have this code that adds 50 points to a user in my json file, but I keep getting 'dict' object has no attribute 'append'when I try to add new users to 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])
with open('dat.dat', 'w') as out_file:
json.dump(data, out_file)
What is the correct way to add new objects / users in users?
source
share