jtypes.javabridge
=================
Python wrapper for the Java Native Interface.
Overview
========
The |package_bold| package makes it easy to start a Java virtual machine (JVM)
from Python and interact with it. Python code can interact with the JVM using
a low-level API or a more convenient high-level API.
`PyPI record`_.
`Documentation`_.
| |package_bold| is an almost fully compliant implementation of Lee Kamentsky's
and Vebjorn Ljosa's good known **Javabridge** package by reimplementing whole
its functionality in a clean Python instead of Cython and C.
| |package_bold| package is closely based on the `jvm`_ and `jni`_ Python packages.
About javabridge:
-----------------
Borrowed from the `original website`_:
| The **javabridge** Python package makes it easy to start a Java virtual machine
(JVM) from Python and interact with it.
| Python code can interact with the JVM using a low-level API or a more convenient
high-level API.
The **javabridge** was developed for and is used by the cell image analysis
software `CellProfiler <https://cellprofiler.org/>`_ together with
`python-bioformats <https://github.com/CellProfiler/python-bioformats/>`_
to interface to various Java code, including `Bio-Formats <https://loci.wisc.edu/
software/bio-formats>`_ and `ImageJ <https://developer.imagej.net/>`_.
Requirements
============
- Java Runtime (JRE) or Java Development Kit (JDK), and NumPy (not mandatory but
highly recommended).
Installation
============
Prerequisites:
+ Python 3.9 or higher
* https://www.python.org/
* Java 11 is a primary test environment.
+ pip and setuptools
* https://pypi.org/project/pip/
* https://pypi.org/project/setuptools/
To install run:
.. parsed-literal::
python -m pip install --upgrade |package|
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:
.. parsed-literal::
git clone |respository| |package|
and run:
.. parsed-literal::
python -m pip install ./|package|
or on development mode:
.. parsed-literal::
python -m pip install --editable ./|package|
License
=======
| |copyright|
| Licensed under the BSD license
| https://opensource.org/licenses/BSD-3-Clause
| Please refer to the accompanying LICENSE file.
Authors
=======
* Adam Karpierz <adam@karpierz.net>
.. |package| replace:: jtypes.javabridge
.. |package_bold| replace:: **jtypes.javabridge**
.. |copyright| replace:: Copyright (c) 2014-2024, Adam Karpierz
.. |respository| replace:: https://github.com/karpierz/jtypes.javabridge.git
.. _Development page: https://github.com/karpierz/jtypes.javabridge
.. _PyPI record: https://pypi.org/project/jtypes.javabridge/
.. _Documentation: https://jtypesjavabridge.readthedocs.io/
.. _jvm: https://pypi.org/project/jvm/
.. _jni: https://pypi.org/project/jni/
.. _original website: https://pythonhosted.org/javabridge/
Changelog
=========
4.0.4b1 (2024-11-08)
--------------------
- Add support for Python 3.9, 3.10, 3.11, 3.12, 3.13
- Drop support for Python 3.5, 3.6, 3.7, 3.8
- Drop support for Python2.
- Add support for PyPy 3.9 and 3.10
- Synchro with javabridge master branch (v4.0.4).
- General update, improvements and cleanup.
- Update of Mozilla Rhino.
- Copyright year update.
- Setup update and improvements.
1.0.18b3 (2018-11-08)
---------------------
- Update of the required setuptools version.
- Minor setup and tests improvements.
- Last release for Python2.
1.0.18b1 (2018-10-01)
---------------------
- Synchro with javabridge master branch (v.1.0.18+).
1.0.17b2 (2018-05-29)
---------------------
- Synchro with javabridge master branch.
- Bug fixes and improvements in Java 9 support.
- Update of Mozilla Rhino.
- Update of the required setuptools version.
1.0.14b4 (2018-02-26)
---------------------
- Improvement and simplification of setup and packaging.
1.0.14b3 (2018-01-29)
---------------------
- Development moved to github.
- General improvements and update.
1.0.14b2 (2017-01-01)
---------------------
- Second beta release.
- Version numbering in sync. with the original javabridge.
0.1.1a1 (2014-10-05)
--------------------
- Initial version.
Raw data
{
"_id": null,
"home_page": null,
"name": "jtypes.javabridge",
"maintainer": "Adam Karpierz",
"docs_url": null,
"requires_python": "<4.0.0,>=3.9.0",
"maintainer_email": "adam@karpierz.net",
"keywords": "jni, jvm, jtypes, jt, jpype, jep, pyjnius, jpy, javabridge, pyjava, jcc, py4j, jython, java, pythonjava, rubicon-java",
"author": "Adam Karpierz",
"author_email": "adam@karpierz.net",
"download_url": "https://files.pythonhosted.org/packages/d9/c8/a693ded5692ba8d0d2256b6dbb0533a6f1b846919be60bc9ec5fe0841cf9/jtypes_javabridge-4.0.4b1.zip",
"platform": "any",
"description": "jtypes.javabridge\r\n=================\r\n\r\nPython wrapper for the Java Native Interface.\r\n\r\nOverview\r\n========\r\n\r\nThe |package_bold| package makes it easy to start a Java virtual machine (JVM)\r\nfrom Python and interact with it. Python code can interact with the JVM using\r\na low-level API or a more convenient high-level API.\r\n\r\n`PyPI record`_.\r\n\r\n`Documentation`_.\r\n\r\n| |package_bold| is an almost fully compliant implementation of Lee Kamentsky's\r\n and Vebjorn Ljosa's good known **Javabridge** package by reimplementing whole\r\n its functionality in a clean Python instead of Cython and C.\r\n| |package_bold| package is closely based on the `jvm`_ and `jni`_ Python packages.\r\n\r\nAbout javabridge:\r\n-----------------\r\n\r\nBorrowed from the `original website`_:\r\n\r\n| The **javabridge** Python package makes it easy to start a Java virtual machine\r\n (JVM) from Python and interact with it.\r\n| Python code can interact with the JVM using a low-level API or a more convenient\r\n high-level API.\r\n\r\nThe **javabridge** was developed for and is used by the cell image analysis\r\nsoftware `CellProfiler <https://cellprofiler.org/>`_ together with\r\n`python-bioformats <https://github.com/CellProfiler/python-bioformats/>`_\r\nto interface to various Java code, including `Bio-Formats <https://loci.wisc.edu/\r\nsoftware/bio-formats>`_ and `ImageJ <https://developer.imagej.net/>`_.\r\n\r\nRequirements\r\n============\r\n\r\n- Java Runtime (JRE) or Java Development Kit (JDK), and NumPy (not mandatory but\r\n highly recommended).\r\n\r\nInstallation\r\n============\r\n\r\nPrerequisites:\r\n\r\n+ Python 3.9 or higher\r\n\r\n * https://www.python.org/\r\n * Java 11 is a primary test environment.\r\n\r\n+ pip and setuptools\r\n\r\n * https://pypi.org/project/pip/\r\n * https://pypi.org/project/setuptools/\r\n\r\nTo install run:\r\n\r\n .. parsed-literal::\r\n\r\n python -m pip install --upgrade |package|\r\n\r\nDevelopment\r\n===========\r\n\r\nPrerequisites:\r\n\r\n+ Development is strictly based on *tox*. To install it run::\r\n\r\n python -m pip install --upgrade tox\r\n\r\nVisit `Development page`_.\r\n\r\nInstallation from sources:\r\n\r\nclone the sources:\r\n\r\n .. parsed-literal::\r\n\r\n git clone |respository| |package|\r\n\r\nand run:\r\n\r\n .. parsed-literal::\r\n\r\n python -m pip install ./|package|\r\n\r\nor on development mode:\r\n\r\n .. parsed-literal::\r\n\r\n python -m pip install --editable ./|package|\r\n\r\nLicense\r\n=======\r\n\r\n | |copyright|\r\n | Licensed under the BSD license\r\n | https://opensource.org/licenses/BSD-3-Clause\r\n | Please refer to the accompanying LICENSE file.\r\n\r\nAuthors\r\n=======\r\n\r\n* Adam Karpierz <adam@karpierz.net>\r\n\r\n.. |package| replace:: jtypes.javabridge\r\n.. |package_bold| replace:: **jtypes.javabridge**\r\n.. |copyright| replace:: Copyright (c) 2014-2024, Adam Karpierz\r\n.. |respository| replace:: https://github.com/karpierz/jtypes.javabridge.git\r\n.. _Development page: https://github.com/karpierz/jtypes.javabridge\r\n.. _PyPI record: https://pypi.org/project/jtypes.javabridge/\r\n.. _Documentation: https://jtypesjavabridge.readthedocs.io/\r\n.. _jvm: https://pypi.org/project/jvm/\r\n.. _jni: https://pypi.org/project/jni/\r\n.. _original website: https://pythonhosted.org/javabridge/\r\n\r\nChangelog\r\n=========\r\n\r\n4.0.4b1 (2024-11-08)\r\n--------------------\r\n- Add support for Python 3.9, 3.10, 3.11, 3.12, 3.13\r\n- Drop support for Python 3.5, 3.6, 3.7, 3.8\r\n- Drop support for Python2.\r\n- Add support for PyPy 3.9 and 3.10\r\n- Synchro with javabridge master branch (v4.0.4).\r\n- General update, improvements and cleanup.\r\n- Update of Mozilla Rhino.\r\n- Copyright year update.\r\n- Setup update and improvements.\r\n\r\n1.0.18b3 (2018-11-08)\r\n---------------------\r\n- Update of the required setuptools version.\r\n- Minor setup and tests improvements.\r\n- Last release for Python2.\r\n\r\n1.0.18b1 (2018-10-01)\r\n---------------------\r\n- Synchro with javabridge master branch (v.1.0.18+).\r\n\r\n1.0.17b2 (2018-05-29)\r\n---------------------\r\n- Synchro with javabridge master branch.\r\n- Bug fixes and improvements in Java 9 support.\r\n- Update of Mozilla Rhino.\r\n- Update of the required setuptools version.\r\n\r\n1.0.14b4 (2018-02-26)\r\n---------------------\r\n- Improvement and simplification of setup and packaging.\r\n\r\n1.0.14b3 (2018-01-29)\r\n---------------------\r\n- Development moved to github.\r\n- General improvements and update.\r\n\r\n1.0.14b2 (2017-01-01)\r\n---------------------\r\n- Second beta release.\r\n- Version numbering in sync. with the original javabridge.\r\n\r\n0.1.1a1 (2014-10-05)\r\n--------------------\r\n- Initial version.\r\n",
"bugtrack_url": null,
"license": "BSD license ; https://opensource.org/licenses/BSD-3-Clause",
"summary": "Running and interacting with the JVM from Python (ctypes/cffi-based javabridge).",
"version": "4.0.4b1",
"project_urls": {
"Documentation": "https://jtypesjavabridge.readthedocs.io/",
"Download": "https://pypi.org/project/jtypes.javabridge/",
"Homepage": "https://pypi.org/project/jtypes.javabridge/",
"Issues": "https://github.com/karpierz/jtypes.javabridge/issues",
"Source": "https://github.com/karpierz/jtypes.javabridge"
},
"split_keywords": [
"jni",
" jvm",
" jtypes",
" jt",
" jpype",
" jep",
" pyjnius",
" jpy",
" javabridge",
" pyjava",
" jcc",
" py4j",
" jython",
" java",
" pythonjava",
" rubicon-java"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "b02a3f1ff5b49c2a7e42aace6d93f09df7f3757cc330094a1a230704f40297d5",
"md5": "fc83755b27596e1670618132f83ba14d",
"sha256": "82df5e5e7b05f906d36a31d82c6514adbad26cf930ae850ec1fd8ebe41e7ae12"
},
"downloads": -1,
"filename": "jtypes.javabridge-4.0.4b1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "fc83755b27596e1670618132f83ba14d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0.0,>=3.9.0",
"size": 55653,
"upload_time": "2024-11-10T12:30:04",
"upload_time_iso_8601": "2024-11-10T12:30:04.279070Z",
"url": "https://files.pythonhosted.org/packages/b0/2a/3f1ff5b49c2a7e42aace6d93f09df7f3757cc330094a1a230704f40297d5/jtypes.javabridge-4.0.4b1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9c8a693ded5692ba8d0d2256b6dbb0533a6f1b846919be60bc9ec5fe0841cf9",
"md5": "db21b1d3f4eaee57db63f43e44c8a5e4",
"sha256": "e32275be0c384174e76c9f75930d9140104155818239aba37c854ee28dfe6a46"
},
"downloads": -1,
"filename": "jtypes_javabridge-4.0.4b1.zip",
"has_sig": false,
"md5_digest": "db21b1d3f4eaee57db63f43e44c8a5e4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0.0,>=3.9.0",
"size": 494121,
"upload_time": "2024-11-10T12:30:06",
"upload_time_iso_8601": "2024-11-10T12:30:06.027407Z",
"url": "https://files.pythonhosted.org/packages/d9/c8/a693ded5692ba8d0d2256b6dbb0533a6f1b846919be60bc9ec5fe0841cf9/jtypes_javabridge-4.0.4b1.zip",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-10 12:30:06",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "karpierz",
"github_project": "jtypes.javabridge",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "jtypes.javabridge"
}