Filters are supported through Thrift. Here is an HappyBase example:
table = connection.table("mytable") g = table.scan(filter="SingleColumnValueFilter ('f', 'column1', =, 'substring:text')") for key, data in g: print data
Also check out the Thrift book for information on the various filters and their configuration.
source share