我收到的是在某一特定日期按以下格式從Twitter發送Twitter消息:從Twitter日期將Python的日期時間日期
Tue Mar 29 08:11:25 +0000 2011
我想這些日期店內「時間戳和時區」 postgresql中的字段與djangos DateTimeField字段。當我存儲的字符串,但是我得到這個錯誤:
ValidationError: [u'Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format.']
我可以自動變換嘰嘰喳喳datetype爲Python日期時間的時間(即沒有在我的應用程序的其他地方工作,保存日期)。
我更喜歡這種方法,因爲它甚至適用於不同於+0000的時區(儘管Twitter總是使用+0000)。 Django方面也更好地使用utc timezone進行日期時間識別(請參閱[這個問題])(http://stackoverflow.com/questions/7065164/how-to-make-an-unaware-datetime-timezone-知道在Python中)) – caipirginka