Welcome to Search String Parser’s documentation!¶
Contents:
Overview¶
Search String Parser¶
docs | |
---|---|
tests | |
package |
Parse a more general search syntax to conform with a particular SQL dialect.
Currently, this is implemented using ply with a general lexer and a parser for generating PostgreSQL-specific search queries.
- Free software: BSD license
Installation¶
pip install searchstringparser
Documentation¶
Usage¶
To use Search String Parser in a project:
import searchstringparser
or directly import one of the lexers or parsers, e.g.,
>>> from searchstringparser import GeneralSearchStringLexer
>>> from searchstringparser import PostgreSQLTextSearchParser
You can then use an instance of the lexer for your own parser or parse a search query string.
>>> parser = PostgreSQLTextSearchParser()
>>> parser.parse("find my term")
'find & my & term'
Reference¶
Top-level package that exposes lexer and parser classes.
searchstringparser.lexer
¶
-
class
searchstringparser.lexer.general.
GeneralSearchStringLexer
(illegal='ignore', **kw_args)[source]¶ Bases:
object
-
__init__
(illegal='ignore', **kw_args)[source]¶ A composite class of a ply.lex.lex.
This is the setup step necessary before you can iterate over the tokens.
Parameters: - illegal ({'record', 'ignore', 'error'} (optional)) – Action to be taken when illegal characters are encountered. The default is to record them but continue without regarding them.
- kw_args – Keyword arguments are passed to the ply.lex.lex call.
-
get_illegal
()[source]¶ Return encountered illegal characters.
Returns: - None – If no illegal characters occurred.
- Tuple – A pair of lists that contain the illegal characters and the positions where they occurred.
-
Exposes the following classes:
searchstringparser.parser
¶
-
class
searchstringparser.parser.postgresql.
PostgreSQLTextSearchParser
(lexer=None, **kw_args)[source]¶ Bases:
object
This parser implements the following rules using the tokens generated by an appropriate lexer. The goal is to generate a string for PostgreSQL full text search that conforms with the syntax understood by the function tsquery or to_tsquery.
The following rules are implemented which generate the correct query string.
expression : expression expression | expression AND expression | expression OR expression | NOT expression | LPAREN expression RPAREN | QUOTE term QUOTE | WORD WILDCARD | WORD term : term SPACE term | term term | LITERAL_QUOTE | SYMBOL
-
__init__
(lexer=None, **kw_args)[source]¶ Parser instantiation.
Parameters: - lexer (ply.lex (optional)) – Any ply.lex lexer instance and generates the tokens listed in the rules. The default uses a GeneralSearchStringLexer instance.
- kw_args – Keyword arguments are passed to the ply.yacc.yacc call.
-
get_illegal
()[source]¶ Inspect encountered illegal characters.
Returns: - None – If no illegal characters occurred.
- Tuple – A pair of lists that contain the illegal characters and the positions where they occurred.
-
parse
(query, **kw_args)[source]¶ Parse any string input according to the rules.
Parameters: - query (str) – A string expected to conform with the search query syntax.
- kw_args – Keyword arguments are passed on to the ply.yacc.yacc.parse call.
Returns: A string that can directly be passed to the PostgreSQL functions tsquery or to_tsquery.
Return type: str
-
Exposes the following classes:
Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Types of Contributions¶
Report Bugs¶
Report bugs at https://github.com/AGHerwig/searchstringparser/issues.
If you are reporting a bug, please follow the presented issue template since it is designed to ultimately make helping you easier and thus faster.
Fix Bugs¶
Look through the GitHub issues for bugs. Anything tagged with “bug” and “help wanted” is open to whoever wants to implement it.
Implement Features¶
Look through the GitHub issues for features. Anything tagged with “enhancement” and “help wanted” is open to whoever wants to implement it.
Write Documentation¶
As any open source project, searchstringparser could always use more and better documentation, whether as part of the official docs, in docstrings, or even on the web in blog posts, articles.
Submit Feedback¶
The best way to send feedback is to file an issue at https://github.com/AGHerwig/searchstringparser/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome ;)
Get Started!¶
Ready to contribute? Here’s how to set up searchstringparser
for local development.
Fork the
searchstringparser
repo on GitHub.Clone your fork locally:
git clone git@github.com:<your_name_here>/searchstringparser.git
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
mkvirtualenv searchstringparser cd searchstringparser/ pip install -e .
Create a branch for local development:
git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
5. When you’re done making changes, check that your changes pass the quality control:
tox
To get tox, just pip install it into your virtualenv.
Commit your changes using semantic commit messages and push your branch to GitHub:
git add . git commit -m "feat: your detailed description of your changes" git push origin name-of-your-bugfix-or-feature
Submit a pull request to this repository through the GitHub website.
Authors¶
- Moritz Emanuel Beber - https://github.com/AGHerwig/searchstringparser
Changelog¶
0.3.0 (2018-10-04)¶
- Fix a bug in the token parser.
- Update the infrastructure.
0.2.3 (2015-09-29)¶
- Publish on PyPi
0.2.2 (2015-09-29)¶
- Complete documentation
0.2.1 (2015-09-28)¶
- Add more helpful error messages
0.2.0 (2015-09-28)¶
- Add complete integration with Travis, Appveyor, Coveralls, and Read the Docs
- Increase test coverage to 100%
- Make source compatible with Python 2.6 - 3.4
0.1.1 (2015-09-21)¶
- Fix GeneralSearchStringLexer regex
- Fix PostgreSQLTextSearchParser rules
- Add first set of tests
0.1.0 (2015-09-16)¶
- Initial class layout