林玮 (Jade Lin)
林玮 (Jade Lin)
#68 shows a bad example of how to remove the super class sub-extractors. But what's the right thing to do?
Add [elementpath](https://github.com/sissaschool/elementpath) for XPath2.0 support. Make it as a optional dependency.
- `python-json-rw` is not designed for iterable extracting - `lxml.xpath` is not designed for iterable extracting But implement `AbstractSimpleExtractor.iter_extract` and `AbstractComplexExtractor.iter_extract` can be able to reduce the memory usage when...
It supports a new syntax like `'$.goods[*].?category'`. Allow user to disable default behavior that filters the missing fields. Fixes #40 This PR is still in development progress, please use it...
Implements a simple and easy for usage syntax for object conversion. ## Functions ### Common Conversion ```python assert parse("${a:b, b:a}") \ .find({"a": 1, "b": 2}) == [{"b": 1, "a": 2}],...
Using type stub files to make static type checking instead of using annotations from source codes. ## Pros 1. Be able to remove the `typing-extensions` dependency from production release. ......