IronPython

FacebookTwitter
Python

Python is an easy to learn, powerful programming language. It has efficient high-level data structures and a simple but effective approach to object-oriented programming. Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms. The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python Web site, http://www.python.org/ , and may be freely distributed. The same site also contains distributions of and pointers to many free third party Python modules, programs and tools, and additional documentation. The Python interpreter is easily extended with new functions and data types implemented in C or C++ (or other languages callable from C).

Python Tutorial — Python v2.6.4

http://docs.python.org/tutorial/
One of the major use cases for IronPython is embedding in .NET applications to provide user scripting. The hosting APIs make it easy to experiment with embedding IronPython. Chris Umbel has written up a blog entry demonstrating the IronPython 2.6 hosting API and giving an example of exposing an API to Python scripts from a C# applications. At several points in my .Net development career I've had the need to make an application I wrote scriptable. http://ironpython-urls.blogspot.com/2009/11/scripting-your-net-applications-with.html

Scripting Your .Net Applications with IronPython

http://lists.ironpython.com/pipermail/users-ironpython.com/2007-November/006032.html Dino Viehland dinov at exchange.microsoft.com Fri Nov 30 09:48:01 PST 2007 There's two ways to do this: One is to expose a static (or even an instance) class to Python code which your C# code accesses, the other is to access the EngineModule and pull variables out that Python code has set. The first can be done by: PythonEngine pe = new PythonEngine(); EngineModule em = pe.CreateModule(); DynamicType dt = Ops.GetDynamicTypeFromType(typeof(MyType)); em.Globals["Foo"] = dt; now Python code executed in this module can do Foo.Xyz = 3 and so on...

Variable sharing between C# and iron python

http://blogs.microsoft.co.il/blogs/berniea/archive/2008/12/04/extending-your-c-application-with-ironpython.aspx

Extending your C# application with IronPython - berniea

Recently I’ve started messing around with IronPython; IronPython is the first language of a set of languages that rely on the DLR (Dynamic Language Runtime), the DLR is a hosting platform and a dynamic type system, capable of running dynamic languages on top of the CLR. I really like the concept of a dynamic language, although it isn’t such a new concepts, I think it will be revived and gain more audience with the upcoming .Net Framework 4.0. One very useful thing you can do with IronPython (or any other language on top of the DLR) is to use it as an embedded scripting engine in your.Net application. What can we gain from such a scripting engine? I think that in almost every enterprise application project at some point you’ll come to the conclusion that you need extension points in the system. It can be a Rule Engine, a Workflow of some sort or a pluggable User Interface.

Using IronPython in WPF to Evaluate Expressions

http://www.codeproject.com/Articles/38227/Using-IronPython-in-WPF-to-Evaluate-Expressions Introduction For those who follow my articles, you may have expected a new one in my MVVM series, don't worry that is on its way very soon, but there is always time for a little article. You see I have just read a little book on IronPython and thought it a pretty cool language.
Introduction This article (and the code) demonstrates how to use the IronPython engine inside of a C# Windows Form application. Several different types of interactions (class in C# accessed from Python, class in Python accessed from C#, etc. are demonstrated). Background IronPython is an implementation of the Python language which runs on the .NET Framework.

Embedding IronPython in a C# Application

http://www.codeproject.com/Articles/53611/Embedding-IronPython-in-a-C-Application
ack before version 1.0 of the CLR shipped, Microsoft engaged a variety of commercial and academic organizations to produce languages that ran on .NET; an effort code-named "Project 7." One of those languages was Python for .NET, developed by ActiveState. That worked, but Project 7 discovered that the "speed of the current system is so low as to render the current implementation useless for anything beyond demonstration purposes. 1 " Furthermore, while they blamed some of the performance problems on "the simple implementation of the Python for .NET compiler", they also claimed that "[s]ome of the blame for this slow performance lies in the domain of .NET internals and Reflection::Emit". Largely due to ActiveState's experience, it became conventional wisdom that "[t]he CLI is, by design, not friendly to dynamic languages. 2 " This conclusion caught the attention of Jim Huginin, the original creator of Jython—an implementation of Python for the Java VM. http://www.devx.com/codemag/Article/39904

Introducing IronPython

A 3 minute guide to embedding IronPython in a C# application

' Steven Nagy ' on Thu, 05 Mar 2009 19:33:10 GMT, sez: Interesting... (the IronPython integration that is, not this article). Now we can embed Quake2 style console popdowns in all our applications. http://www.secretgeek.net/host_ironpython.asp
http://www.redmountainsw.com/wordpress/2007/06/08/embedding-ironpython-c-calling-python-script/ 01. using (IronPython.Hosting.PythonEngine engine 02. = new IronPython.Hosting.PythonEngine()) 04. engine.Execute(@" 05. def foo(*args, **kwargs): 06. return 'args=%s kwargs=%s' % (args, kwargs)");

Embedding IronPython – C# Calling Python Script Part 1

http://blogs.msdn.com/b/charlie/archive/2009/10/25/running-ironpython.aspx

Getting Started with IronPython

I recently spent some time getting IronPython up and running on my system; I will review what I learned in this post. Hosted inside an interpreter, Python belongs to the same family of scripting tools as VBScript, JavaScript, Perl and Ruby. You can fairly compare Python to a general purpose language such as C#. Developers praise this loosely typed, dynamic language for its ease of use and rapid development capabilities.

CLR Inside Out: IronPython

CLR Inside Out IronPython James Schementi IronPython is the code name for an implementation of the Python programming language written by the CLR team at Microsoft. IronPython runs on the Microsoft ® .NET Framework and supports an interactive console with fully dynamic compilation.