in XML RPC you can search for models with arguments like this:
args = [( "name", "=", category_values['name']),]
but what other operator exists beside =, <=, >= ?
in this instance I'm searching for something that acts like MYSQL's LIKE
name LIKE %category_values['name']%
Is this even possible here?