I'm pretty novice at programming (recently learned functions), and have found myself re-writing the same "insert into mysql table" function (below) from script to script... mainly to just modify these two section - (name,insert_ts) &&& VALUES (%s, %s)
Is there a good way to re-write the below to accept ANY number of values , based on length of a tuple that contains values as well as inserting the column headers based on 'labels' list? VALUES (%s, %s) and this part (name,insert_ts)
    list_of_tuples = [] #list of records to be inserted.
    #take a list of dictionaries - and create a list of tuples in proper format/order
    for dict1 in output:
            one_list = []
            one_list.extend((dict1['name'],dict1['insert_ts']))
            list_of_tuples.append(tuple(one_list))
    labels = ['name', 'insert_ts']
    #db_write accepts table name as str, labels as str, and output as list of tuples
    def db_write(table,labels,output):
        local_cursor.executemany(""" INSERT INTO my_table 
        (name,insert_ts)  #this is pulled from 'labels'
          VALUES (%s, %s)   #number of %s comes from len(labels)
        """
        ,  list_of_tuples)
        local_db.commit()
        local_db.close()
        #print 'done posting!'
Or, is there a better way to accomplish what I'm trying to do, using mysqldb?
Thank you all in advance!
