2017-10-09 35 views

答えて

14

もちろんです。 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](".answercell p")[1][:text] 
"Absolutely. See PyCall.jl." 
+5

この非常に疑問を払っていることを愛してください! :) – niczky12

関連する問題