gpt4 book ai didi

python - 是否可以从 Julia 调用 Python 函数并返回其结果?

转载 作者:太空宇宙 更新时间:2023-11-04 06:47:17 26 4
gpt4 key购买 nike

我正在使用 Python 从网络上抓取数据。我想使用该数据在 Julia 中运行计算。

是否可以在 Julia 中调用该函数并返回其结果,或者我最好只导出为 CSV 并以这种方式加载数据?

最佳答案

当然。参见 PyCall.jl .

julia> using PyCall

julia> @pyimport bs4

julia> @pyimport requests

julia> r = requests.get("https://stackoverflow.com/questions/46638265");

julia> soup = bs4.BeautifulSoup(r.content);

julia> soup.title.string
"Is it possible to call a Python function from Julia and return its result? - Stack Overflow"

julia> soup.select_one(".answercell p").text
"Absolutely. See PyCall.jl."

关于python - 是否可以从 Julia 调用 Python 函数并返回其结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46638265/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com