From 692ca6c17db83c6502efadfd4e30391d12085a2b Mon Sep 17 00:00:00 2001 From: sidya82 Date: Wed, 2 Apr 2014 20:53:59 +0200 Subject: [PATCH] =?UTF-8?q?=09modifi=C3=A9:=20=20=20=20=20=20=20=20=20supe?= =?UTF-8?q?rTornado.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- superTornado.py | 26 ++++---------------------- 1 file changed, 4 insertions(+), 22 deletions(-) diff --git a/superTornado.py b/superTornado.py index 3d4d501..c55f9b1 100644 --- a/superTornado.py +++ b/superTornado.py @@ -247,28 +247,10 @@ class WSocketHandler(BaseHandler,tornado.websocket.WebSocketHandler): Allow send the image in the websocket """ try : - - with open("temp","w") as temp : - socket.setdefaulttimeout(5) - f = urlopen(GlobalVars.urlCamera) - temp.write(f.read()) - temp.close() - with open("temp","r") as temp : - with open("temp2","w") as dest : - isData = False - for ligne in temp : - data = ligne.rstrip('\r\n') - if data =="--MOTOBIX_Fast_Serverpush--": - isData = False - if isData == True: - dest.write(data+"\n") - if data == "ENDSECTION EVENT" : - isData = True - dest.close() - temp.close() - - with open("temp2","r") as data : - encoded = base64.b64encode(data.read()) + socket.setdefaulttimeout(5) + f = urlopen(GlobalVars.urlCamera) + data = f.read() + encoded = base64.b64encode(data) f.close() self.write_message(encoded) GlobalVars.log.printL( "->Image Data Send : " + self.request.remote_ip, lvl.INFO)