You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example given in readme throws the following error:
json_parsed = parser.loads(json_bytes)
^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: Argument 'content' has incorrect type (expected str, got bytes)
Example copied from read me that throws this error:
importcysimdjsonjson_bytes=b'''{ "foo": [1,2,[3]]}'''parser=cysimdjson.JSONParser()
json_parsed=parser.loads(json_bytes)
# Access in a Python wayprint(json_parsed.json_parsed['foo'])
The text was updated successfully, but these errors were encountered:
Example given in readme throws the following error:
Example copied from read me that throws this error:
The text was updated successfully, but these errors were encountered: