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 PyPi version GitHub release PyPI license

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 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.3.1.tar.gz (126.7 kB view details)

Uploaded Source

Built Distribution

py4j_example-0.3.1-py3-none-any.whl (125.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for py4j-example-0.3.1.tar.gz
Algorithm Hash digest
SHA256 42358cf872970c317130993a87c9382e8b287dcd84f0f0cd88c9cf6c0a4eae47
MD5 f9abbcb15163c22a4d7a38d11a0d5f32
BLAKE2b-256 ad6e705efb0323b0ceb2cece4532746d9b2dc5f1c82e6ffc7bc6dff6a4d57a14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for py4j_example-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7b5bb4065838b29db8f254fdaa7d225830b07f4f21fff08e24806965d0f263ea
MD5 72407777f8c0355bcf80535a223d7054
BLAKE2b-256 9001243f274eba85f680141e2a92a0609eaf00152935f9faa411ee23a89c7f79

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