phpsysinfo.ini and 'databasepassword' in analyze.py for

update_birdnet.sh scripts
This commit is contained in:
Patrick McGuire
2021-11-29 17:13:44 -05:00
parent 08a843e6ca
commit 1740e87ca1
2 changed files with 11 additions and 10 deletions
+1 -1
View File
@@ -271,7 +271,7 @@ def main():
connection = mysql.connector.connect(host='localhost',
database='birds',
user='birder',
password='changeme')
password='databasepassword')
cursor = connection.cursor()
mySql_insert_query = """INSERT INTO detections (Date, Time, Sci_Name, Com_Name, Confidence, Lat, Lon, Cutoff, Week, Sens, Overlap)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s) """