Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: #! /usr/bin/python import os from gps import * from time import * import time import threading import MySQLdb import re conn = MySQLdb.connect(host= "localhost", user="root", passwd="root", db="gps") gpsd = None #seting the global variable os.system('clear') #clear the terminal (optional) time_to_use = strftime("%Y_%m_%d-%H_%M_%S", gmtime()) time_to_use = "track_"+time_to_use class GpsPoller(threading.Thread): def _ […]
↧