ironpython Questions
2
Solved
I have created a class that can take a function with a set of arguments. I would like to run the passed function every time the event handler signals.
I am attaching my code below which runs when ...
Lympho asked 6/7, 2013 at 20:50
4
Solved
Is there support IronPython in VisualStudio 2012? I not found IronPython project in templates.
Kylie asked 12/9, 2012 at 16:59
4
Solved
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 ref...
Woodley asked 23/2, 2009 at 20:47
4
Solved
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 p...
Audiophile asked 3/8, 2012 at 20:58
2
Solved
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, "Templates\\Checked...
Sihon asked 9/1, 2013 at 13:52
2
Solved
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...
Fleeta asked 23/4, 2013 at 14:26
1
Solved
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 manu...
Boob asked 17/4, 2013 at 19:54
2
There is a way to use NumPy/SciPy in IronPython, using IronClad to execute/communicate with the CPython binaries of the same. A newer project, Python Tools for VS allows for a faster integration wi...
Ramachandra asked 18/10, 2012 at 6:2
1
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.Andro...
Scan asked 31/3, 2013 at 0:6
4
Solved
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 loadi...
Melia asked 8/6, 2010 at 15:1
5
Solved
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 m...
Sicken asked 25/7, 2010 at 3:34
4
Solved
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...
Dipper asked 5/11, 2009 at 14:45
3
Solved
I'm wondering if there is a possibility to call a specific Method from a Python script over a C# project.
I have no code... but my idea is:
Python Code:
def SetHostInfos(Host,IP,Password):
Work...
Resonator asked 5/11, 2012 at 12:14
1
Solved
Situation
Hosted IronPython allows developers to set parameters into script. Every time when a IPy engine object is created, I set such a parameter (ParamName), but when I try to import python mod...
Canister asked 14/12, 2012 at 7:54
1
Solved
I have a .NET project where I am using IronPython to perform some processing of the data. At present, the C# code loops through and generates an IronPython script for each row and column that requi...
Redwood asked 5/12, 2012 at 16:53
5
Solved
I'd like to add "IDLE-like functionality" to C# WinForms application, but I don't quite have an idea how to do that and couldn't find anything useful with Google.
So basically I want interactive c...
Improvident asked 29/4, 2009 at 8:28
2
Solved
I am embedding IronPython into my game engine, where you can attach scripts to objects. I don't want scripts to be able to just access the CLR whenever they want, because then they could pretty muc...
Shantay asked 27/5, 2012 at 17:4
1
I have a class I've written in C#. The class has two methods, the signatures being:
bool Navigate(string url)
bool Navigate(Uri url)
From what I gather, the IronPython runtime is supposed to try...
Auld asked 30/12, 2009 at 18:8
2
I am developing customized logger program,as per the requirement i need to fetch the process,thread and name of object Inside the called function(In below example its obj needs to fetch inside the ...
Astragal asked 20/10, 2012 at 16:2
1
Solved
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 thes...
Confounded asked 4/10, 2012 at 20:45
8
Solved
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 s...
Doubloon asked 14/11, 2008 at 12:50
2
Solved
When using IronPython hosted the __name__ special variable returns as <module> instead of __main__. I found some discussion here: http://lists.ironpython.com/pipermail/users-ironpython.com/20...
Gules asked 25/11, 2011 at 3:32
1
Solved
I am trying to use IronPython as an external scripting language for Unity3D. The necessary DLLs for IronPython's execution load just fine inside of Assets\Plugins. However, when I try to run the sc...
Brogle asked 1/8, 2012 at 19:28
1
I created an IronPython script that imports from Python libraries, such as os, sys, etc. as well as .NET libraries.
It runs perfectly fine from my Visual Studio IronPython solution but I need to d...
Britton asked 31/7, 2012 at 22:56
2
Solved
I'm having difficulty loading a pickle in Python that was dumped in IronPython.
When I pickle something basic like "[1,2,3]" in IronPython, the pickle loads fine in Python. But, when I pickle resu...
Mcquade asked 12/7, 2012 at 18:14
© 2022 - 2024 — McMap. All rights reserved.