I'm having a nightmare of a time trying to get my dates in a suitable format to use across all of these things.
First I started with using datetime.datetime.now()
which works great in Python, and should allow me to compare them in sqlite when selecting from the database.
Google Charts however insists that my date and datetime objects be JavaScript objects in the form "Date(YYYY,MM,DD,hh,mm,ss)"
and doesn't seem to accept a date in any other format.
So, I started putting the dates in my database in this latter format only to realise I can't select particular dates because the notation is incompatible and I can't work on them in Python.
Someone please help, what's a way I can get my dates compatible across all 3 products?