File size: 250 Bytes
5f81bcf
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import json
from datetime import datetime

def log_question(question):
    log_entry = {"question": question, "timestamp": str(datetime.now())}
    with open("data/weekly_tracker.json", "a") as f:
        f.write(json.dumps(log_entry) + "\n")