A lightweight, zero-dependency Python query parser — running live in your browser via WebAssembly.
AND, OR, NOT, parentheses, regex /pattern/flags, implicit AND| python flask | Implicit AND — both terms must match |
| python AND flask | Explicit AND — both terms must match |
| python OR ruby | Either term must match |
| NOT java | Term must not be present |
| python AND (django OR flask) | Grouping with parentheses |
| /\d+\.\d+/ | Regular expression matching |
| /error/i | Case-insensitive regex |
| "hello world" | Quoted phrase (exact match) |