Python for .NET (pythonnet) is a package that gives Python developers an integration with .NET 4.0+ Common Language Runtime (CLR) on Windows and Mono runtime on Linux and OSX. Python for .NET provides a powerful application scripting tool for .NET developers. Using this package you can script .NET applications in Python or build applications in Python, using .NET components written in languages that target CLR (C#, VB.NET, F#). http://pythonnet.github.io
Python for .NET (pythonnet) is a package that gives Python developers an integration with .NET 4.0+ Common Language Runtime (CLR) on Windows and Mono runtime on Linux and OSX. Python for .NET provides a powerful application scripting tool for .NET developers. Using this package you can script .NET applications in Python or build applications in Python, using .NET components written in languages that target CLR (C#, VB.NET, F#).
Note that this package does not implement Python as a first-class CLR language - it does not produce managed code (IL) from Python code. Rather, it is an integration of the CPython engine with the .NET or Mono runtime. This approach allows you to use CLR services and continue to use existing Python code and C-API extensions while maintaining native execution speeds for Python code. If you are interested in a pure managed-code implementation of the Python language, you should check out the IronPython project, which is in active development.