Best Resources for Running Jython

I just got my first Jython (and Python) project, and I was wondering what docs, IDEs, etc. best suited for a java buff like me.

I know there are many questions about how to get started with Python, so I ask for things that may be specific to Jython. Where to begin? If this helps, I only run Linux and Solaris.

+4
source share
6 answers

First, I would read python not java . This will give you a good idea of ​​some of the habits you might need to work effectively in Python. As already mentioned, pydev is a pretty good development environment. Although I would say that in the end you will want to learn emacs (but you may just want to learn one at a time).

+11
source

Are you using Eclipse for Java? PyDev is a good Eclipse plugin for Python. PyDev has full Jython support.

+2
source

If you use Netbeans for Java, there will be a good Python plugin .

+2
source

I am surprised that no one has mentioned www.jython.org yet - maybe this is too obvious. I also liked O'Reilly's Jython Essentials book. The book is dated (since 2002), but I still keep it on my bookshelf.

+2
source

Jython user mailing list is a great resource:
https://lists.sourceforge.net/lists/listinfo/jython-users
jython-users@lists.sourceforge.net

There are some good articles at IBM Developerworks that I can no longer find on their website. They are on the jython.org homepage:
Part 1
Part 2

PyDev is a good IDE if you are in Eclipse

+1
source

Book: The Complete Guide to Jython for jython 2.5.

http://jythonpodcast.hostjava.net/jythonbook/

+1
source

All Articles