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
0answers
25 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 : ...
0
votes
0answers
30 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
1answer
11 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
0answers
22 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
18 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 = ...
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 ...
1
vote
0answers
30 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
3answers
66 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 ...
0
votes
0answers
70 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 ...
0
votes
1answer
31 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, ...
-6
votes
0answers
35 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
0answers
35 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
47 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
34 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
1answer
13 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
0answers
40 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
29 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
22 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
72 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
42 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 ...
0
votes
1answer
51 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. ...
1
vote
2answers
79 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 ...
1
vote
1answer
31 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 ...
1
vote
2answers
89 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, ...
2
votes
1answer
70 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 ...
0
votes
1answer
58 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
77 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
43 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
61 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
41 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 ...
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 ...
1
vote
1answer
28 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
67 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
29 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
23 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
54 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
53 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
15 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
52 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
60 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
84 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
53 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
175 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
27 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
98 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
34 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) ...

1 2 3 4 5 23