Differences between revisions 1 and 39 (spanning 38 versions)
Revision 1 as of 2004-03-03 17:03:49
Size: 790
Editor: 66
Comment:
Revision 39 as of 2010-09-27 08:59:31
Size: 3502
Editor: MichaelFoord
Comment: Reverting nonsense change.
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
IronPython is [http://hugunin.net/index.html JimHugunin's] early-stage prototype implementation of Python on the .NET CLR. == IronPython ==
Line 3: Line 3:
Early results are promising, but as of March 2004, there have been no further updates since Jim's end-of-2003 post announcing preliminary results: http://primates.ximian.com/~miguel/ironpython IronPython is [[http://hugunin.net/index.html|JimHugunin's]] implementation of Python on the .NET CLR and on Mono.
Line 5: Line 5:
These results were quite promising, showing great performance, even better than CPython 2.3 on the Pystone benchmark, but remember this is an early prototype, not a full implementation. The project has a [[http://ironpython.codeplex.com/|workspace]] where you can get news and download the latest version.
Line 7: Line 7:
These results caused a flurry of discussion, which has since died down, pending more information from Jim.  * Stable Version is 2.0.3 (targeting Python 2.5)
 * Developers Version is 2.6 Beta 3 (targeting Python 2.6)
Line 9: Line 10:
http://www.python.org/~jeremy/weblog/031209a.html
http://www.hole.fi/jajvirta/weblog/20031210T0901.html
http://primates.ximian.com/~miguel/archive/2003/Dec-09.html
IronPython 2 (which uses the Dynamic Language Runtime, a framework for writing dynamic languages for .NET which was abstracted out of IronPython 1) runs on Silverlight, the Microsoft browser plugin that runs on Windows and the Mac (and a Mono port called Moonlight runs on Linux). This means that IronPython can be used for client-side scripting ''in the browser''.

IronPython is a Python compiler. It compiles Python code to in memory bytecode before execution (which can be saved to disk, making binary only distributions possible).

Performance is comparable to CPython - much faster for some things (where it can take advantage of the JIT compiler in the underlying platform), but slower for other things (particularly the built in container types where a lot of work has been done on optimising the CPython types).

Reasons that CPython programmers might be interested in IronPython include:

 * Corporate credibility (introducing new technologies can be very difficult in some companies, if .NET is already established then you may need no excuse to start using IronPython)
 * No GlobalInterpreterLock - IronPython has ''no GIL'' and multi-threaded code can use multi core processors
 * The .NET framework library is ''very big''. Particularly the user interface library Windows Forms is very good.
 * IronPython is easy to embed in .NET applications as a scripting language
 * Easier to extend than CPython (C# is memory managed and C# types can be used directly in IronPython with no wrapping)
 * Silverlight!

A book on IronPython for Python and .NET developers: [[http://www.ironpythoninaction.com/|IronPython in Action]].

A useful resource for IronPython code examples, is the [[http://www.ironpython.info|IronPython Cookbook]].

A book that introduces core concepts of IronPython programming using a .NET–centric approach is
[[http://www.apress.com/book/view/9781430219620|Pro IronPython]].

[[http://www.zetcode.com/tutorials/ironpythontutorial/|IronPython Winforms tutorial]] at [[http://www.zetcode.com/|ZetCode]].

Mozilla announced a project to port the DLR (well, the underlying Core CLR that it uses in fact) to run on their Tamarin JIT. This means that IronPython could also run in future versions of Firefox. (See [[http://wiki.mozilla.org/Tamarin:IronMonkey|IronMonkey]]). Unfortunately this project has not made any progress since its announcement.

== Other Python-Like Languages for .NET/Mono ==

Some other Python-like languages for .NET and Mono include:
 * BooLanguage - Syntax is very similar to Python's, yet the language is statically compiled. It implements many features that have been suggested for [[Python3.0]]. See [[http://boo.codehaus.org/Gotchas+for+Python+Users|Gotchas for Python Users]] for specific comparisons between boo and CPython.
 * [[http://cobra-language.com/|Cobra Language]]



== Accessing .NET from CPython ==

[[http://www.zope.org/Members/Brian/PythonNet/index_html|Python for .NET]] is the reverse of IronPython, it lets you access .NET assemblies from CPython.


----

See also: PythonAndParrot, LoGix, IronPython IDE

IronPython

IronPython is JimHugunin's implementation of Python on the .NET CLR and on Mono.

The project has a workspace where you can get news and download the latest version.

  • Stable Version is 2.0.3 (targeting Python 2.5)
  • Developers Version is 2.6 Beta 3 (targeting Python 2.6)

IronPython 2 (which uses the Dynamic Language Runtime, a framework for writing dynamic languages for .NET which was abstracted out of IronPython 1) runs on Silverlight, the Microsoft browser plugin that runs on Windows and the Mac (and a Mono port called Moonlight runs on Linux). This means that IronPython can be used for client-side scripting in the browser.

IronPython is a Python compiler. It compiles Python code to in memory bytecode before execution (which can be saved to disk, making binary only distributions possible).

Performance is comparable to CPython - much faster for some things (where it can take advantage of the JIT compiler in the underlying platform), but slower for other things (particularly the built in container types where a lot of work has been done on optimising the CPython types).

Reasons that CPython programmers might be interested in IronPython include:

  • Corporate credibility (introducing new technologies can be very difficult in some companies, if .NET is already established then you may need no excuse to start using IronPython)

  • No GlobalInterpreterLock - IronPython has no GIL and multi-threaded code can use multi core processors

  • The .NET framework library is very big. Particularly the user interface library Windows Forms is very good.

  • IronPython is easy to embed in .NET applications as a scripting language

  • Easier to extend than CPython (C# is memory managed and C# types can be used directly in IronPython with no wrapping)

  • Silverlight!

A book on IronPython for Python and .NET developers: IronPython in Action.

A useful resource for IronPython code examples, is the IronPython Cookbook.

A book that introduces core concepts of IronPython programming using a .NET–centric approach is Pro IronPython.

IronPython Winforms tutorial at ZetCode.

Mozilla announced a project to port the DLR (well, the underlying Core CLR that it uses in fact) to run on their Tamarin JIT. This means that IronPython could also run in future versions of Firefox. (See IronMonkey). Unfortunately this project has not made any progress since its announcement.

Other Python-Like Languages for .NET/Mono

Some other Python-like languages for .NET and Mono include:

Accessing .NET from CPython

Python for .NET is the reverse of IronPython, it lets you access .NET assemblies from CPython.


See also: PythonAndParrot, LoGix, IronPython IDE

IronPython (last edited 2022-09-25 12:38:41 by HuntBlanchat)

Unable to edit the page? See the FrontPage for instructions.