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

0
votes
1answer
83 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
185 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
2answers
66 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 ...
1
vote
1answer
74 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 ...
0
votes
1answer
56 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
21 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 ...
0
votes
0answers
27 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 ...
1
vote
1answer
41 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
111 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
31 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 ...
2
votes
2answers
49 views

Split numbers from text

I want to split a string that contains numbers and a metric unit. I tried this: foo = "10mm" match = re.match(r"([0-9]+)([a-z]+)", foo, re.I) num = match.group(1) unit = match.group(2) Which works ...
2
votes
1answer
27 views

normal distribution; iron python

I want the user to specify a range delta, sigma for the spread and the number of random values it should produce. But what's the best way in Iron Python to produce random values with a normal ...
0
votes
0answers
79 views

implementing CustomRoutedCommand in IronPython with WPF and MVVM

I am trying to implement a Custom Routed Command in IronPython. I've been following this C# example: http://msdn.microsoft.com/en-us/library/ms752070.aspx import wpf import sys from System.Windows ...
3
votes
1answer
57 views

MissingMemberException: 'Guid' object has no attribute 'length'

I am trying to get the length of a curve but I am getting the message: MissingMemberException: 'Guid' object has no attribute 'length' The same script in C# works perfectly. What is the problem with ...
1
vote
0answers
26 views

Is there a built-in way to convert a 1d array to a 2d Array inside IronPython

I am looking for an easy way to reshape an 1D array in IronPython without the usade of NumPy / Scipy for .NET into a 2D Array I tries to find something similar to Numpy´s 'reshape" function, but so ...
1
vote
0answers
59 views

Use IronPython and Jython as API Tester

We have a server which exposes a set of REST APIs. Those APIs are meant to be exposed for clients on different platform so we want to provide SDKs in Java and .NET The SDKs are using similiar ...
0
votes
1answer
74 views

Dynamically create fallback delegate at runtime

I'm trying to setup C# code to automatically create dummy or fallback delegates for methods that get called by an IronPython script and that are not explicitly implemtented, yet. Say there's a script ...
1
vote
1answer
132 views

Importing CLR using IronPython

I wanted to give IronPython a try since I want to learn more about both Python and the .Net underlay. I installed last version (2.7.3) and trying to import clr, on my first line, I can't run and ...
0
votes
2answers
71 views

Gurobi API Exceptions (GRBException) with IronPython

I have a problem running a Gurobi Optimization Model using a C#/.NET library through IronPython. I have a method to access variables though their name (ie GRBModel.GetVarByName), something like ...
1
vote
0answers
221 views

IronPython on Xamarin

I'm having difficulty getting IronPython running in a Xamarin.Android app. Xamarin states they have limited DLR support. I installed the latest version of Iron Python on my PC. In my Xamarin.Android ...
0
votes
1answer
31 views

Invoke ironpython in c# got an UnBoundNameException

The problem is; var instance = mScriptScope.GetVariable("Group1"); //here I can get the instance named "Group1" ,type is IronPython.Runtime.Types.OldInstance ...
0
votes
1answer
115 views

IronPython Studio = sunk ship? [closed]

Having most programming experience in Visual Studio decision of trying IronPython Studio was pretty obvious. However, to my disappointment, after numerous efforts of harnessing its debugger to work ...
0
votes
1answer
40 views

Call overloaded methods from Ironpython

I would like to call the following method from the RhinoCommon API via Ironpython: Curve.Trim(CurveEnd, Double) How can I make sure I dont get this overload: ? Curve.Trim(Double, Double) ...
0
votes
0answers
37 views

IronPython importing standard library modules into Silverlight

Hello I am trying to import IronPython's standard modules in to a Silverlight/Gestalt Application. I am using IronPython Studio 2012 and Silverlight 5. It can't seem to find any of the modules. ...
0
votes
0answers
29 views

Chiron.exe: xap error CH1001: Could not find assembly: System.Numerics.dll

I am receiving the following error Chiron.exe: xap error CH1001: Could not find assembly: System.Numerics.dll When trying to compile an IronPython Script into a Silverlight application. I am using ...
1
vote
1answer
86 views

CompiledCode.Execute takes a long time during the first iteration

I'm embedding small scripts in a c# application. To increase performance I compile them when the application starts. public CompiledCode CompileScript(string script) { return ...
0
votes
0answers
96 views

How To Call IronPython functions in C#?

I am having a problem in calling python functions in my C# form. i passed it refrences. but still my python functions are inaccessible . Please help me out. using IronPython; using ...
0
votes
1answer
33 views

hosted IronPython: possible to get currently executed source line?

Is it possible to retrieve the line number from a Python script that is being executed within a hosted IronPython environment? I would like to somehow highlight that line in an AvalonEdit control ...
0
votes
0answers
54 views

IronPython “from … import *” in C#

How do I import types into my hosted IronPython scope from the outside? I could do "from Abc import *" in my script but I need to always import some types and to avoid forgetting to import them I'd ...
1
vote
1answer
65 views

IronPython + Mono error - could not load signature

When trying to run IronPython from Mono, I get the following error: wayne@arglefraster ~/Downloads/IronPython-2.7.3 ⚘ mono ipy.exe 19:19:23 Could not load signature of ...
0
votes
0answers
33 views

ironpython winform keyboard polling

I am using ironpython to make a winform application. I need to be able to be constantly polling the keyboard for user input. I've tried a few things but haven't been able to get anything to work. I ...
0
votes
0answers
273 views

IronPython - Open a new WPF window

I'm brand new to Python/IronPython, XAML, and WPF, and I'm trying to make a GUI in Visual Studio 2012 for my Python application. I'm trying to do something that should be very simple, but I can't ...
0
votes
1answer
89 views

Compiling Python code from WPF into exe with Python Tools for Visual Studio

I've tried the pyc.py method of ipy.exe pyc.py /main:WpfApplication2.py /target:winexe, but that generates an exe file that does absolutely nothing. So how can it be done? I can't find anything else ...
0
votes
1answer
120 views

IronPython XML-Reader in .Net 2.0

I created a XML-Reader that creates a pretty stupid formated List, the script thats goint to use it needs it this way though. import xml.etree.ElementTree as ET PATH_IN = "<Path>\sweep.xml" ...
0
votes
1answer
80 views

is sqlite caching the results of the query for optimization?

I've noticed this behavior in sqlite. When I re-use the cursor object, the working set memory in the task manager keeps increasing until my program throws a out of memory exception. I refactored the ...
0
votes
1answer
236 views

python xml writer

i tried to do this import xml.etree.ElementTree as ET root = ET.Element('xml') projects = ["a", "e", "u"] for i in projects: project = ET.SubElement(root,'project') project.set('name', i) ...
0
votes
0answers
28 views

comunication between different cli

Would it be possible to have a Script launched with ipy.exe(2.7.3) which uses NET4.0, communicate with a script that is started with ipy.exe(2.6.1) that uses Net2.0? The script launched with ...
0
votes
0answers
80 views

How To Manipulate An Array of Bytes

I'm using Iron Python 2.7 I have installed I have a binary file divided into chunks. Each chunk has an identifier plus a blob of data which is interpreted as an array of bytes. From the debugger: ...
1
vote
0answers
103 views

How can I import library in IronPython?

I'm currently working on an application written in C#, which I'm embedding IronPython in. I want to import library music21 This library is working normally on PyScripter, but on IronPython is not. I ...
0
votes
1answer
68 views

event handling iron python

If there are lets say 4 buttons, all with the same Click event, how can I find out which button was pressed? if the event looks like this def Button_Click(self, sender, e): I'm sure I can compare ...
0
votes
0answers
59 views

DataReceived event is not executed when communicating by serial port in Ironpython

This problem is solved.I am sorry that I didn't set the DtrEnable and RtsEnable to be "True". After that, it works!! DataReceived event is not executed when communicating by serial port in ...
0
votes
1answer
66 views

executing a python(or iron python) script via iron python

is this possible? I want to execute a different scriptfile from a iron python script. My main file is getting way to big and I want to make it more readable.
1
vote
0answers
99 views

how to deploy a C# application that calls numpy through IronPython

I'm writing a C# GUI application where I'd like to use numpy, which I have used under Python 2.7 extensively and which is very fast and easy to program. (I still find the GUI work in C# much easier to ...
0
votes
0answers
91 views

Visual Studio Web Setup Project With Iron Python

I've added a Web Setup Project to a Visual Studio solution which contains a ASP.Net 3 MVC project and IronPython project which contains two Python files. I've edited the Setup project so the ...
1
vote
1answer
228 views

Outlook automation / Object Model query (Python) - unique ID for each email?

I've been using the MSDN to build a simple app that automates some Outlook 2010 basics. It's going well, but I'm just stuck at something simple I think. My question is this: I've been able to get ...
0
votes
1answer
70 views

Functionality differences of CPython and IronPython

So from what I understand IronPython is compiled to Bytecode which is compiled to machinecode through the .net CLR, whereas CPython is compiled to Bytecode and interpreted with the PVM. Is this true? ...
0
votes
2answers
43 views

How to access property of anonymous type?

Considering this IronPython script def SensorEvent(d): print d print d.Message ... how do I access properties of d? First line of the SensorEvent method successfully prints { Message ...
0
votes
2answers
80 views

is it possible to run compiled iron python scripts on PCs without iron python installed?

I'm using the pyc tool to compile IronPython scripts to executables, but can they be run without IronPython installed? If so what do I have to include?
0
votes
1answer
173 views

creating standalone executable iron python file

I created a ironpython project in visual studio and I want it to run as executable I tried creating the executable with pyc but it doesn't work(It does absolutly nothing). ipy.exe ...
0
votes
0answers
142 views

Ironpython - upload file to SharePoint

I am trying to upload a file to a SharePoint using IronPython. As a simple test I decided to try and write the number string "0123456789" to a file called test.txt on the SharePoint. When I execute ...

1 2 3 4 5 24