9 lines
301 B
Python
9 lines
301 B
Python
|
import requests
|
||
|
import time
|
||
|
|
||
|
while True:
|
||
|
data = requests.get("https://kelder.zeus.ugent.be/camera/api/info").json()
|
||
|
cammie_watchers = data['connections']['/']
|
||
|
r = requests.put('http://10.0.0.10/api/mailbox.json', json={'message':str(cammie_watchers), 'topic': 'cammie'})
|
||
|
time.sleep(1)
|