Browse Source

request uri

master
Andreas Demmelbauer 4 years ago
parent
commit
e296cafbd6
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      ir-remote-timer.py

+ 3
- 3
ir-remote-timer.py View File

@@ -29,12 +29,12 @@ def turnAllProjectorsOff():
class Simple(resource.Resource):
isLeaf = True
def render_GET(self, request):
print(request.prepath)
print(request)
statustext = ""
if request.prepath == "on":
if request.uri == "/on":
statustext = "turn all projectors on ..."
turnAllProjectorsOn()
if request.prepath == "off":
if request.uri == "/off":
statustext = "turn all projectors off ..."
turnAllProjectorsOff()
else:


Loading…
Cancel
Save