json-repair 0.35.0__py3-none-any.whl → 0.36.1__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- json_repair/json_parser.py +5 -1
- {json_repair-0.35.0.dist-info → json_repair-0.36.1.dist-info}/METADATA +2 -2
- {json_repair-0.35.0.dist-info → json_repair-0.36.1.dist-info}/RECORD +7 -7
- {json_repair-0.35.0.dist-info → json_repair-0.36.1.dist-info}/WHEEL +1 -1
- {json_repair-0.35.0.dist-info → json_repair-0.36.1.dist-info}/LICENSE +0 -0
- {json_repair-0.35.0.dist-info → json_repair-0.36.1.dist-info}/entry_points.txt +0 -0
- {json_repair-0.35.0.dist-info → json_repair-0.36.1.dist-info}/top_level.txt +0 -0
json_repair/json_parser.py
CHANGED
@@ -223,6 +223,10 @@ class JSONParser:
|
|
223
223
|
"While parsing an array we missed the closing ], adding it back",
|
224
224
|
)
|
225
225
|
self.index -= 1
|
226
|
+
# Add the missing closing bracket
|
227
|
+
self.json_str = (
|
228
|
+
self.json_str[: self.index + 1] + "]" + self.json_str[self.index + 1 :]
|
229
|
+
)
|
226
230
|
|
227
231
|
self.index += 1
|
228
232
|
self.context.reset()
|
@@ -585,7 +589,7 @@ class JSONParser:
|
|
585
589
|
i += 1
|
586
590
|
next_c = self.get_char_at(i)
|
587
591
|
while next_c and next_c != ":":
|
588
|
-
if next_c
|
592
|
+
if next_c in [",", "]", "}"] or (
|
589
593
|
next_c == rstring_delimiter
|
590
594
|
and self.get_char_at(i - 1) != "\\"
|
591
595
|
):
|
@@ -1,13 +1,13 @@
|
|
1
1
|
json_repair/__init__.py,sha256=c4L2kZrHvWEKfj_ODU2naliNuvU6FlFVxtF0hbLe6s8,178
|
2
2
|
json_repair/__main__.py,sha256=EsJb-y89uZEvGQQg1GdIDWzfDwfOMvVekKEtdguQXCM,67
|
3
3
|
json_repair/json_context.py,sha256=mm6dOyrPJ1sDskTORZSXCW7W9-5veMlUKqXQ3Hw3EG4,971
|
4
|
-
json_repair/json_parser.py,sha256=
|
4
|
+
json_repair/json_parser.py,sha256=VPpOVHHQwFLzI5iX3lLWHrNos2MRJ7cSdjW-lRaI1MA,35771
|
5
5
|
json_repair/json_repair.py,sha256=LINLSJBs3cJMfs1YRDaIpfWR5PJLs87Oe06G5yQjY18,9729
|
6
6
|
json_repair/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
json_repair/string_file_wrapper.py,sha256=koZmdq2-Z5K7XF1bDqX6dEbNaVMJYcMTjq-aGe6NQvA,4526
|
8
|
-
json_repair-0.
|
9
|
-
json_repair-0.
|
10
|
-
json_repair-0.
|
11
|
-
json_repair-0.
|
12
|
-
json_repair-0.
|
13
|
-
json_repair-0.
|
8
|
+
json_repair-0.36.1.dist-info/LICENSE,sha256=wrjQo8MhNrNCicXtMe3MHmS-fx8AmQk1ue8AQwiiFV8,1076
|
9
|
+
json_repair-0.36.1.dist-info/METADATA,sha256=VI-dvPj7yc3-Vq397F1nVCFxEaG6LzVu1t9zkQGloiE,11794
|
10
|
+
json_repair-0.36.1.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
11
|
+
json_repair-0.36.1.dist-info/entry_points.txt,sha256=SNfge3zPSP-ASqriYU9r3NAPaXdseYr7ciPMKdV2uSw,57
|
12
|
+
json_repair-0.36.1.dist-info/top_level.txt,sha256=7-VZwZN2CgB_n0NlSLk-rEUFh8ug21lESbsblOYuZqw,12
|
13
|
+
json_repair-0.36.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|