Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*[“‘][a-z0-9\-_\!\$]+[“‘]': domain_list # =========================================================== def update_DB(lst): # open a database connection db = MySQLdb.connect(host="localhost", # your host, usually localhost user="root", # your username passwd="abcdef1234", # your password db="test") # name of the data base cur = db.cursor() a = [] for k, v in lst.items(): # now what should I do […]
↧