jtypes.pyjava

A Python to Java bridge (ctypes/cffi-based PyJava).


Keywords
jni, jvm, jtypes, jt, jpype, jep, pyjnius, jpy, javabridge, pyjava, jcc, py4j, jython, java, pythonjava, rubicon-java
Licenses
MIT/MIT
Install
pip install jtypes.pyjava==0.1.5b6

Documentation

jtypes.pyjava

A Python to Java bridge.

Overview

jtypes.pyjava is a bridge allowing to use Java classes in regular Python code.

PyPI record.

Documentation.

jtypes.pyjava is an almost fully compliant implementation of Remi Rampin's PyJava package by reimplementing whole its functionality in a clean Python instead of C.
jtypes.pyjava package is closely based on the jvm and jni Python packages.

About PyJava:

Borrowed from the original website:

PyJava is a bridge allowing to use Java classes in regular Python code.
It is similar to JPype.

It is a C extension that uses JNI to access a Java virtual machine, meaning that it can be used anywhere Python is available. It is not a different interpreter like Jython and does not require anything, other than a JRE. The JVM dynamic library is load dynamically through pyjava.start() (some basic logic for locating this library on major platforms will be provided).

The integration with Java code is meant to be as complete as possible, allowing to use Java and Python objects seemlessly and converting objects back and forth when Java code is called. Furthermore, subclassing Java classes or interfaces in Python code to allow callback from Java is planned for the 0.2 version.

Please note that this extension is still at a very early stage of development and probably shouldn't be used for anything.

Requirements

  • Either the Sun/Oracle JRE/JDK or OpenJDK.

Installation

Prerequisites:

To install run:

python -m pip install --upgrade jtypes.pyjava

Development

Prerequisites:

  • Development is strictly based on tox. To install it run:

    python -m pip install --upgrade tox
    

Visit development page.

Installation from sources:

clone the sources:

git clone https://github.com/karpierz/jtypes.pyjava.git jtypes.pyjava

and run:

python -m pip install ./jtypes.pyjava

or on development mode:

python -m pip install --editable ./jtypes.pyjava

License

Copyright (c) 2016-2022 Adam Karpierz
Licensed under the MIT License
Please refer to the accompanying LICENSE file.

Authors