File size: 317 Bytes
8fcf809 |
1 2 3 4 5 6 7 8 9 10 11 12 |
import time
import csv
def add_line(path, data_row):
"""
data_row: list, [API_name, username, time]
"""
now_time = time.strftime('%Y-%m-%d-%H:%M:%S', time.localtime())
data_row.append(now_time)
with open(path, "a+") as f:
csv_write = csv.writer(f)
csv_write.writerow(data_row) |