2017-10-09 23 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

相關問題