unittest/scripts/py_dev_api_examples/building_expressions/Expression_Strings.py (1 lines of code) (raw):

# Using a string expression to get all documents that # have the name field starting with 'S' myDocs = myColl.find('name like :name').bind('name', 'S%').execute();