From ae719a9d543c920cbda56cd66387be079617f92c Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Wed, 17 Dec 2025 00:15:55 +0200 Subject: [PATCH] fix(parser): Improve response to json conversion --- scrapling/parser.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/scrapling/parser.py b/scrapling/parser.py index 95b88ee..f7da3a9 100644 --- a/scrapling/parser.py +++ b/scrapling/parser.py @@ -939,8 +939,13 @@ class Selector(SelectorsGeneration): # Operations on text functions def json(self) -> Dict: """Return JSON response if the response is jsonable otherwise throws error""" - if self._raw_body and isinstance(self._raw_body, str): - return TextHandler(self._raw_body).json() + if self._raw_body and isinstance(self._raw_body, (str, bytes)): + if isinstance(self._raw_body, str): + return TextHandler(self._raw_body).json() + else: + if TYPE_CHECKING: + assert isinstance(self._raw_body, bytes) + return TextHandler(self._raw_body.decode()).json() elif self.text: return self.text.json() else: