From an API response, I am getting the following value for 'created_at' field:
{'created_at': u'Mon Jul 08 12:00:16 +0000 2013'}
In order to convert 'Mon Jul 08 12:00:16 +0000 2013
' to python datetime
object, I have tried different cases with 'datetime.strptime()
' but nothing found working.
Can anyone suggest a solution for this.