python-gift-exchange
python-gift-exchange copied to clipboard
Make Date Format Dynamic
Date format is in US MM/DD/YYYY and pretty much nobody else uses that format.
how about converting it to datetime object?
so people could just format it according to their own need?
I'd recommend just using the ISO-8601 date format of YYYY-MM-DD. It's far less confusing then any local formats that swap months and days, is generally understood, and has the bonus of being (simply) sortable.