close
The Wayback Machine - https://web.archive.org/web/20201112004201/https://github.com/IronLanguages/ironpython3
Skip to content
master
Go to file
Code

Latest commit

* Fix .NET 5.0 compile issues

* Install .NET SDKs

* Enable testing on .NET 5.0

* Add .NET 5.0 to VSTS

* Disable packaging for testing

* Temporarily disable some tests on .NET 5.0

* Add some SupportedOSPlatform annotations

* Bump to RC2

* Change TargetFramework of Wpf project

* Update to release

* Update NuGet packages

* Try some C# 9 features

* Disable warnings in analyzer

* Update versions in documentation
75e23a0

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
Oct 9, 2020

README.md

IronPython 3

IronPython3 is NOT ready for use yet. There is still much that needs to be done to support Python 3.x. We are working on it, albeit slowly. We welcome all those who would like to help!

Official Website

IronPython is an open-source implementation of the Python programming language which is tightly integrated with the .NET Framework. IronPython can use the .NET Framework and Python libraries, and other .NET languages can use Python code just as easily.

What? Where?
Windows/Linux/macOS Builds Build status Github build status
Downloads No releases
Help Gitter chat StackExchange

Comparison of IronPython vs. C# for 'Hello World'

C#:

using System;
class Hello
{
    static void Main() 
    {
        Console.WriteLine("Hello World");
    }
}

IronPython:

print("Hello World")

IronPython 3 targets Python 3, including the re-organized standard library, Unicode strings, and all of the other new features.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

Installation

Builds of IronPython 3 are not yet provided.

Build

See the building document

Since the main development is on Windows, Mono bugs may inadvertantly be introduced

  • please report them!

Supported Platforms

IronPython 3 targets .NET Framework 4.6, .NET Core 2.1/3.1 and .NET 5.0. The support for .NET Core and .NET 5 will follow the lifecycle defined on .NET Core and .NET 5 Support Policy.

About

DO NOT USE. Implementation of Python 3.x for .NET Framework that is built on top of the Dynamic Language Runtime.

Topics

Resources

License

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.