initial commit

This commit is contained in:
Franzi 2023-03-14 09:55:54 +01:00
commit b70cbfbad8
Signed by: kunsi
GPG key ID: 12E3D2136B818350
10 changed files with 1741 additions and 0 deletions

27
service Normal file
View file

@ -0,0 +1,27 @@
#!/usr/bin/python
import time
import traceback
from hosted import api, node
def fetch_info():
info = api.device_info.get()
print >> sys.stderr, info
node["/device_info"](
dict(
description=info["description"],
location=info["location"],
)
)
if __name__ == "__main__":
while 1:
try:
fetch_info()
except:
traceback.print_exc()
finally:
time.sleep(15)