user772401
user772401

Reputation: 2904

Django on .Net infrastructure?

I was reading this post on Django vs Rails

And the author says

"The also the possibility to deploy Django apps on Java or .Net infrastructure using Jython or IronPython."

How does one deploy a Django app on .Net infrasture? I couldn't find any tutorials explaining such a thing. Or am I mis-understanding the author?

Also, when says he "app", does he mean like one "app" from a Django project or app as in full Django project (i.e. a web app).

Any help? Thanks in advance.

Upvotes: 0

Views: 199

Answers (1)

schacki
schacki

Reputation: 9533

Jython is a Python interpreter implemented in Java and Ipython is a Python interpreter implemented in .Net. Consequently you can user either of those to run Python programs on the respective platform, utilizing all the benefits (and downsides) of that platform. Based on the article, I am pretty sure that the author meant Django projects when talking about apps.

Upvotes: 2

Related Questions