Differences between revisions 43 and 44
Revision 43 as of 2014-03-13 22:38:09
Size: 3423
Comment:
Revision 44 as of 2022-09-25 12:38:41
Size: 3683
Editor: HuntBlanchat
Comment: updating broken links
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
[[http://ironpython.net|IronPython]] is an open source implementation of Python for the .NET CLR and Mono, originally created by [[http://hugunin.net/index.html|Jim Hugunin]]. [[https://ironpython.net|IronPython]] is an open source implementation of Python for the .NET CLR and Mono, originally created by [[http://hugunin.net/index.html|Jim Hugunin]].
Line 5: Line 5:
You can get news and download the latest version fromt the projects website: http://ironpython.codeplex.com/ You can get news and download the latest version fromt the projects website: https://ironpython.net/
Line 22: Line 22:
A book on IronPython for Python and .NET developers: [[http://www.ironpythoninaction.com/|IronPython in Action]]. A book on IronPython for Python and .NET developers: [[https://www.manning.com/books/ironpython-in-action|IronPython in Action]].
Line 24: Line 24:
A useful resource for IronPython code examples, is the [[http://www.ironpython.info|IronPython Cookbook]]. A useful resource for IronPython code examples, is the [[http://web.archive.org/web/20190823082138/http://www.ironpython.info:80/index.php?title=Main_Page|IronPython Cookbook (archive)]].
Line 27: Line 27:
[[http://www.apress.com/book/view/9781430219620|Pro IronPython]]. [[https://link.springer.com/book/10.1007/978-1-4302-1963-7|Pro IronPython]].
Line 29: Line 29:
[[http://www.zetcode.com/tutorials/ironpythontutorial/|IronPython Winforms tutorial]] at [[http://www.zetcode.com/|ZetCode]]. [[https://web.archive.org/web/20191130090900/http://www.zetcode.com/tutorials/ironpythontutorial/|IronPython Winforms tutorial (archive)]] at [[http://www.zetcode.com/|ZetCode]].
Line 36: Line 36:
 * 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.  * 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 [[https://web.archive.org/web/20150504021553/http://boo.codehaus.org/Gotchas+for+Python+Users|Gotchas for Python Users (archive)]] for specific comparisons between boo and CPython.
Line 43: Line 43:
[[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. [[https://web.archive.org/web/20050225022729/http://www.zope.org/Members/Brian/PythonNet/index_html|Python for .NET (archive)]] is the reverse of IronPython, it lets you access .NET assemblies from CPython.

IronPython

IronPython is an open source implementation of Python for the .NET CLR and Mono, originally created by Jim Hugunin.

You can get news and download the latest version fromt the projects website: https://ironpython.net/

IronPython uses the Dynamic Language Runtime, a framework for writing dynamic languages for .NET which originated in IronPython 1. It also runs on Silverlight, a .NET 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 (archive).

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

IronPython Winforms tutorial (archive) 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 (archive) 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.