summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCooper Benson <cooper@amprobotics.com>2018-08-20 17:14:09 -0600
committerCooper Benson <cooper@amprobotics.com>2018-08-20 17:14:09 -0600
commit2af7dd8113d04cd7b2bcd8db9da534169cf2f055 (patch)
tree503d5642531a7dc14716b261bae6ce5742022dd8
parent90cb7c5decaee0efbdcc6aa18c1e8ebdf9ed297f (diff)
downloadjsonpath-rw-2af7dd8113d04cd7b2bcd8db9da534169cf2f055.tar.gz
Updating README
-rw-r--r--README.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index a6ef686..2811fd4 100644
--- a/README.rst
+++ b/README.rst
@@ -6,7 +6,7 @@ https://github.com/kennknowles/python-jsonpath-rw
|Build Status| |Test coverage| |PyPi version| |PyPi downloads|
This library provides a robust and significantly extended implementation
-of JSONPath for Python. It is tested with Python 2.6, 2.7, 3.2, 3.3.
+of JSONPath for Python. It is tested with Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, and 3.6.
*(On travis-ci there is a segfault when running the tests with pypy; I don't think the problem lies with this library)*.
This library differs from other JSONPath implementations in that it is a
@@ -51,7 +51,7 @@ Then:
>>> [match.value for match in parse('a.*.b.`parent`.c').find({'a': {'x': {'b': 1, 'c': 'number one'}, 'y': {'b': 2, 'c': 'number two'}}})]
['number two', 'number one']
- # You can also build expressions directly quite easily
+ # You can also build expressions directly quite easily
>>> from jsonpath_rw.jsonpath import Fields
>>> from jsonpath_rw.jsonpath import Slice
@@ -205,7 +205,7 @@ This package is authored and maintained by:
- `Kenn Knowles <https://github.com/kennknowles>`__
(`@kennknowles <https://twitter.com/KennKnowles>`__)
-
+
with the help of patches submitted by `these contributors <https://github.com/kennknowles/python-jsonpath-rw/graphs/contributors>`__.
Copyright and License