|
|
|
@ -5,7 +5,7 @@ while True:
|
|
|
|
|
choice = input('Enter Participant ID (or quit): ')
|
|
|
|
|
if choice == 'quit':
|
|
|
|
|
break
|
|
|
|
|
r = requests.post(base + '/' + device + 'Post',data={'id':choice})
|
|
|
|
|
r = requests.post(base + '/' + device + 'Post',params={'id':choice})
|
|
|
|
|
if r.status_code is 200:
|
|
|
|
|
print('Updated')
|
|
|
|
|
else:
|
|
|
|
|