Skip to content

Commit 6cb76e2

Browse files
committed
feat(docs): add TravisCI and PyPI badges
1 parent dc6aea0 commit 6cb76e2

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

README.rst

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Python JSONPath Next-Generation
2-
===============================
1+
Python JSONPath Next-Generation |Build Status| |PyPI| |Coverage Status| |PyPi downloads|
2+
========================================================================================
33

4-
A final implementation of JSONPath for Python, including arithmetic
4+
A final implementation of JSONPath for Python that aims to be standard compliant, including arithmetic
55
and binary comparison operators, as defined in the original `JSONPath proposal`_.
66

77
This packages merges both `jsonpath-rw`_ and `jsonpath-rw-ext`_ and
@@ -23,11 +23,15 @@ Quick Start
2323

2424
To install, use pip:
2525

26-
::
26+
.. code:: bash
2727
2828
$ pip install --upgrade jsonpath-ng
2929
30-
Then:
30+
31+
Usage
32+
-----
33+
34+
Basic examples:
3135

3236
.. code:: python
3337
@@ -286,13 +290,15 @@ This package is authored and maintained by:
286290

287291
- `Kenn Knowles <https://github.com/kennknowles>`__
288292
(`@kennknowles <https://twitter.com/KennKnowles>`__)
293+
- `Tomas Aparicio <https://github.com/h2non>`
289294

290295
with the help of patches submitted by `these contributors <https://github.com/kennknowles/python-jsonpath-ng/graphs/contributors>`__.
291296

292297
Copyright and License
293298
---------------------
294299

295300
Copyright 2013 - Kenneth Knowles
301+
296302
Copyright 2017 - Tomas Aparicio
297303

298304
Licensed under the Apache License, Version 2.0 (the "License"); you may
@@ -313,11 +319,13 @@ limitations under the License.
313319
.. _`jsonpath-rw`: https://github.com/kennknowles/python-jsonpath-rw
314320
.. _`jsonpath-rw-ext`: https://pypi.python.org/pypi/jsonpath-rw-ext/
315321

316-
.. |Build Status| image:: https://travis-ci.org/kennknowles/python-jsonpath-ng.png?branch=master
317-
:target: https://travis-ci.org/kennknowles/python-jsonpath-ng
318-
.. |Test coverage| image:: https://coveralls.io/repos/kennknowles/python-jsonpath-ng/badge.png?branch=master
319-
:target: https://coveralls.io/r/kennknowles/python-jsonpath-ng
320-
.. |PyPi version| image:: https://pypip.in/v/jsonpath-ng/badge.png
321-
:target: https://pypi.python.org/pypi/jsonpath-ng
322322
.. |PyPi downloads| image:: https://pypip.in/d/jsonpath-ng/badge.png
323323
:target: https://pypi.python.org/pypi/jsonpath-ng
324+
.. |Build Status| image:: https://travis-ci.org/h2non/jsonpath-ng.svg?branch=master
325+
:target: https://travis-ci.org/h2non/jsonpath-ng
326+
.. |PyPI| image:: https://img.shields.io/pypi/v/jsonpath-ng.svg?maxAge=2592000?style=flat-square
327+
:target: https://pypi.python.org/pypi/jsonpath-ng
328+
.. |Coverage Status| image:: https://coveralls.io/repos/github/h2non/jsonpath-ng/badge.svg?branch=master
329+
:target: https://coveralls.io/github/h2non/jsonpath-ng?branch=master
330+
.. |Documentation Status| image:: https://img.shields.io/badge/docs-latest-green.svg?style=flat
331+
:target: http://jsonpath-ng.readthedocs.io/en/latest/?badge=latest

0 commit comments

Comments
 (0)