Edgewall Software

IronPython

IronPython is a Python implementation targeting the .NET and Mono platforms. It is Apache licensed and features the following:

  • Fast: IronPython-0.6 is up to 1.7x faster than Python-2.3 on the standard pystone benchmark. A performance report is contained in this paper for PyCon 2004.
  • Integrated with the Common Language Runtime: IronPython code can easily use CLR libraries and Python classes can extend CLR classes.
  • Fully dynamic: IronPython supports an interactive interpreter and transparent on-the-fly compilation of source files just like standard Python.
  • Optionally static: IronPython also supports static compilation of Python code to produce static executables (.exe's) that can be run directly or static libraries (.dll's) that can be called from other CLR languages including C#, VB, managed C++ and many more. Note: static compilation is only partially implemented in the 0.6 public release. This will need further development before being useful.
  • Managed and verifiable: IronPython generates verifiable assemblies with no dependencies on native libraries that can run in environments which require verifiable managed code.
Last modified 14 months ago Last modified on Mar 1, 2023, 9:36:13 AM
Note: See TracWiki for help on using the wiki.