Is there a quick way to convert a string to a datetime object in Python WITHOUT having to specify the format?
I know I can do:
datetime.strptime('Sun 10 May 2015 13:54:36 -0700', '%a %d %b %Y %H:%M:%S %z')
But since this is the default format, is there someway to get it to autoparse? Seems like I should be able to just create a new object from this without having to specify the format since it is the default system format.