Django on IronPython

PythonDjangoIronpython

Python Problem Overview


I am interested in getting an install of Django running on IronPython, has anyone had any success getting this running with some level of success?

If so can you please tell of your experiences, performance, suggest some tips, resources and gotchas?

Python Solutions


Solution 1 - Python

Besides the Jeff Hardy blog post on Django + IronPython mentioned by Tony Meyer, it might be useful to also read Jeff's two other posts in the same series on his struggles with IronPython, easy_install and zlib. The first is Solving the zlib problem which discusses the absence of zlib for IronPython; hence, no easyinstall. Jeff reimplemented zlib based on ComponentAce's zlib.net. And finally, in easy_install on IronPython, Part Deux Jeff discusses some final tweaks that are needed before easy_install can be used with IronPython.

Solution 2 - Python

Solution 3 - Python

This was demoed at last year's PyCon (the details are also available). More recently, Jeff Hardy has blogged about this, including suggestions.

Solution 4 - Python

I don't think Django is yet working on IronPython, but I'm not saying it cannot be done.

Django-ironpython project is a work currently underway to run Django on IronPython. The project has reported 65.7% test pass rate with sqlite on 2nd of May 2010.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionXianView Question on Stackoverflow
Solution 1 - PythonSerxView Answer on Stackoverflow
Solution 2 - PythonbchhunView Answer on Stackoverflow
Solution 3 - PythonTony MeyerView Answer on Stackoverflow
Solution 4 - PythonjsalonenView Answer on Stackoverflow