Jython.
Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform..
Here is the list of declaration for jython. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.python</groupId> <artifactId>jython</artifactId> <version>2.2</version> </dependency>
If you think this Maven repository POM file listing for jython is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Jython Software License
URL: http://www.jython.org/Project/license.html.
The following packages are defined in the jython-2.2.jar
com.ziclix.python.sql com.ziclix.python.sql.connect com.ziclix.python.sql.handler com.ziclix.python.sql.pipe com.ziclix.python.sql.pipe.csv com.ziclix.python.sql.pipe.db com.ziclix.python.sql.procedure com.ziclix.python.sql.util javatests jxxload_help org.python.compiler org.python.core org.python.core.adapter org.python.modules org.python.modules.sets org.python.modules.sre org.python.modules.time org.python.parser org.python.parser.ast org.python.rmi org.python.util
Here is the content of the POM file.
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.python</groupId> <artifactId>jython</artifactId> <packaging>jar</packaging> <name>Jython</name> <version>2.2</version> <url>http://www.jython.org/</url> <description> Jython is an implementation of the high-level, dynamic, object-oriented language Python written in 100% Pure Java, and seamlessly integrated with the Java platform. It thus allows you to run Python on any Java platform. </description> <licenses> <license> <name>Jython Software License</name> <url>http://www.jython.org/Project/license.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://jython.svn.sourceforge.net/viewvc/jython/</url> </scm> </project>