graalpython
graalpython copied to clipboard
A Python 3 implementation built on GraalVM
I am trying to use graalpy in arch linux. Although the interpreter works, the patches applied seem to lead to compilation errors when trying to install numpy (torch, pandas). In...
Let's say I have a Java class: ```java class Foo { public void bar() { System.out.println("bar"); } } ``` I want to access that `bar` method in python but with...
The plugin requires the `java`-Plugin. If it is not loaded, the plugin will apply it. It adds to task in the `graalpy` section: ``` graalpy { generateManifest installPackages } ```...
_This PR was developed during the seminar "Softwaredesign" at the Hasso-Plattner Institute Potsdam_ Authors: @Olliwehr, @antonykamp Supervisors: @timfel @JensLincke # What did we change? This PR introduces the CRUD operations...
This can be observed when using `pyfiglet` with the maven plugin. The code of pyfiglet has this ```python path = importlib.resources.files('pyfiglet.fonts').joinpath(fn) if path.exists(): ... ``` `path.exists()` uses a `stat` call,...
Hi! I am trying to use GraalVM from Kotlin to execute a Python script. I need to pass some input parameters, evaluate a script and read the result as a...
After I have added the plugin as described here, I get the following error message https://www.graalvm.org/latest/reference-manual/python/ ``` Plugin [id: 'org.graalvm.python', version: '24.1.0'] was not found in any of the following...
This trace appears to be non-deterministic, but I encountered it, and figured I'd post it in case the trace is useful. It isn't blocking me, so feel free to just...
This was an experimental API that has become stable with 3.13 and truststore (and thus pip) are relying on it.
`PyModule_GetFilenameObject` is not implemented in GraalPy, it seems. There is the older and deprecated `PyModule_GetFilename` (both are part of the Stable ABI), as well, I didn't check this one. pybind11...