gpt4 book ai didi

python-3.x - 如何在 Julia 中使用 wget

转载 作者:行者123 更新时间:2023-12-04 00:56:45 24 4
gpt4 key购买 nike

我对加载文件感兴趣:

网址:https://archive.ics.uci.edu/ml/machine-learning-databases/auto-mpg/auto-mpg.data

我想知道是否有一个等效于 !wget 的选项,可以在 python 中使用它来加载文件。

最佳答案

为了下载文件,我倾向于使用以下辅助函数,它在 Julia 中完全实现,不依赖于外部工具的可用性,因此完全可以跨系统移植(但是,它依赖于 HTTP.jl ):

import HTTP

function http_download(url, dest)
HTTP.open(:GET, url) do http
open(dest, "w") do file
write(file, http)
end
end
end

http_download("http://www.julialang.org/", "/tmp/index.html")

关于python-3.x - 如何在 Julia 中使用 wget,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61862089/

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