部分一致検索はできないようだが、擬似的に行うことができる。 ただ、これも unicode がからむと少々注意が必要 下記を参考に helloworld.py にてテストしたが、 #!-*- coding:utf-8 -*- がきいているためか、 OK greetings = db.GqlQuery("SELECT * FROM Greeting where content >= :1 and content < :2 ", search_key, search_key + u"\uFFFD" ) NG # greetings = db.GqlQuery("SELECT * FROM Greeting where content >= :1 and content < :2 ", # search_key, urllib.unquote(search_key).decode("utf8")