python-jsonpath 1.2.0__py3-none-any.whl → 1.2.1__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.
- jsonpath/__about__.py +1 -1
- jsonpath/filter.py +1 -2
- {python_jsonpath-1.2.0.dist-info → python_jsonpath-1.2.1.dist-info}/METADATA +6 -6
- {python_jsonpath-1.2.0.dist-info → python_jsonpath-1.2.1.dist-info}/RECORD +7 -7
- {python_jsonpath-1.2.0.dist-info → python_jsonpath-1.2.1.dist-info}/WHEEL +1 -1
- {python_jsonpath-1.2.0.dist-info → python_jsonpath-1.2.1.dist-info}/entry_points.txt +0 -0
- {python_jsonpath-1.2.0.dist-info → python_jsonpath-1.2.1.dist-info}/licenses/LICENSE.txt +0 -0
jsonpath/__about__.py
CHANGED
jsonpath/filter.py
CHANGED
|
@@ -243,8 +243,7 @@ class RegexLiteral(Literal[Pattern[str]]):
|
|
|
243
243
|
if self.value.flags & flag:
|
|
244
244
|
flags.append(ch)
|
|
245
245
|
|
|
246
|
-
|
|
247
|
-
return f"/{pattern}/{''.join(flags)}"
|
|
246
|
+
return f"/{self.value.pattern}/{''.join(flags)}"
|
|
248
247
|
|
|
249
248
|
|
|
250
249
|
class ListLiteral(FilterExpression):
|
|
@@ -1,13 +1,12 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: python-jsonpath
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1
|
|
4
4
|
Summary: JSONPath, JSON Pointer and JSON Patch for Python.
|
|
5
5
|
Project-URL: Documentation, https://jg-rp.github.io/python-jsonpath/
|
|
6
6
|
Project-URL: Issues, https://github.com/jg-rp/python-jsonpath/issues
|
|
7
7
|
Project-URL: Source, https://github.com/jg-rp/python-jsonpath
|
|
8
8
|
Author-email: James Prior <jamesgr.prior@gmail.com>
|
|
9
|
-
License
|
|
10
|
-
License-File: LICENSE.txt
|
|
9
|
+
License: MIT
|
|
11
10
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
11
|
Classifier: Intended Audience :: Developers
|
|
13
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -18,6 +17,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
21
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
22
22
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
23
23
|
Requires-Python: >=3.7
|
|
@@ -91,9 +91,9 @@ conda install -c conda-forge python-jsonpath
|
|
|
91
91
|
|
|
92
92
|
## Related projects
|
|
93
93
|
|
|
94
|
-
- [
|
|
94
|
+
- [JSONPath RFC 9535](https://github.com/jg-rp/python-jsonpath-rfc9535) - A Python implementation of JSONPath that follows RFC 9535 much more strictly. If you require maximum interoperability with JSONPath implemented in other languages - at the expense of extra features - choose [jsonpath-rfc9535](https://pypi.org/project/jsonpath-rfc9535/) over [python-jsonpath](https://pypi.org/project/python-jsonpath/).
|
|
95
95
|
|
|
96
|
-
|
|
96
|
+
jsonpath-rfc9535 matches RFC 9535's JSONPath model internally and is careful to use the spec's terminology. It also includes utilities for verifying and testing the [JSONPath Compliance Test Suite](https://github.com/jsonpath-standard/jsonpath-compliance-test-suite). Most notably the nondeterministic behavior of some JSONPath selectors.
|
|
97
97
|
|
|
98
98
|
- [JSON P3](https://github.com/jg-rp/json-p3) - RFC 9535 implemented in TypeScript. JSON P3 does not include all the non-standard features of Python JSONPath, but does define some optional [extra syntax](https://jg-rp.github.io/json-p3/guides/jsonpath-extra).
|
|
99
99
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
jsonpath/__about__.py,sha256=
|
|
1
|
+
jsonpath/__about__.py,sha256=fZwqcXYa7fis5VtXR9pq59PPTFieH72snrtRLodVYDA,132
|
|
2
2
|
jsonpath/__init__.py,sha256=bhEkdyCEv_5MS9J-VyMSRAyIRc-jmKFjLee8-3SYQ3U,2368
|
|
3
3
|
jsonpath/__main__.py,sha256=6Y5wOE7U-MHymopXOsxofaY30tVZYPGTJO0L4vytoUw,61
|
|
4
4
|
jsonpath/_data.py,sha256=JEpu5Kg0_kgxYKUilBcHVdTmPxf3-Vc0NgaW6olsqyY,577
|
|
5
5
|
jsonpath/cli.py,sha256=scpWfJXl1jLQ80ZyXqMCu8JtRgZUXluC11x6OkC4oeA,10026
|
|
6
6
|
jsonpath/env.py,sha256=EqlLT6_WE7WbChNs_xDipF7V8uGG3EnyKabJ_bstpGs,22815
|
|
7
7
|
jsonpath/exceptions.py,sha256=5n-9vaKTu5asWllHT0IN-824ewcNCyQIyKvQ58TERVk,4351
|
|
8
|
-
jsonpath/filter.py,sha256=
|
|
8
|
+
jsonpath/filter.py,sha256=b2s_QXjZvcefh7LfDTqSHM-hM5VYy4bpjn1IQRAjeO8,20637
|
|
9
9
|
jsonpath/fluent_api.py,sha256=mfAA2t-xUGOmGVr_1h9lxo3y4FsAvaxOpvOH8jZ4DHU,9117
|
|
10
10
|
jsonpath/lex.py,sha256=U99pjKxlGEIKM9QfH_8ax7X8ajJL4CI2TW3Lev2sZGM,10272
|
|
11
11
|
jsonpath/match.py,sha256=b8fkPHsYjJSrTEOi68MFEyOCj0-FoQjFmMq-Ex4qvo0,3503
|
|
@@ -28,8 +28,8 @@ jsonpath/function_extensions/match.py,sha256=KjsH33fCFGonp2RV__FuaeIOTwLLcvgaaCi
|
|
|
28
28
|
jsonpath/function_extensions/search.py,sha256=O11fnkHlbvf0QPrLISYfhlPXBvVPBr-U8V0dGbd614Y,710
|
|
29
29
|
jsonpath/function_extensions/typeof.py,sha256=yCAj9zOqSnam1mfHCGolNHWDmsBOvU3rAhbZDYycx50,1780
|
|
30
30
|
jsonpath/function_extensions/value.py,sha256=fQMbPUV87Jn1nOwAlBpTeLmLIG5ejH0XQBOM_SR-Us4,721
|
|
31
|
-
python_jsonpath-1.2.
|
|
32
|
-
python_jsonpath-1.2.
|
|
33
|
-
python_jsonpath-1.2.
|
|
34
|
-
python_jsonpath-1.2.
|
|
35
|
-
python_jsonpath-1.2.
|
|
31
|
+
python_jsonpath-1.2.1.dist-info/METADATA,sha256=IyrzLSPKYunQLWW6Pvav59ekGrCgqUWxe-5DemrIbSw,6394
|
|
32
|
+
python_jsonpath-1.2.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
33
|
+
python_jsonpath-1.2.1.dist-info/entry_points.txt,sha256=xvbWnAebJyOMI_9ugK0xrpFRlwmEsAJD2kNHU0Dvscc,43
|
|
34
|
+
python_jsonpath-1.2.1.dist-info/licenses/LICENSE.txt,sha256=u7PksAQGI1QYWcERHeauMseZ4XAzDKUrKW8Z4wbeU1k,1101
|
|
35
|
+
python_jsonpath-1.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|