aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility/db_tools.py
blob: 6e19778ff48d79b372a4ab2e205205ee8959803e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from MySQLdb import escape_string as escape_


def create_in_clause(items):
    """Create an in clause for mysql"""
    in_clause = ', '.join("'{}'".format(x) for x in mescape(*items))
    in_clause = '( {} )'.format(in_clause)
    return in_clause


def mescape(*items):
    """Multiple escape"""
    return [escape_(str(item)).decode('utf8') for item in items]


def escape(string_):
    return escape_(string_).decode('utf8')