JPype, Jython or JEPP?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • RC

    JPype, Jython or JEPP?

    Dear Python Experts/Programmers,

    I'm going to write a Python program to
    access some Java class methods from our *.jar
    file.
    In your opinion, which way is the good (not the best)
    way to do that?

    JPype?
    Download JPype for free. JPype is an effort to allow python programs full access to java class libraries. This is achieved not through re-implementing Python, as Jython/JPython has done, but rather through interfacing at the native level in both Virtual Machines.


    Jython?


    JEPP? (I don't think so)
    Download Java Embedded Python for free. Jepp (Java Embedded Python) embeds CPython in Java. It is stable and thread-safe, and is suitable for many different scripting needs.


    Others?
    http://..... ?

    Thank Q very much in advance!
  • Paul Boddie

    #2
    Re: JPype, Jython or JEPP?

    On 25 Jun, 16:10, RC <raymond.c...@n ospam.noaa.govw rote:
    Dear Python Experts/Programmers,
    >
    I'm going to write a Python program to
    access some Java class methods from our *.jar
    file.
    In your opinion, which way is the good (not the best)
    way to do that?
    You've already listed some of the candidates from this page:



    One promising candidate is JCC, not least because the PyLucene project
    is completely dependent on it.

    Paul

    Comment

    Working...