Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm hosting my IronPython in a C# webapp like so:

var engine = Python.CreateEngine();
var scope = engine.CreateScope();
var script = Engine.CreateScriptSourceFromString(pythonCode, SourceCodeKind.Statements);
script.Execute(scope);

And my python code looks like this:

import clr
clr.AddReference('System.Core')

from System import DateTime
theDate = DateTime.Today()

Which generates this error:

IronPython.Runtime.Exceptions.ImportException: Cannot import name DateTime 

I've spent some time on Google and most of the code I found doesn't seem to work anymore.

My IronPython Runtime Version is v2.0.50727 - should I be upgrading? I'd have thought DateTime would've been in from early doors though?

share|improve this question
What exactly is the error message it gives you? Does python use brackets on properties? (If not, try DateTime.Today.) – Jon Skeet Sep 24 '09 at 16:31
2.0.50727 sounds like a CLR version number rather than an IronPython version number, btw. What version shows up if you just run ipy? – Jon Skeet Sep 24 '09 at 16:39

2 Answers

up vote 9 down vote accepted

Try adding a reference to mscorlib instead of System.Core. We changed the default hosting behavior at some point (2.0.1? 2.0.2?) so that this is done by default when hosting. You can do this from your hosting code with:

engine.Runtime.LoadAssembly(typeof(string).Assembly);
share|improve this answer
Thanks, that was spot on. – littlecharva Sep 29 '09 at 13:41

Just checked, and the problem is that you're trying to call Today as a method instead of a property. Try this instead (no need to add a reference to System.Core):

import clr
from System import DateTime
theDate = DateTime.Today
print theDate
share|improve this answer
Looking at the question, the error seems to be stemming from an import failure, rather than the fact that "Today" is being called as a function. – Rohit Sep 25 '09 at 3:15
@Rohit: We can't really tell, as we haven't been told what the error message is. With the brackets on you do get an error message... – Jon Skeet Sep 25 '09 at 6:30
The exception was firing on the import command, so it hadn't even reached the Today call. Thanks for your help anyway though. – littlecharva Sep 29 '09 at 13:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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