python-json-pointer icon indicating copy to clipboard operation
python-json-pointer copied to clipboard

Resolve JSON Pointers in Python

Results 18 python-json-pointer issues
Sort by recently updated
recently updated
newest added

Hi, Love this library. I'm using it for JsonPointing to an element inside a JSON schema. My schema files could be ~10k lines. When a member is not found, this...

Added `pyproject.toml`. Version is now fetched and populated automatically from git tags using `setuptools_scm`. Metadata stored in source files is fetched using `read_version`. Got rid of raw scripts, using `console_scripts`...

In #47 the question has come up whether to drop support for Python 2.7. I don't have any opinion on that yet, but I'd like to open the discussion. A...

``` >>> data = {} >>> set_pointer(data, "/cat/name", "whiskers") Traceback (most recent call last): File "......./jsonpointer.py", line 276, in walk return doc[part] KeyError: 'cat' During handling of the above exception,...

This commit updates the CLI arguments to accept either a file containing a json pointer expression, or an expression as a commandline argument: usage: jsonpointer [-h] (-f [POINTER_FILE] | -p...

The `jsonpointer` ver ~ 2 has the following issues parsing command line arguments: 1. It is not compatible with the `jsonpointer` ver ~ 1 2. It does not parse correctly...

Running python setup.py bdist_rpm in pythn2.7, I didnt test any other python versions. ``` warning: pypandoc module not found, could not convert Markdown to RST running bdist_rpm Traceback (most recent...

I am trying to document schema files using sphinx. Once I add the file path it throws this error ```Exception occurred: File "/Users/eyshika.agarwal/.virtualenvs/gui-intrinsic/lib/python3.7/site-packages/jsonpointer.py", line 279, in walk raise JsonPointerException("member '%s'...

needs-clarification

Json pointers which start with '#' are currently not supported. This adds support for them. **Note**: I am adding a dependency on `requests`, but I am not sure if that...

Hi! Was wondering what you think about @handrews' [Relative JSON Pointer](https://tools.ietf.org/html/draft-handrews-relative-json-pointer-01) specification. Do you feel it has a place within this library, or would you rather it be separate? (I...