だから私はこのような文字列を持っています:
2012-01-01T00:00:00Z
これを、このフィールドを持つモデルに保存できるオブジェクトに変換できますか。
start_date = models.DateTimeField()
just need to parse this string into a datetime object.
Answers are here: How to parse an ISO 8601-formatted date?
so you can use dateutil.parser
or iso8601
modules.