json-repair 0.12.1__py3-none-any.whl → 0.12.3__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.
@@ -127,7 +127,7 @@ class JSONParser:
127
127
  self.context = ""
128
128
  obj[key] = value
129
129
 
130
- if (self.get_char_at() or "") == ",":
130
+ if (self.get_char_at() or "") in [",", "'", '"']:
131
131
  self.index += 1
132
132
 
133
133
  # Remove trailing spaces
@@ -177,15 +177,15 @@ class JSONParser:
177
177
 
178
178
  # Flag to manage corner cases related to missing starting quote
179
179
  fixed_quotes = False
180
- double_double_quotes = False
180
+ double_delimiter = False
181
181
  lstring_delimiter = rstring_delimiter = '"'
182
182
  if isinstance(string_quotes, list):
183
183
  lstring_delimiter = string_quotes[0]
184
184
  rstring_delimiter = string_quotes[1]
185
185
  elif isinstance(string_quotes, str):
186
186
  lstring_delimiter = rstring_delimiter = string_quotes
187
- if lstring_delimiter == '"' and self.get_char_at(1) == '"':
188
- double_double_quotes = True
187
+ if self.get_char_at(1) == lstring_delimiter:
188
+ double_delimiter = True
189
189
  self.index += 1
190
190
  char = self.get_char_at()
191
191
  if char != lstring_delimiter:
@@ -247,7 +247,7 @@ class JSONParser:
247
247
  self.insert_char_at(rstring_delimiter)
248
248
  else:
249
249
  self.index += 1
250
- if double_double_quotes and self.get_char_at() == '"':
250
+ if double_delimiter and self.get_char_at() == rstring_delimiter:
251
251
  self.index += 1
252
252
 
253
253
  return self.json_str[start:end]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: json_repair
3
- Version: 0.12.1
3
+ Version: 0.12.3
4
4
  Summary: A package to repair broken json strings
5
5
  Author-email: Stefano Baccianella <4247706+mangiucugna@users.noreply.github.com>
6
6
  License: MIT License
@@ -0,0 +1,7 @@
1
+ json_repair/__init__.py,sha256=p9mZnte8Bg18NcxqgJ7vopH2gQv_XbZ0dRnk686QuRE,92
2
+ json_repair/json_repair.py,sha256=363JdAjrrpgVWvt5FOLoSHRPaq1oQoLsYsiX3yf7Z1k,14342
3
+ json_repair-0.12.3.dist-info/LICENSE,sha256=wrjQo8MhNrNCicXtMe3MHmS-fx8AmQk1ue8AQwiiFV8,1076
4
+ json_repair-0.12.3.dist-info/METADATA,sha256=_ZJNBrJWIGOPlyxJ0kOAPGIry2XBn6FLqWrxG93ijmA,6581
5
+ json_repair-0.12.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
6
+ json_repair-0.12.3.dist-info/top_level.txt,sha256=7-VZwZN2CgB_n0NlSLk-rEUFh8ug21lESbsblOYuZqw,12
7
+ json_repair-0.12.3.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- json_repair/__init__.py,sha256=p9mZnte8Bg18NcxqgJ7vopH2gQv_XbZ0dRnk686QuRE,92
2
- json_repair/json_repair.py,sha256=AHQhuR_pgK5WOeBOTxxV1GFF2NCJ9BR3eQyrbw5QG-0,14343
3
- json_repair-0.12.1.dist-info/LICENSE,sha256=wrjQo8MhNrNCicXtMe3MHmS-fx8AmQk1ue8AQwiiFV8,1076
4
- json_repair-0.12.1.dist-info/METADATA,sha256=V3VnWno65fWYped09KMIHrOM0XgOrWTZm3tzO9f347w,6581
5
- json_repair-0.12.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
6
- json_repair-0.12.1.dist-info/top_level.txt,sha256=7-VZwZN2CgB_n0NlSLk-rEUFh8ug21lESbsblOYuZqw,12
7
- json_repair-0.12.1.dist-info/RECORD,,