blob: 76d81f5e86ff0425dc54f220c247204f43e002bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import MySQLdb
import re
def get_cursor():
host = 'localhost'
user = 'webqtl'
passwd = 'webqtl'
db = 'db_webqtl'
con = MySQLdb.Connect(db=db, host=host, user=user, passwd=passwd)
cursor = con.cursor()
return cursor
def clearspaces(s, default=None):
if s:
s = re.sub('\s+', ' ', s)
s = s.strip()
return s
else:
return default
def to_dic(keys, values):
dic = {}
for i in range(len(keys)):
key = keys[i]
value = values[i]
dic[key] = value
return dic
|