sethblack / python-gift-exchange

pyge: Holiday Gift Exchange Picker
Apache License 2.0
250 stars 13 forks source link

Make Date Format Dynamic #1

Open sethblack opened 5 years ago

sethblack commented 5 years ago

Date format is in US MM/DD/YYYY and pretty much nobody else uses that format.

svmihar commented 5 years ago

how about converting it to datetime object?

so people could just format it according to their own need?

cwkingjr commented 1 year ago

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.