We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
parser = cysimdjson.JSONParser() json_parsed = parser.loads(json_bytes) # Access using JSON Pointer print(json_parsed.json_parsed['foo'])
bytes
parser.loads
str
json_parsed
print
I ended up doing something like:
parser.parse(payload).get_value()
I still have to validate that's what I need :) (at the moment I'm parsing only and not accessing the object)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bytes
toparser.loads
returns a TypeError: the param is expected to bestr
https://github.com/TeskaLabs/cysimdjson/blob/main/cysimdjson/cysimdjson.pyx#L454str
json_parsed
has nojson_parsed
element, like it is written in theprint
exampleI ended up doing something like:
I still have to validate that's what I need :)
(at the moment I'm parsing only and not accessing the object)
The text was updated successfully, but these errors were encountered: