I'm calling an IronPython script and passing it a .NET object that contains a DateTime structure.

I'm trying to use IronPython's JSON support to serialize the object as JSON.

Everything works great until I encounter the .NET DateTime.

How do I convert from the .NET DateTime to the IronPython datetime?

link|improve this question

Does the very last comment help? msdn.microsoft.com/en-us/library/… – keyboardP Jun 9 '11 at 17:30
It was slightly helpful. I can manually pull the fields out of the DateTime and construct a new datetime, but I was hoping for an easy way. It seems like this would be somewhat common. – ScArcher2 Jun 9 '11 at 17:47
feedback

2 Answers

up vote 7 down vote accepted

Anticipating that people might like to convert between these we actually make it really easy:

import datetime
from System import DateTime
datetime.datetime(DateTime.Now)
link|improve this answer
+1 Amazing, you right, i just tried this in a wrong console. – Artsiom Rudzenka Jun 10 '11 at 5:21
This is exactly what I was looking for! – ScArcher2 Jun 10 '11 at 13:17
feedback

As we now datetime type has the following structure: datetime(year, month, day[, hour[, minute[, second[, microsecond[, tzinfo]]]]]). So all that you need is to find a way how to fulfil required options. 'strptime' is not yet implemented(otherwise you will have ability to simply call datetime.datetime.strptime(DateTime.Now.ToString(format), format).strftime(format)) in IronPython so you can use the following code(not very optimized one) for now:

from System import DateTime

import datetime

d = DateTime.Now

print datetime.date(d.Year, d.Month, d.Day)
print datetime.datetime(d.Year, d.Month, d.Day, d.Hour, d.Minute, d.Second)
link|improve this answer
This is the solution I ended up using. – ScArcher2 Jun 9 '11 at 21:13
Me too. Think we both are wating now for the next iron python release with strptime realization – Artsiom Rudzenka Jun 9 '11 at 21:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.