json-repair 0.19.0__py3-none-any.whl → 0.19.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- json_repair/json_repair.py +9 -0
- {json_repair-0.19.0.dist-info → json_repair-0.19.1.dist-info}/METADATA +1 -1
- json_repair-0.19.1.dist-info/RECORD +7 -0
- json_repair-0.19.0.dist-info/RECORD +0 -7
- {json_repair-0.19.0.dist-info → json_repair-0.19.1.dist-info}/LICENSE +0 -0
- {json_repair-0.19.0.dist-info → json_repair-0.19.1.dist-info}/WHEEL +0 -0
- {json_repair-0.19.0.dist-info → json_repair-0.19.1.dist-info}/top_level.txt +0 -0
json_repair/json_repair.py
CHANGED
@@ -309,6 +309,15 @@ class JSONParser:
|
|
309
309
|
string_acc += char
|
310
310
|
self.index += 1
|
311
311
|
char = self.get_char_at()
|
312
|
+
if len(string_acc) > 1 and string_acc[-1] == "\\":
|
313
|
+
# This is a special case, if people use real strings this might happen
|
314
|
+
self.log("Found a stray escape sequence, normalizing it", "info")
|
315
|
+
string_acc = string_acc[:-1]
|
316
|
+
if char in [rstring_delimiter, "t", "n", "r", "b", "\\"]:
|
317
|
+
escape_seqs = {"t": "\t", "n": "\n", "r": "\r", "b": "\b"}
|
318
|
+
string_acc += escape_seqs.get(char, char)
|
319
|
+
self.index += 1
|
320
|
+
char = self.get_char_at()
|
312
321
|
# ChatGPT sometimes forget to quote stuff in html tags or markdown, so we do this whole thing here
|
313
322
|
if char == rstring_delimiter:
|
314
323
|
# Special case here, in case of double quotes one after another
|
@@ -0,0 +1,7 @@
|
|
1
|
+
json_repair/__init__.py,sha256=IIzSm1DsCRrr8seF3UeMZXwxcq-tE3j-8d1WBxvEJvE,178
|
2
|
+
json_repair/json_repair.py,sha256=5viwB7G8T9EyYRsJpCxZPZChmgDkaT1WQ7oxFUjm5Lg,24349
|
3
|
+
json_repair-0.19.1.dist-info/LICENSE,sha256=wrjQo8MhNrNCicXtMe3MHmS-fx8AmQk1ue8AQwiiFV8,1076
|
4
|
+
json_repair-0.19.1.dist-info/METADATA,sha256=FlAtvarNR4sXKlNYr7VDedyScl7t8UgqyDyNZ2NIS10,7333
|
5
|
+
json_repair-0.19.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
6
|
+
json_repair-0.19.1.dist-info/top_level.txt,sha256=7-VZwZN2CgB_n0NlSLk-rEUFh8ug21lESbsblOYuZqw,12
|
7
|
+
json_repair-0.19.1.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
json_repair/__init__.py,sha256=IIzSm1DsCRrr8seF3UeMZXwxcq-tE3j-8d1WBxvEJvE,178
|
2
|
-
json_repair/json_repair.py,sha256=ORf1wm6wTXriTJBtCJtoFU4rEw4daAoqV0ktdyhcOT0,23775
|
3
|
-
json_repair-0.19.0.dist-info/LICENSE,sha256=wrjQo8MhNrNCicXtMe3MHmS-fx8AmQk1ue8AQwiiFV8,1076
|
4
|
-
json_repair-0.19.0.dist-info/METADATA,sha256=Mj5le5SqwFzYmWGZWu5JbjZNqX4cYPP_h1XpQDYNeOI,7333
|
5
|
-
json_repair-0.19.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
6
|
-
json_repair-0.19.0.dist-info/top_level.txt,sha256=7-VZwZN2CgB_n0NlSLk-rEUFh8ug21lESbsblOYuZqw,12
|
7
|
-
json_repair-0.19.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|