IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily.

learn more… | top users | synonyms

29
votes
3answers
6k views

Instantiating a python class in C#

I've written a class in python that I want to wrap into a .net assembly via IronPython and instantiate in a C# application. I've migrated the class to IronPython, created a library assembly and ...
6
votes
5answers
8k views

Ironpython 2.6 .py -> .exe

I already attempted using py2exe (not compatible with ipy) and PYC (out of date). Can anyone point me in the direction of a good compiler?
44
votes
4answers
8k views

Django on IronPython

I am interested in getting an install of Django running on IronPython, has anyone had any success getting this running with some level of success? If so can you please tell of your experiences, ...
28
votes
9answers
11k views

IDE for ironpython on windows

I am currently learning ironpython and loving but i'm looking to move on from using notepad++ and cmd.exe and try using something with a bit more juice. I recently learned that iron python studio ...
18
votes
9answers
6k views

Iron python, beautiful soup, win32 app

Does beautiful soup work with iron python? If so with which version of iron python? How easy is it to distribute a windows desktop app on .net 2.0 using iron python (mostly c# calling some python code ...
15
votes
8answers
17k views

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

I've got mssql 2005 running on my personal computer with a database I'd like to run some python scripts on. I'm looking for a way to do some really simple access on the data. I'd like to run some ...
24
votes
6answers
38k views

Find and Replace Inside a Text File from a Bash Command

What's the simplest way to do a find and replace for a given input string, say abc, and replace with another string, say XYZ in file /tmp/file.txt? I am writting an app and using IronPython to ...
7
votes
1answer
3k views

IronPython: EXE compiled using pyc.py cannot import module “os”

I have a simple IronPython script: # Foo.py import os def main(): print( "Hello" ) if "__main__" == __name__: main() It runs fine and prints Hello if I run it with IronPython as: ipy ...
6
votes
2answers
2k views

How can I redirect the stdout of ironpython in C#?

public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button3_Click(object sender, EventArgs e) { try ...
8
votes
5answers
1k views

What is the equivalent of the C# “using” block in IronPython?

What's the equivalent of this in IronPython? Is it just a try-finally block? using (var something = new ClassThatImplementsIDisposable()) { // stuff happens here }
4
votes
4answers
6k views

How to use a C# dll in IronPython

I have created a dll using C#. How do use the dll in IronPython. I have tried to add the dll using clr.AddReference("yxz.dll"). But it fails. I have tried placing the dll in the execution directory of ...
2
votes
2answers
3k views

Where is Microsoft.Scripting.Core.dll?

I installed IronPython 2.6.1 on Windows Vista x64 on a machine with Visual Studio 2010 installed. I expected to find these DLLs: Microsoft.Scripting.Core.dll ...
2
votes
2answers
1k views

IronPython - Load script from string in C# 4.0 application

I have the following code (just a test): var engine = Python.CreateEngine(); var runtime = engine.Runtime; try { dynamic test = runtime.UseFile(@"d:\test.py"); ...
2
votes
2answers
855 views

Script arguments and Embedded IronPython

I have an embedded scripting engine in my C# application that uses IronPython 2. I create the Python runtime and add a few classes to the global namespace so that the script can import them as ...
1
vote
1answer
568 views

How can I pass command-line arguments in IronPython?

I am working with IronPython and have got it working somehow. Though, there seems to be no resource on passing command-line arguments to Iron Python. How can I pass command-line arguments to a python ...
0
votes
3answers
414 views

How to match two arrays

I have two arrays A = [a, b, c, d] and B = [a1, a2, b1, b2, b3, c1, c2, c3, d1, d2, d3, d4] I want to match between the two arrays. Match Result: [a : a1, a2] [b : b1, b2, b3] [c : c1, c2, c3] ...
16
votes
2answers
3k views

Debugging IronPython scripts in hosted (embedded) environment

I'm writing a C# application which has IronPython (2.0.1) embedded in it. The idea is to expose portions of the application to the IronPython scripts, which the users write. I want to provide the ...
9
votes
1answer
668 views

Sandbox IronPython?

Is it possible to run an IronPython interpreter inside my .Net application, but inside a sandbox? I want to deny the IP script access to the filesystem while still allowing the app itself access. ...
9
votes
2answers
3k views

Build Python scripts and call methods from C#

Is there any way to make this scenario work? There is a Python script. It is built into a DLL by running this script with IronPython: import clr clr.CompileModules("CompiledScript.dll", "script.py") ...
15
votes
5answers
2k views

F# vs IronPython: When is one preferred to the other?

While the languages F# and IronPython are technically dissimilar, there is large overlap between their potential uses in my opinion. When is one more applicable than the other? So far it look to me ...
6
votes
2answers
7k views

GUI development with IronPython and Visual Studio 2010

I'm teaching an introductory class to programming and GUI development using Python, and have found that the least overwhelming solution for students new to programming is to use Visual Studio for GUI ...
14
votes
2answers
4k views

How do I create a .NET assembly in IronPython and call it from C#?

I want to create an assembly using IronPython can call it from C#. Here are two things I am not asking. I'm not asking how to call C# from IronPython. The easiest documentation to find describes how ...
10
votes
3answers
4k views

How can I call (Iron)Python code from a C# app?

Is there a way to call Python code, using IronPython I assume, from C#? If so, how?
20
votes
7answers
5k views

Boo vs. IronPython

After having looked at each of these two projects, it seems that both are VERY similar. Both run on top of the CLI, both have python style syntax, both use .NET instead of the standard python ...
1
vote
4answers
2k views

Using SQL Alchemy and pyodbc with IronPython 2.6.1

I'm using IronPython and the clr module to retrieve SQL Server information via SMO. I'd like to retrieve/store this data in a SQL Server database using SQL Alchemy, but am having some trouble loading ...
9
votes
8answers
3k views

Extending C# .NET application - build a custom scripting language or not?

I need to build a scripting interface for my C# program that does system level testing of embedded firmware. My application contains libraries to fully interact with the devices. There are separate ...
7
votes
2answers
5k views

Slicing a dictionary by keys that start with a certain string

This is pretty simple but I'd love a pretty, pythonic way of doing it. Basically, given a dictionary, return the subdictionary that contains only those keys that start with a certain string. » d = ...
6
votes
2answers
2k views

Can't use DateTime in IronPython

I'm hosting my IronPython in a C# webapp like so: var engine = Python.CreateEngine(); var scope = engine.CreateScope(); var script = Engine.CreateScriptSourceFromString(pythonCode, ...
5
votes
1answer
2k views

IronPython ScriptRuntime equivalent to CPython PYTHONPATH

The following import works inside ipy.exe prompt but fails using IronPython ScriptRuntime inside a C# 4.0 program. import ConfigParser C# code: using System; using System.Collections.Generic; ...
4
votes
3answers
2k views

Embedding IronPython in C#

I am just looking into using IronPython with C# and cannot seem to find any great documentation for what I need. Basically I am trying to call methods from a .py file into a C# program. I have the ...
4
votes
1answer
1k views

How to host an IronPython engine in a separate AppDomain?

I have tried the obvious: var appDomain = AppDomain.CreateDomain("New Domain"); var engine = IronPython.Hosting.Python.CreateEngine(appDomain); // boom! But I am getting the following error ...
3
votes
4answers
5k views

How to use Microsoft.Scripting.Hosting?

To embed some IronPython Code into C# I want to use the ScriptEngine using IronPython.Hosting; using Microsoft.Scripting.Hosting; I found the reference for IronPython, but where is the necessary ...
4
votes
3answers
185 views

How come my program can connect to a nonexistent website?

I am new to python and network programming and I am having trouble with a simple program. I am basically opening a connection to a nonexistent website and somehow it seems that the connection ...
3
votes
2answers
410 views

IronPython integration in C#: a specific problem/question

I'm working on providing an extensibility mechanism for my C# mapmaking application through IronPython. Everything works fine, but I have a specific requirement which I'm having trouble implementing: ...
1
vote
2answers
2k views

IronPython cannot import module os

So I have a basic ZIPPED IronPython (2.6 or 2.6.1) that I just unzip, start ipy.exe, type "import os" and hit enter. The following output happens: Traceback (most recent call last): File ...
5
votes
5answers
1k views

Is there a good IDE for building GUI apps with Python

I am a beginner programmer and have learned most of what I know thus far from using delphi for the past couple of months. A month or so back I decided to give python a try as I was told it may be ...
3
votes
1answer
559 views

Import Python Module through C# .NET using IronPython

I am trying to run a Python class through C# .NET using IronPython, a couple of the Modules imported by the Python class are: import collections import nltk.classify.util In order to import these ...
3
votes
1answer
1k views

Calling IronPython object from C# with mono

I have the following IronPython code. class Hello: def __init__(self): pass def add(self, x, y): return (x+y) I need to call this from C#, and I came up with the following ...
2
votes
1answer
723 views

Assigning an IronPython method to a C# delegate

I have a C# class that looks a little like: public class MyClass { private Func<IDataCource, object> processMethod = (ds) => { ...
2
votes
4answers
2k views

Looping over a Python / IronPython Object Methods

What is the proper way to loop over a Python object's methods and call them? Given the object: class SomeTest(): def something1(self): print "something 1" def something2(self): print ...
1
vote
2answers
901 views

IronPython DLR; passing parameters to compiled code?

I'm currently doing the following to create and execute a simple python calculation, using DLR: ScriptRuntime runtime = Python.CreateRuntime(); ScriptEngine engine = runtime.GetEngine("py"); ...
1
vote
1answer
738 views

Issue with using a .net class in ironpython

If I have a .Net class that is not part of any namespace then I'm not able to use it in ironpython. Here is an example Suppose I have a assembly FooLib.dll with the following class definition ...
1
vote
3answers
2k views

can you typecast a .NET object in IronPython?

I'm interfacing with a .NET API in IronPython. The API is returning an object of the wrong type (some kind of generic object). I suspect that the problem is not showing up in their C# code because the ...
0
votes
2answers
367 views

Why do I get this .NET error - “TypeError: expected List[DataPoint], got List[DataPoint]”

I refactored some code, and now I get this error when calling a function. But everything seems to be fine, I even compared failing_argument.GetType().AssemblyQualifiedName between the old and the new ...
12
votes
6answers
10k views

How to use IronPython with Visual Studio 2008

I've tried using the IronPython integration extension provided by Microsoft. But it does not work with Visual Studio 2008. Is there a proper VS 2008 IDE extension for IronPython?
18
votes
2answers
5k views

IronPython on ASP.NET MVC

Has anyone tried ASP.NET MVC using IronPython? Having done a lot of Python development recently, it would be nice to continue with the language as I go into a potential ASP.NET MVC project. I'm ...
28
votes
5answers
13k views

IronPython vs. Python .NET

I want to access some .NET assemblies written in C# from Python code. A little research showed I have two choices: IronPython with .NET interface capability/support built-in Python with the Python ...
13
votes
6answers
1k views

What are some strategies to write python code that works in CPython, Jython and IronPython

Having tries to target two of these environments at the same time I can safely say the if you have to use a database etc. you end up having to write unique code for that environment. Have you got a ...
6
votes
2answers
1k views

C# / IronPython Interop with shared C# Class Library

I'm trying to use IronPython as an intermediary between a C# GUI and some C# libraries, so that it can be scripted post compile time. I have a Class library DLL that is used by both the GUI and the ...
19
votes
5answers
2k views

How to use IronPython with App.Config?

I have a class library that is usually called from a .net console or web application. It integrates with various components, and relies on an app.config or web.config. If I want to utilise the class ...

1 2 3 4