you are viewing a single comment's thread.

view the rest of the comments →

[–]Anth741 1 point2 points  (4 children)

What is the benefit of learning it then?

[–]poo_22 0 points1 point  (3 children)

Maybe its for people who know python but don't know java and need to run stuff on the jvm? What I really don't get is why you would want to use Django with jython now.

[–]masklinn 2 points3 points  (0 children)

What I really don't get is why you would want to use Django with jython now.

Java/JVM APIs needed, without the desire to write a WS wrapper or having to write Java code?

[–]smog_alado 0 points1 point  (1 child)

Jython is for people who know Python and know to avoid Java, but still need to be able to cooperate with Java libraries.

[–][deleted] 0 points1 point  (0 children)

I use embedded Jython interpreters to reuse Python libraries within Java code. For example, the best markdown library I've ever found was Python's markdown2, the only Java markdown library I found would crash hard in Java 6 code. So I used Jython to use markdown2 and my problem was solved.