mirror of
https://github.com/LouisShark/chatgpt_system_prompt.git
synced 2025-07-06 23:00:34 -04:00
10 lines
219 B
Python
10 lines
219 B
Python
import datetime
|
|
|
|
def update_time():
|
|
current_time = datetime.datetime.now().isoformat()
|
|
with open('time_tracker.txt', 'w') as file:
|
|
file.write(current_time)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
update_time()
|