Metadata-Version: 1.1
Name: jpy
Version: 0.7.4
Summary: Bi-directional Python-Java bridge
Home-page: https://github.com/bcdev/jpy
Author: Brockmann Consult GmbH
Author-email: norman.fomferra@brockmann-consult.de
License: GPL 3
Download-URL: https://pypi.python.org/pypi/jpy/0.7.4
Description: ######################
        jpy Python-Java bridge
        ######################
        
        jpy is a **bi-directional** Python-Java bridge which you can use to embed Java code in Python programs or the other
        way round. It has been designed particularly with regard to maximum data transfer speed between the two languages.
        It comes with a number of outstanding features:
        
        * Fully translates Java class hierarchies to Python
        * Transparently handles Java method overloading
        * Support of Java multi-threading
        * Fast and memory-efficient support of primitive Java array parameters via `Python buffers <http://docs.python.org/3.3/c-api/buffer.html>`_
          (e.g. `numpy arrays <http://docs.scipy.org/doc/numpy/reference/arrays.html>`_)
        * Support of Java methods that modify primitive Java array parameters (mutable parameters)
        * Java arrays translate into Python sequence objects
        * Java API for accessing Python objects (``jpy.jar``)
        
        jpy has been tested with Python 2.7, 3.3, 3.4 and Oracle Java 7 and 8 JDKs. 
        
        The initial development of jpy has been driven by the need to write Python extensions to an established scientific
        imaging application programmed in Java, namely the `BEAM <http://www.brockmann-consult.de/beam/>`_ toolbox
        funded by the European Space Agency (ESA).
        Writing such Python plug-ins for a Java application usually requires a bi-directional communication between Python and
        Java since the Python extension code must be able to call back into the Java APIs.
        
        For more information please have a look into the `jpy documentation <http://jpy.readthedocs.org/en/latest/>`_.
        
Platform: Python 3.3+
Platform: Java 1.7
