ironpython Questions
3
Is there a place that lists standard library and 3rd party modules that work with IronPython? If not, please let me know here.
Here are some I have tried:
cherrypy - works with fepy - example
co...
Baguette asked 12/1, 2011 at 15:16
1
Solved
I want to be able to write PowerShell CmdLets using IronPython, and furthermore I need one CmdLet to look at the environment and add CmdLets to the PowerShell based on the contents. For example, re...
Mellisamellisent asked 27/5, 2011 at 1:26
3
Solved
I'll prefix this question with: No, Setting IRONPYTHONPATH is not the answer.
Anyway...
I was planning on using IronPython as a replacement for Powershell for a project, but I've been stumped bef...
Slavic asked 10/8, 2011 at 3:35
1
.net4.0
mytest.py
def Add (a, b):
return a+b
I can use it in C# 4, like this:
ScriptRuntime runtime = Python.CreateRuntime();
dynamic script = runtime.UseFile("mytest.py");
Console.WriteL...
Commissioner asked 19/8, 2010 at 11:55
2
Solved
... does it requires some sort of wrappers?
I was under expression that IronPython is a .NET implementation of the Python which somehow magically enables applications built with IronPython to use ...
Seedtime asked 28/7, 2011 at 7:5
2
I have a python library I am trying to use via IronPython (v2.7 RC1 [2.7.0.30]) invocation from C# application. The library uses NumPy and SciPy quite extensively, which does work with SciPy and Nu...
Garda asked 2/4, 2011 at 21:54
3
Solved
Is it okay to start using Iron Ruby and Iron Python in production systems? Also, are there any additional requirements for hosting them?
And, for the bonus points, given that F# is a functional pr...
Suspicious asked 22/10, 2010 at 14:12
2
Solved
I'm calling an IronPython script and passing it a .NET object that contains a DateTime structure.
I'm trying to use IronPython's JSON support to serialize the object as JSON.
Everything works gre...
Erdah asked 9/6, 2011 at 17:26
1
I'm trying to send a POST message with a purely XML payload (I think) using urllib2 in IronPython. However, everytime I send it, it returns Error code 400 (Bad Request).
I'm actually trying to mim...
Reeba asked 2/7, 2010 at 10:40
2
Solved
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...
Drowsy asked 12/5, 2011 at 13:42
2
Solved
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 G...
Nicki asked 2/5, 2011 at 5:44
2
Solved
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 implementin...
Ciliolate asked 13/3, 2011 at 21:3
2
Solved
I want to pass a list of strings from IronPython 2.6 for .NET 2.0 to a C# program (I'm using .NET 2.0 because I'm working with an api that runs off of DLLs built on 2.0). But I'm not sure how to ca...
Tasty asked 6/3, 2011 at 9:19
2
Solved
EDIT
Okay, rookie here so please bear with me. What I'm trying to ask is the following:
Is it plausible for a Python-syntax fan to use one of these options while other team members "plain vanill...
Fugal asked 23/2, 2011 at 22:44
1
Solved
I am using the DLR within a small part of a larger C# project, IronPython being the language in question.
For some parts of the system the user is able to enter a small script to customise behavi...
Give asked 18/2, 2011 at 22:26
8
Solved
Well, after a long time writing .net programs in C# I started to feel angry and frustrated about all that syntactic trash that comes with statically typed languages. Now I want to change to d...
Weasand asked 5/10, 2008 at 22:54
5
Solved
I'm currently working on a strategy for managing multiple Windows Server 2003 to 2008 running SQL Server 2000 - 2008 and I want/need a unified scripting platform for automating tasks. I'm becoming ...
Kobi asked 15/1, 2011 at 21:6
4
Solved
I am loading an IronPython script from a database and executing it. This works fine for simple scripts, but imports are a problem. How can I intercept these import calls and then load the appropria...
Mccormack asked 5/11, 2010 at 12:25
12
Solved
I have an affinity for python, but I work in a .NET environment, so I was looking into Iron Python, and wondering what it would be used for.
Could you write an app in it? or is it for addin...
Devanagari asked 2/12, 2010 at 14:47
1
Solved
I'm embedding IronPython (2.6.1) in a C# assembly and exposing several objects to scripts which are executed with PythonEngine.ExecuteFile. I expose them either with
scope.SetVariable("SomeObject"...
Tyrocidine asked 8/1, 2011 at 19:16
2
Solved
I'm just starting to try to learn more about the .Net VM underpinnings, and am immediately thrown off by something. I know there's this new thing called the DLR that allows for all the dynamic stuf...
Fishbein asked 23/12, 2010 at 1:20
1
Solved
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.
...
Clovis asked 8/12, 2010 at 22:48
3
Solved
I've always had this dream of creating a 'real exe' from a scripting language. With the available of DLR-based implementations of Python and Ruby, is this getting any closer to reality?
I'd like t...
Mortonmortuary asked 18/6, 2009 at 17:22
4
Solved
I just downloaded the original Python interpreter from Python's site. I just want to learn this language but to start with, I want to write Windows-based standalone applications that are powered by...
Bustup asked 30/10, 2010 at 14:49
4
Solved
Possible Duplicate:
What is the equivalent of the C# “using” block in IronPython?
I'm writing some IronPython using some disposable .NET objects, and wondering whether the...
Chevron asked 28/10, 2010 at 12:40
© 2022 - 2024 — McMap. All rights reserved.