aboutsummaryrefslogtreecommitdiff
path: root/gn3/utility/db_tools.py
blob: 446acda197bab2f13bfce107837c0f305c1e057a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""module for db_tools"""
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_):
    """escape function"""
    return escape_(string_).decode('utf8')