plyse icon indicating copy to clipboard operation
plyse copied to clipboard

Easy and extensible query parser

Results 6 plyse issues
Sort by recently updated
recently updated
newest added

### Allow pyparsing>3.0 (backwards compatible) Using tip of tree `plyse` with pyparsing >=3.0 causes errors due to `operatorPrecedence` being renamed to `infixNotation` and `ParsingElement.name` to `ParsingElement.customName`. ### Test fixes `grammar_from_config_test.py`...

Hello, I'm trying to run the example: ```python from plyse import QueryParser, GrammarFactory parser = QueryParser(GrammarFactory.build_default()) query = parser.parse("hello world") ``` And I'm getting the following exception: ``` TypeError Traceback...

* Now plyse can work with list patterns like `department:[qa, dev]` * Update README. Add example with Container * Extend tests to check new feature * Pin pyparsing to

The library already has 1.0.4 version. Let's publish the update on pypi

Hope you find this PR useful! This also fixes a few faux-pas items that mypy found - duplicate imports (fixed by adding `__all__` to a module) - impossible-to-use params on...

How can I achieve a Lucene proximity operator in Plyse ? `"happy birthday"~3` I use Plyse because i don't want to invest that much time in PyParsing, yet I really...