You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While Python's PEP 750 proposes Template Strings which could offer one solution:
jl.seval(t"const MY_CONST = {my_python_const}")
We could implement something similar with a new teval method:
jl.teval("const MY_CONST = {my_python_const}")
However, this has two key issues:
The {} syntax conflicts with Julia type signatures (e.g., Vector{Float64}), which could cause subtle bugs. Even if t-strings are eventually merged to Python, we would still face this issue!
teval wouldn't have access to local variables to reference my_python_const
Let's look at the two proposed approaches in more detail:
The first approach makes variable passing explicit but ergonomic:
The second approach uses a context manager for temporary variable binding:
withjl.let(x=my_python_const):
jl.seval("const MY_CONST = x") # Would access the bound value
Basically the seval would have access to this stack of Python objects passed via let, and put them into the Julia context via a Julia-evaluated let statement.
I propose one of the following two APIs as a way to more ergonomically pass Python variables to Julia code:
a "template" eval, or
which is a juliacall "let."
Would be interested in hearing other ideas too.
This is designed to address the following issue. Currently, passing Python objects to Julia via
seval
requires creating closure functions:While Python's PEP 750 proposes Template Strings which could offer one solution:
We could implement something similar with a new
teval
method:However, this has two key issues:
{}
syntax conflicts with Julia type signatures (e.g.,Vector{Float64}
), which could cause subtle bugs. Even if t-strings are eventually merged to Python, we would still face this issue!teval
wouldn't have access to local variables to referencemy_python_const
Let's look at the two proposed approaches in more detail:
The first approach makes variable passing explicit but ergonomic:
The second approach uses a context manager for temporary variable binding:
Basically the
seval
would have access to this stack of Python objects passed vialet
, and put them into the Julia context via a Julia-evaluatedlet
statement.Thoughts? @cjdoris @mkitti
Going to post this on the Julia discourse too. Edit: https://discourse.julialang.org/t/rfc-for-ergonomically-passing-python-variables-to-julia/124266
The text was updated successfully, but these errors were encountered: