Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active August 24, 2016 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/260cc5e7a3c981aef8019b5d01862658 to your computer and use it in GitHub Desktop.
Save kurozumi/260cc5e7a3c981aef8019b5d01862658 to your computer and use it in GitHub Desktop.
【Python】peeweeで部分一致のOR検索
import Page
import operator
clauses = [
(Page.title.contains("hoge")),
(Page.title.contains("fuga"))
]
Page.select().where(reduce(operator.or_, clauses))
"""
SELECT * FROM page WHERE (title LIKE '%hoge%' OR title LIKE '%huga%')
"""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment