This project contains the REST API backend for the JMESPath playground. It allows a user to save JMESPath queries and share them.
/anon/ : POST - Create a new JMESPath saved query. /anon/{uuid} : GET - Return info about a JMESPath query.
Payload for /anon/
{ "query": "jmespath.query", "data": {"input": "doc"}, }
- Create virtualenv
pip install -r requirements-dev.txt
.