Objective: with a shortcut, e.g. alt+d, insert
yyyy-mm-dd Ddd
Example of Ddd: Mon
I have the following code for an Autokey script
from datetime import datetime
keyboard.send_keys(datetime.now().strftime('%Y-%m-%d'))
That only gives me the date.
How should I expand the script to get the 3 character day too?