split make misc for time and date stuff

This commit is contained in:
2022-11-18 01:29:34 -05:00
parent 6af3828c70
commit c66f6e7bbf
2 changed files with 5 additions and 7 deletions

4
misc.py Normal file
View File

@@ -0,0 +1,4 @@
import time
from datetime import datetime, date
currDay = datetime.now()
currDay = currDay.strftime('%m-%d-%Y')