This wiki is in the process of being archived due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies. Edits are discouraged.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.

Jython modules

JythonFaq


What parts of the Python library are supported?

The good news is that Jython now supports almost all of the standard Python library.

If there is some standard Python module that you have a real need for that doesn't work with Jython yet, please file a bug.


Can I use the python DB API from Jython?

Use zxJDBC which gives data database connectivity from Jython using the Python DB API 2.0 interface. For more information about using zxJDBC see:

- http://www.jython.org/docs/zxjdbc.html

Note: the use of zxJDBC is now discouraged in favour of JyJDBC. One reason for that is the lack of testing in zxJDBC, which makes non trivial to change it.

- https://code.google.com/p/jyjdbc/


Can I use the Numeric package from Jython?

Take a look at at Tim Hochberg's Java implementation of Numeric, JNumeric.

- http://jnumerical.sourceforge.net/index.html


2026-02-14 16:30