I need a Python Datetime in a yyyy-mm-dd format, but don't really know the best way to take something like this "Tuesday July 7, 2015" and turn it into that.
I'm assuming I would have to extract out the text for the day of the week, which is a pain because it can be any day of the week, once, i Have the rest of the format I could probably use Python built in Datetime to turn it from a string to a datetime object, but my question is, is this the best way?