PythonCall.jl
                                
                                 PythonCall.jl copied to clipboard
                                
                                    PythonCall.jl copied to clipboard
                            
                            
                            
                        Python and Julia in harmony.
The following test was made in a .ipynb notebook in VS code.  We see that `println` has no output at all, while `display` leads to an error. - Julia...
Now that PySR has switched to PythonCall.jl, here is the promised integration test :) I'm installing and running it in a separate virtualenv so as to not interfere with anything.
It took me some digging through the issues to discover that the python import ```python from x import f as g ``` can be translated in julia to ```julia using...
**Affects:** Both **Describe the bug** I would like to use a custom sysimage of our julia package which has PythonCall.jl as a dependency. The image builds fine, and is useable...
Currently `similar` will return an array of a different type: ```python from juliacall import Main as jl import numpy as np x = np.random.randn(5) y = jl.similar(x) print(jl.typeof(x)) # PyArray{Float64,...
I am using PythonCall to define a Python interface from julia. It happens that I want to precompile Python code using Python's `compile` function and then send it to a...
Currently the test suite is very small, most notably the juliacall suite: https://github.com/JuliaPy/PythonCall.jl/blob/main/pytest/test_all.py which is only 19 lines long. I am very worried about reliability issues from this and whether...
**Affects:** JuliaCall **Describe the bug** I'm getting weird crashes when I transfer a list from Python to Julia. This does not happen with PyJulia. Minimum working example below. ``` >>>...
**Affects:** JuliaCall **Describe the bug** Related to https://github.com/JuliaPy/PythonCall.jl/issues/219. There's currently a scenario with no possible workaround other than forcing a downstream user to set up environment variables to avoid a...
I see you added to possibility opt-in. It has bugged my that Julia does run it by default, but I realize it's a breaking change (hypothetically, not in practice for...