Search Results

5
votes

What’s the simplest way to access mssql with python or ironpython?

Everyone else seems to have the cPython -> SQL Server side covered. If you want to use IronPython, you can use the standard ADO.NET API to talk to the database: import clr clr.AddRe …
1
vote

Scientific data visualization and the .NET framework

At Resolver Systems we're working on a project called Ironclad, which will …
1
vote

Ironpython Studio forms question

I'm not totally clear on the problem. You can certainly define a subclass of System.Windows.Forms.Form in IronPython in one module, and then import the form subclass in some other modu …
5
votes

Issues with embedding IronPython 2 in a C# web application

Once the assembly's loaded, you can execute the import in the Scope you're using to run the script: ScriptEngine engine = Python.CreateEngine(); engine.Runtime.LoadAsse …
1
vote

Referencing an Assembly in the Application Path

The way we generally add references at work is the following: import sys import clr # forward slashes work fine here and don't need to be escaped sys.path.append('c:/path/to/directo …
3
votes

Has anyone used SciPy with IronPython?

Some of my workmates are working on Ironclad, a project that will make extension modules for CPython work in IronPython. It's still i …
1
vote

how to sort list of FileInfo in IronPython

The Pythonic way of doing this would be: fileInfos = list(DirectoryInfo(path).GetFiles()) fileInfos.sort(key=lambda f: f.CreationTime, reverse=True) The list sort …
-1
votes

Catching Ironpython Exception in C#

The way IronPython maps .NET exceptions to Python ones isn't always straightforward - a lot of exceptions are reported as SystemError (although if you import the .NET exception type you can specify …
1
vote

Ironclad import error

Ironclad is still a work in progress - it doesn't support every function in the Python C API yet. The developers are adding new ones as they encounter them when trying to get specific extension mod …
0
votes

IronPython 2.0 executes code slowly.

There are definitely some things that are much slower in IronPython than they are in Python. Often this is because you're hitting a weird corner case in the implementation. It's worth trying to red …
0
votes

Unhandled GeneratorExitException thrown while importing library in embedded IronPython

Not really an answer (I don't have access to IronPython here), but if you try running this script: import traceback try: import random except: traceback.print_exc() …
1
vote

Python: stop execution after a maximum time

If you don't need CPython-compatible code (it doesn't sound like you do), you could use the .NET fac …