jep icon indicating copy to clipboard operation
jep copied to clipboard

Embed Python in Java

Results 153 jep issues
Sort by recently updated
recently updated
newest added

I have created 10 Java threads, and I hope to create one SubInterpreter for each thread ,but the following error still occurred.,please help children /AppleInternal/BuildRoot/Library/Caches/com.apple.xbs/Sources/python3/python3-110/Python/Modules/_decimal/libmpdec/context.c:55: warning: mpd_setminalloc: ignoring request to...

Please look at the following simple test: ``` public class SimpleJepForSubInterpreterAndNumpy { public static void main(String[] args) throws InterruptedException { Thread t = new Thread(() -> { try (Interpreter interp...

We're running into an exception with Jep 4.0.0+ in Polynote when certain Scala types are made available to Jep. For example, here's what we get with a Scala `List` type:...

defect
scala

In my project I need to detect, whether some Python object, created by my user in his Python script, has some attribute (usually simple field) or no. If it has,...

**Describe the problem** I am using Jep in Scala and have been able to successfully run Python code using JEP in unit tests. When I go to run our main...

I've published simple test here: https://bitbucket.org/DanielAlievsky/stare-python-experiments/src/master/ Please look at the class com.siams.stare.extensions.python.tests.SimpleJepForImport You may call it via call_SimpleJepForJepForImports.cmd, if all files were compiled by IntelliJ IDEA, or directly from IDEA....

I see that PyObject class is AutoCloseable. But it does not contain any code like finalizer or cleaner. What will occur if, due to some reasons, I will not use...

I see that your SharedInterpreter and SubInterpreter instances cannot be created simultaneously in the same Java thread - it is blocked by "threadUsed" tracker. I **must** close one interpreter, before...

Hello! I successfully used JEP from usual Java environment, where JVM is called via "java.exe" (Windows-8). But really I need to use it from little other environment: C++ server, which...