Tagged Questions
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.
37
votes
4answers
6k views
Django on IronPython
I am interested in getting an install of Django running on IronPython, has anyone had any success getting this running with some level of success?
If so can you please tell of your experiences, ...
27
votes
9answers
8k views
IDE for ironpython on windows
I am currently learning ironpython and loving but i'm looking to move on from using notepad++ and cmd.exe and try using something with a bit more juice.
I recently learned that iron python studio ...
25
votes
3answers
431 views
Why is calling a Python lambda expression from C# not thread-safe?
I define a side-effect-free (pure) lambda expression in IronPython and assign it to a C# delegate. When invoking the delegate simultaneously from multiple threads i get exceptions of type ...
22
votes
12answers
3k views
How are you using IronPython?
I'm keen to drink some modern dynamic language koolaid, so I've believed all the stuff on Michael Foord's blog and podcasts, I've bought his book (and read some of it), and I added an embedded IPy ...
19
votes
2answers
1k views
Pure python implementation of greenlet API
The greenlet package is used by gevent and eventlet for asynchronous IO. It is written as a C-extension and therefore doesn't work with Jython or IronPython. If performance is of no concern, what is ...
19
votes
8answers
2k views
Python or IronPython
How does IronPython stack up to the default Windows implementation of Python from python.org? If I am learning Python, will I be learning a subtley different language with IronPython, and what ...
19
votes
3answers
3k 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 ...
18
votes
5answers
1k views
How to use IronPython with App.Config?
I have a class library that is usually called from a .net console or web application. It integrates with various components, and relies on an app.config or web.config.
If I want to utilise the class ...
18
votes
9answers
5k views
Iron python, beautiful soup, win32 app
Does beautiful soup work with iron python?
If so with which version of iron python?
How easy is it to distribute a windows desktop app on .net 2.0 using iron python (mostly c# calling some python code ...
17
votes
7answers
4k views
Boo vs. IronPython
After having looked at each of these two projects, it seems that both are VERY similar. Both run on top of the CLI, both have python style syntax, both use .NET instead of the standard python ...
15
votes
2answers
3k views
IronPython on ASP.NET MVC
Has anyone tried ASP.NET MVC using IronPython? Having done a lot of Python development recently, it would be nice to continue with the language as I go into a potential ASP.NET MVC project.
I'm ...
14
votes
3answers
2k views
Can you use LINQ types and extension methods in IronPython?
Is it possible to use the LINQ types and extension methods in IronPython?
If so how? And also is there often more pythonic to do the same thing?
14
votes
4answers
2k views
BOO Vs IronPython
What is the difference between IronPython and BOO? Is there a need for 2 Python-like languages?
14
votes
3answers
1k views
IronPython Webframework
There seem to be many excellent web frameworks for Python. Has anyone used any of these (Pylons, Web2Py, Django) with IronPython?
13
votes
2answers
3k views
Has anyone used SciPy with IronPython?
I've been able to use the standard Python modules from IronPython, but I haven't gotten SciPy to work yet. Has anyone been able to use SciPy from IronPython? What did you have to do to make it work?
...
13
votes
3answers
3k views
Pros and cons of IronPython and IronPython Studio
We are ready in our company to move everything to Python instead of C#, we are a consulting company and we usually write small projects in C# we don't do huge projects and our work is more based on ...
12
votes
4answers
1k views
F# vs IronPython: When is one preferred to the other?
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 me ...
12
votes
6answers
552 views
Can I treat IronPython as a Pythonic replacement to C#?
I do understand that this topic has been covered in some way at StackOverflow but I'm still not able to figure out the exact answer: can I treat IronPython as a Pythonic replacement to C#?
I use ...
12
votes
5answers
1k views
Python - IronPython dilemma
I'm starting to study Python, and for now I like it very much. But, if you could just answer a few questions for me, which have been troubling me, and I can't find any definite answers to them:
What ...
12
votes
5answers
4k views
IronPython vs. Python .NET
I want to access some .NET assemblies written in C# from Python code.
A little research showed I have two choices:
IronPython with .NET interface capability/support built-in
Python with the Python ...
12
votes
2answers
2k views
Debugging IronPython scripts in hosted (embedded) environment
I'm writing a C# application which has IronPython (2.0.1) embedded in it. The idea is to expose portions of the application to the IronPython scripts, which the users write.
I want to provide the ...
11
votes
4answers
2k views
Why can't IronPython be installed with Visual Studio 2010?
IronPython has been out for a while now, so when I installed Visual Studio 2010 RC1 "Ultimate" this morning I was surprised to find that it couldn't be selected from the installer. Instead, one still ...
11
votes
3answers
3k views
Is there any Python syntax highlighter for Visual Studio 2010?
When I used Visual Studio 2008 I could install IronPython + IronPython Integrated IDE + Visual Studio Shell Integrated Mode and then my Visual Studio would parse .py files and highlight its syntax.
I ...
11
votes
13answers
1k views
How to impress developers with IronPython/Python
I need an IronPython\Python example that would show C#/VB.NET developers how awesome this language really is.
I'm looking for an easy to understand code snippet or application I can use to demo ...
11
votes
6answers
872 views
What are some strategies to write python code that works in CPython, Jython and IronPython
Having tries to target two of these environments at the same time I can safely say the if you have to use a database etc. you end up having to write unique code for that environment. Have you got a ...
10
votes
1answer
231 views
Writing PowerShell CmdLets in Python Dynamically
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, ...
10
votes
3answers
4k views
IronPython :- Visual Studio 2010 or SharpDevelop?
I'm considering developing a medium-size project for a client in IronPython. It's a pretty straightforward replacement for an existing system I've been supporting for several years, so the ...
10
votes
2answers
945 views
C# 4.0: casting dynamic to static
This is an offshoot question that's related to another I asked here. I'm splitting it off because it's really a sub-question:
I'm having difficulties casting an object of type dynamic to another ...
10
votes
9answers
442 views
What are the (dis)advantages of writing unit tests in a different language to the code?
Unit tests have different requirements than production code. For example, unit tests may not have to be as performant as the production code.
Perhaps it sometimes makes sense to write your unit tests ...
10
votes
2answers
3k views
How do I create a .NET assembly in IronPython and call it from C#?
I want to create an assembly using IronPython can call it from C#. Here are two things I am not asking.
I'm not asking how to call C# from IronPython. The easiest documentation to find describes how ...
10
votes
6answers
8k views
How to use IronPython with Visual Studio 2008
I've tried using the IronPython integration extension provided by Microsoft. But it does not work with Visual Studio 2008.
Is there a proper VS 2008 IDE extension for IronPython?
10
votes
7answers
7k views
What's the simplest way to access mssql with python or ironpython?
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 ...
9
votes
3answers
402 views
Are the “Iron” languages ready for prime time?
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 ...
9
votes
3answers
455 views
Generate .NET Assemblies from Iron Python
I have a Iron Python script that I want to run and then have the ipy interpreter output an assembly that I can run on other machines. How do I do that? Is there a siwtch I can pass to ipy.exe?
9
votes
3answers
3k views
How does ironpython speed compare to other .net languages?
I would like to give sources for what I'm saying but I just dont have them, it's something I heard.
Once a programming professor told me that some software benchmarking done to .net vs Python in some ...
9
votes
1answer
1k views
Why is IronPython startup time so slow?
I've been using IronPython for a while now, but something which really hampers my development is that it is excruciatingly slow to start up. I love the language and its way of working, but it is ...
9
votes
9answers
893 views
Good dynamic programming language for .net recommendation
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 ...
8
votes
1answer
205 views
Referencing Python “import” assemblies when calling from IronPython in C#
I'm a complete noob when it comes to IronPython. I need to call a py script from an ASP.NET website, and have the following code:
var ipy = IronPython.Hosting.Python.CreateRuntime();
dynamic test = ...
8
votes
2answers
200 views
How do I convert from a .NET DateTime to an IronPython datetime?
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 great ...
8
votes
4answers
474 views
IronPython: What kind of jobs you ever done with IronPython instead of standard .NET languages (e.g., C#)
I am learning IronPython along wiht Python. I'm curious what kinds of tasks you tend to use IronPython to tackle more often than standard .NET languages.
Thanks for any example.
8
votes
3answers
2k views
What IronPython IDE should I use?
This question probably looks a lot like IDE for ironpython on windows question here on stackoverflow. But I read the answers on that question I still have no idea what IDE I should use. What I'm ...
8
votes
8answers
2k views
Extending C# .NET application - build a custom scripting language or not?
I need to build a scripting interface for my C# program that does system level testing of embedded firmware.
My application contains libraries to fully interact with the devices. There are separate ...
8
votes
4answers
12k views
Find and Replace Inside a Text File from a Bash Command
Whats the simplest way to do a find and replace for a given input string, say "abc", and replace with another string, say "XYZ" - the the file, /tmp/file.txt?
I am wrtting an app and using IronPython ...
8
votes
8answers
1k views
IronPython For Unit Testing over C#
We know that Python provides a lot of productivity over any compiled languages. We have programming in C# & need to write the unit test cases in C# itself. If we see the amount of code we write ...
8
votes
4answers
1k views
Dynamic .NET language performance?
I understand that IronPython is an implementation of Python on the .NET platform just like IronRuby is an implementation of Ruby and F# is more or less OCaml.
What I can't seem to grasp is whether ...
7
votes
6answers
364 views
is WPF THE choice for windows apps? [closed]
I am developping in Ironpython with Visual Studio 2010 through PTVS.
I see that WPF is quite slow compared to the silverlight equivalent... at least to me.
My program does a lot of calculations but ...
7
votes
3answers
310 views
List of modules working with ironpython
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
...
7
votes
3answers
1k views
Compiling an IronPython WPF project to exe
What is the best way to pack up an IronPython application for deployment? After scouring the web the best thing I've come up with (and what I'm currently doing) is using clr.CompileModules() to glue ...
7
votes
1answer
417 views
Future and stability of IronPython
I am currently looking for a possible way to integrate my C++/C# application with some of my Python scripts. At this point, IronPython seems like the way to go.
However, before proceeding, I would ...
7
votes
8answers
2k views
CPython vs. Jython vs. IronPython for cross-platform GUI development
I'm thinking of making some kind of experimental IDE for digital hardware design. So I can't decide witch platform to choose.
I'm going to have text-editor with syntax highlighting, some vector ...