From b6500493294fc37719f6c5494b2ddd0882ac260c Mon Sep 17 00:00:00 2001 From: Mert Aksoy Date: Tue, 16 Nov 2021 23:17:04 +0300 Subject: [PATCH] Bugfix: Extracting data from byte response instead of string --- httpParser.py | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/httpParser.py b/httpParser.py index cd6cf8a..644630c 100644 --- a/httpParser.py +++ b/httpParser.py @@ -26,23 +26,20 @@ def parseHTTP(self, httpRes): Return: HTTP status code. """ - #print(">>>>",httpRes) - if(httpRes != None): - retParseResponse=str(httpRes).partition("+IPD,")[2] - #print(">>>>>>>>>>>>>>>>>",retParseResponse) - retParseResponse=retParseResponse.split(r"\r\n\r\n"); - #print(">>>>>>>>>>>>>>>>>",retParseResponse[0]) - self.__httpResponse = retParseResponse[1] - #print(">>>>>>>>>>>>>>>>>???",retParseResponse[1]) - self.__httpHeader=str(retParseResponse[0]).partition(":")[2] - #print("--",self.__httpHeader) + if httpRes is not None: + self.__httpResponse = httpRes.split(b'\r\n\r\n')[3] + + header = str(httpRes.split(b'\r\n\r\n')[2], 'utf-8') + self.__httpHeader = header[header.index('HTTP'):] + for code in str(self.__httpHeader.partition(r"\r\n")[0]).split(): if code.isdigit(): - self.__httpErrCode=int(code) - - if(self.__httpErrCode != 200): - self.__httpResponse=None - + self.__httpErrCode = int(code) + break + + if self.__httpErrCode != 200: + self.__httpResponse = None + return self.__httpErrCode else: return 0 pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy