Open
Description
From @Granitosaurus at #25 (comment):
Not to derail this but I'd argue that implementing JSONpath[1] would actually be more fitting for parsel as it is xpath like. For example Jmespath doesn't support recursive queries (like //node xpath) while Jsonpath does (as $..node); also the whole protocol structure is much more similar to that of xpath.
Ideally it would be great to have both! More and more web is using json and would be great to have one good parser for both html and json.
1 - https://github.com/h2non/jsonpath-ng jsonpath implementation in Python