I don't know how to correctly insert values into a mysql database.
I think it's a pretty simple fix but I'm new to mysql.
...
sqllist = "INSERT INTO station_fenelon (date, time, outsidetemp, outsidehumidity) VALUES (%s, %s, %f, %f)"
record = [('2019-06-21', '12:12:11', '414.44', '42.4')]
cursor.execute(sqllist, record)
sql.commit()
I get the error: Not all parameters were used in the SQL statement