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

8
votes
4answers
261 views

How to install and use sqlobject+mysql on iron python?

Is it possible to use sqlobject to connect to a mysql database from iron python? If so, how? What must I install? I have sqlobject installed for cpython and it works fine, but if I use that same ...
0
votes
1answer
12 views

Ironpython module has no attribute fsync

I'm loading dulwich into ironpython and when I try to run the example code below from How to pull from the remote using dulwich? from dulwich.repo import Repo from dulwich.client import HttpGitClient ...
0
votes
0answers
27 views

Cannot install MahApps assembly using IronPython in Visual Studio (with PTVS 2.0)

I am trying to create a MahApps styled WPF application using IronPython 2.7.3 in Visual Studio Ultimate 2012 with PTVS. However I cannot install MahApps.Metro via Nuget using the GUI. Choosing ...
-1
votes
2answers
48 views

Run Python script in Windows Phone

How should I go about running a python script in Windows Phone 7 or 8 with IronPython. I have tried by doing the following: var ipy = Python.CreateRuntime(); dynamic test = ipy.UseFile("Test.py"); ...
0
votes
1answer
39 views

Using IronPython in C#

I've recently discovered IronPython in C# and only tutorials I found were how to use python script in C#, but I've noticed, that IronPython has classes and methods you can use directly in C# like : ...
1
vote
0answers
197 views

IntelliSense doesn't work properly for python in C# Project- Visual Studio 2010

I have project that in VS is a C# project, but inside of it I have many IronPython sources. Out of box PTVS is highlighting syntax and IntelliSense is working with System modules. But I also have ...
0
votes
0answers
57 views

Running Python Script/application in Windows Phone 8

I want to run the Skeinforge slicer program written in Python inside my Windows Phone 8 C# application. I have determined that I should probably use IronPython to do this, I have already determined ...
0
votes
0answers
27 views

IronPython pyc.py -> .exe : How to compile a program that imports an external dll?

I am using the pyc.py file to create a .exe file of my IronPython project. It seems that pyc.py cannot deal with programs that use external dlls. I did several tests and the problem seems to come down ...
0
votes
1answer
14 views

highlight the text in the richtextbox as a python code

I'd like to embed the IronPython script engine into a c# app, reading the python code from a richtextbox. Is there a way to highlight the code in the richtextbox to make it look as in a standard ...
0
votes
1answer
14 views

RhinoCommon SelectSubObject

I am using RhinoPython along with RhinoCommon to attempt to select mesh vertices. Everything seems to work, but highlighted disappears after an instant. Could someone explain why? For example I use ...
0
votes
1answer
22 views

Using XLRD in Ironpython

I am trying to use the XLRD library in IronPython 2.7 At the most basic operation of opening an .xls file (2003 format) I get the following error, and I am not sure how to fix it: workbook = ...
2
votes
1answer
269 views

PTVS doesn't detect IronPython installation

I wanted to change interpreter to IronPython in Visual Studio 2010 with Python Tools for Visual Studio. Last time I hadn't problems with this I got CPython and IronPython on list but now IronPython ...
0
votes
1answer
35 views

removing a property in python

I am using a code snippet from here along with my own modifications in ironpython which works extremly well: from System.ComponentModel import INotifyPropertyChanged, PropertyChangedEventArgs ...
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 ...
0
votes
0answers
74 views

IronPython - Error in URL request

When using IronPython I make a URL request to get an XML (with python-requests), in the VisualStudio's console I get the following error: failed to parse CPython sys.version: '2.7.3 ()' What does ...
1
vote
0answers
37 views

IronPython: StartThread creates 'DummyThreads' that don't get cleaned up

The problem I have is that in my IronPython application threads are being created but never cleaned up, even when the method they run has exited. In my application I start threads in two ways: a) by ...
0
votes
1answer
34 views

Python/IronPython- how to return value of specific attribute of class when only class object referenced?

Ok, just trying to get into Python, specifically, I'm using the benefit of on-the-fly calculations from within a C# app calling the IronPython engine. I pass in to IP a list of C# objects of class C, ...
0
votes
3answers
68 views

Calling function with two different types of arguments in python

I am new to Python. I came across a weird case and am not able to figure out what the issue is. I have 2 versions of a function written in Python :- v1 - def fileLookUp(fixedPath, version): if ...
2
votes
2answers
224 views

IOException (“file or directory already exists”) while trying to create a directory

I have a strange problem in our C# project which occurs while trying to create a directory via IronPython script. This is the code: targetTemplateDirectory = Path.Combine(Data, ...
-6
votes
0answers
37 views

Ironpython Machine Learning and Data Mining Algorithms [closed]

Which machine learning and data mining algorithms are implemented in Ironpython?
0
votes
0answers
21 views

Python .net framework reference argument Double[]&

Using the Python for .Net framework I'm trying to call a method from a C# .dll file. This method has the following arguments: public static void ExternalFunction( String Arg1, ref ...
0
votes
1answer
718 views

How can I put items in an XAML combobox/listbox using Ironpython code?

I have a listbox and a combobox described the XAML code below and I am trying to populate this listbox and combobox from within IronPython code and not XAML. How can I populate this lists from within ...
0
votes
1answer
381 views

How to make Python.CreateEngine() work? - TargetInvocationException

I'm following this. A simple example of calling IronPython from C# with MonoDev: Python: class Hello: def __init__(self): pass def add(self, x, y): return (x+y) C#: using ...
0
votes
0answers
41 views

IronPython always in 32-bit mode on 64bit machine even when running ipy64.exe

I am sure I am missing something simple but unfortunately a lot of searching hasn't thrown up what it is.. I am running Windows 7 64-bit (I verified this by looking at Control Panel > All Control ...
0
votes
0answers
49 views

Addhandler different from += handler syntax

The question has been asked for c# similar: Is using AddHandler functionally different from Event += Method? but my research gave different results opposed to the answer that has been given there. I ...
0
votes
0answers
38 views

how to handle multiple values in a return with iron python

I have this function written in python: def getLog(self): return (0, 1) In IronPython (http://ironpython.net/), how can we handle a return with multiple values? Thanks in advance.
0
votes
0answers
44 views

Testing WPF application using python or iron-python in eclipse

I would like to know, how to test WPF applications using python or iron-python well I tried a lot googled every where, but unfortunately I'm unable to start my test. I tried normal window application ...
0
votes
0answers
34 views

Testing WPF application using python or iron-python

I would like to know, how to test WPF applications using python or iron-python well I tried a lot googled every where, but unfortunately I'm unable to start my test. I tried normal window application ...
0
votes
0answers
23 views

IronPython: Catch OverflowError/StackOverflowException

I let the user write a python file and I execute it with exec. But when the user has a OverflowError than the hole program will crash. How can I prevent this? This does NOT work: try: f(*args) ...
1
vote
1answer
74 views

Implement nested interface of generic parent class with ironpython

I wan't to implement the following C#/.Net interface with IronPython: public static class Consumes<TMessage> where TMessage : class { public interface All { void Consume(TMessage ...
1
vote
1answer
44 views

Argument Confusion Running a C# Method In IronPython

I am trying to run a c# method in the IronPython (2.7.3) console: The c# (compiled to a dll) is: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ...
2
votes
1answer
130 views

Can we load pandas DataFrame in .NET ironpython?

Can we load a pandas DataFrame in .NET space using iron python? If not I am thinking of converting pandas df into a csv file and then reading in .net space.
1
vote
2answers
84 views

Access Ironpython dictionary from C#

I have dictionary defined in Ironpython script and I want to access this dictionary from my C# code. Can someone provide example code to achieve my requirement. Sorry earlier I did not mention my ...
0
votes
1answer
54 views

IronPython: Python.CreateEngine blocking on Windows 8

I have an application that relies on IronPython 2.7.3. I just switched to a new developement workstation with a Windows 8. Using VS2010 debugger, I clearly see that the function Python.CreateEngine ...
0
votes
0answers
11 views

Setting ANSI_OFF in SQL Server for a large transaction

I have to push a large number of SQL statements (several tens of thousands) through a transaction on an SQL Server connection. Many of these statements may require a string value to be truncated. ...
0
votes
1answer
60 views

How to load IronPython script with C#, with adding variables to scope before execute it

I have following code: m_pyScope = pyRuntime.UseFile(filename); To load script file within IronPython runtime in C#. The problem is that i need to register my custom functions, variables, etc to ...
0
votes
1answer
46 views

special character encoding C# and Ironpython

I am facing an encoding issue while trying to pass a string from two C# modules using Ironpython code as a bridge. Special characters like € , © gets distorted when the string is received by the ...
0
votes
1answer
19 views

IronPython - error while invoking

Im trying to write an IronPython app that uses a COM object interface. I manage to import it using clr.AddReference, and manage also to call some of the functions, create objects, etc. However at a ...
1
vote
1answer
35 views

IronPython StdLib from NuGet cannot be found

I have installed IronPython and IronPython.StdLib from NuGet. From other posts on the topic (e.g. this), it seems like I can simply add clr.AddReference(IronPython.StdLib) to my python module and ...
2
votes
1answer
76 views

LookupError: unknown encoding: idna - only from subprocess.call

Im trying to invoke a python 2.7 script from an Iron python one using subprocess.call. the invoked process uses imports that are not supported in IronPython like scikit-learn and requests. Currently ...
1
vote
2answers
99 views

Python: sys.path.append vs. import?

I have a (single) .py script. In it, I need to import a library. In order for this library to be found, I need to call sys.path.append. However, I do not want to hardcode the path to the library, ...
0
votes
1answer
91 views

TFS API: Retrieve changesets from main branch using VersionControlServer.QueryHistory

Given: TFS server with m > n changesets in team project X. I am using TFS API and would like to get the n latest changesets of that branch. I think I should be using ...
1
vote
1answer
63 views

How can I use requests with Ironpython?

I'm trying to run a script that was written with python 2.7, using some libraries that I've installed on my Windows machine - among them numpy scipy, scikit, requests and others. Now I need to use a ...
1
vote
2answers
45 views

Can scikit be used from IronPython?

I saw that numpy can be used from IronPython : https://www.enthought.com/repo/.iron/ Is it possible to install and import scikit in IronPython? Im trying to interface between a module written in ...
2
votes
1answer
108 views

Can you connect the Visual Studio debugger to IronPython Tools?

I use IronPython for a lot of debugging, and I usually attach my Visual Studio debugger to ipy.exe, then import and use a .NET assembly to step through my code. However, I find that the IronPython ...
0
votes
0answers
26 views

Woking code gives error in another project

I'm trying to execute "dot" (a graph drawer thing from www.graphviz.org) form IronPython. Here is my code: import clr clr.AddReference('System.Core') import System ...
2
votes
3answers
918 views

No module named fcntl

I am trying to execute this method with IronPython on .NET 4.0 using IronPython 2.7. i am using Windows 7 import os import re import nltk import urllib import xapian import sys def getData(url): ...
1
vote
1answer
32 views

IronPython: adding references from host application

In my application I'm using Iron Python to provide scripting capabilities. The problem is that embedded scripts don't see references I've linked to the app. Only solution as I understand is to ...
2
votes
2answers
75 views

clear Winforms GroupBox without destroying content

I want to clear the content of a GroupBox to fill it with new options, but I cant use the Dispose() function since I don't want to destroy the objects in it (Textboxes from another class). Is there a ...
2
votes
0answers
30 views

Ironpython subclassing .NET classes

I am trying to subclass the .NET RoutedUICommand in IronPython. I can do this as long as I do not pass any parameters to the init function. As soon as I do this, I get an ArgumentTypeException ...

1 2 3 4 5 23