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
In order to improve the capabilities of the resolver, it might be interesting to add the source of the value. E.g:
def resolver(t, source): print(t, source) return barely_json.default_resolver(t, source) barely_json.parse("{hello: world}", resolver=resolver) barely_json.parse("[hi, {hello: world}]", resolver=resolver)
hello key world value hi item hello key world value
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In order to improve the capabilities of the resolver, it might be interesting to add the source of the value. E.g:
The text was updated successfully, but these errors were encountered: