Michael Foord, Christian Muirhead and Menno Smits are holding a 1/2 day IronPython tutorial.

No previous experience of .NET is expected, but we will be assuming a basic to intermediate level understanding of Python. Having developed with at least one GUI toolkit will be helpful, but not actually required.

Michael, Christian and Menno are all experienced Python developers working at Resolver Systems, where they develop full time with IronPython.

Michael and Christian are the authors of the Manning Publications book IronPython in Action.

Pre-requisites

If you are coming to the IronPython tutorial it would be helpful if you could bring a laptop with the following things pre-installed:

Between the three of us we will have a Windows laptop, a Linux laptop and a Macbook - so we should be able to support you through the tutorial whichever operating system you are running.

Notes For Windows Users

You'll need a data provider for all databases other than SQL Server (System.Data.SqlClient comes with the .NET framework).

Notes For Mac Users

Both Mono 1.9 and Mono 2.0 work fine, but Mono 2.0 is slightly better.

Notes For Linux Users

If your distribution ships with Mono 1.9 (eg. Fedora Core 9) then you should be ready to go. Just check that 'mono --version' reports the correct version and that you get the IronPython prompt when running the 'ipy' command.

If your distribution doesn't support Mono or has an older version, you can use the excellent stand-alone installer. This installer can even be used alongside an already installed version from your distro. To minimise the chance of interference with an existing version, choose to not have the 1.9 version added to your path when asked. For sessions where you'd like to use the new version run 'source /opt/mono-1.9.1/bin/setup.sh'. This will add the new version to your $PATH for that shell only.

Mono 2.0 Preview 2 also works fine.

The standalone Mono installer ships with data providers for both sqlite and Postgresql so you shouldn't need to install these. If you'd like to use the MySQL provider you'll need to install it separately. Download the Windows binaries (yes this works) as a .zip and extract. Install MySql.Data.dll using something like

gacutil -i MySql.Data.dll -gacdir /opt/mono-1.9.1

Replace the directory with the base directory of your Mono installation.

Topics Covered

The tutorial, as well as a general introduction to IronPython), will take you through building an example application (yes you will be doing coding). Topics we are hoping to cover include:

IronPythonTutorial (last edited 2008-09-19 10:45:06 by MichaelFoord)