import datetime
def convertTime(timestring,format):
return datetime.datetime.strptime(timestring, format)
where the format in this case would be "%a, %d %b %Y %H:%M:%S +0000". You can then take the datetime object and insert the value into the date field.
You can find more on formatting times here in section 8.1.7.
Enjoy