示例#1
0
文件: brand.py 项目: gmist/1businka
def is_brand_exist(title):
    category = Brand.all().filter('title =', title)
    if category.count():
        return True
    return False