Skip to main content

No project description provided

Project description

Py4J - A walkthrough

This project is a simple implementation of Py4J, a Python library that enables Python programs to dynamically access Java objects and methods. The goal of this project is to provide users with a guardrail to implement Py4J in their workflow.

Packaging Status Generic badge Generic badge Generic badge

Getting Started

To get started with Py4J, you will need to have the below in your machine.

  • Java (Java 11 or above) - This project was tested with Java 11
  • Add JAVA_HOME to your environment variables
  • Python (Python 3.x) - This project was tested with Python 3.10.11
  • Optional - Maven (only if you want to build from teh source) - This project's build was tested with Maven 3.9.4 You can find the installation instructions on their respective official websites.

Once you have Java and Python installed, you can proceed with the following steps:

  • Install the package using pip pip install py4j-example

Usage

  • From your terminal, open python

    python

  • Run the below code which will let you use the underlying Java subtract method in python

from py4j_example.app import ApplicationWrapper

wrapper = ApplicationWrapper()
result = wrapper.subtract(2, 1)

print(result)  # will output 1
  • In addition to the subtract method, you can access other Java objects and methods (native and custom) from Python. For example, to call a Java method named getArrayLength that takes a list of integers as a parameter, you can do the following:
from py4j_example.app import ApplicationWrapper

wrapper = ApplicationWrapper()
result = wrapper.getArrayLength([1, 2, 3])

print(result)  # will output 3

Note: Python doesn't have an equivalent data type for Java's int[], so I've constructed a Java array from Python using Py4J. Refer to this code.

Extending the application

You can extend the application by adding your own Java classes and methods.

  • Create a new Java class in the src/main/java/org/example/ directory or modify the existing Application.java class
  • Add your custom methods to the class
  • Add unit test cases for the Java methods in the src/test/java/org/example/ directory
  • Build the project using mvn clean package
  • Modify the pyhton/app.py file to add your custom methods
  • Add unit tests for your Python methods in the python/tests/ directory
  • Run the tests using python -m pytest from the project root directory

Contributing

Contributions to this project are welcome. If you have any suggestions, bug reports, or feature requests, please open an issue on the GitHub repository.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py4j-example-0.2.0.tar.gz (126.7 kB view details)

Uploaded Source

Built Distribution

py4j_example-0.2.0-py3-none-any.whl (124.9 kB view details)

Uploaded Python 3

File details

Details for the file py4j-example-0.2.0.tar.gz.

File metadata

  • Download URL: py4j-example-0.2.0.tar.gz
  • Upload date:
  • Size: 126.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for py4j-example-0.2.0.tar.gz
Algorithm Hash digest
SHA256 5e017aeb14c1e63dcf696d48d42768a5fb9d1e98a9546fe4e2d19f3bdd703ed9
MD5 78ab5684c4d9af2ef333f5bb606c7b20
BLAKE2b-256 535ef7284ed858f650f1d7fa990be0bbd267914a7ee5634bc0d95c31f7874deb

See more details on using hashes here.

File details

Details for the file py4j_example-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: py4j_example-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 124.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for py4j_example-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ce9d088acccc29dff8438c408d54d8f50812a310ee113e8f55ccdadb1d30633e
MD5 77dd8acccbed4baa268cb45208047e08
BLAKE2b-256 5ccea01fe10a50d3a7729e216853a4b97421319891c034e58a26be9986eb982f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page