2021-01-18 12:20:06 +00:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2019-11-27 06:01:25 +00:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
module http
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2021-01-26 14:43:10 +00:00
|
|
|
pub fn download_file(url string, out string) ? {
|
|
|
|
$if debug_http ? {
|
2020-07-03 23:48:01 +00:00
|
|
|
println('download file url=$url out=$out')
|
|
|
|
}
|
2021-02-28 20:20:21 +00:00
|
|
|
s := get(url) or { return err }
|
2021-01-26 14:43:10 +00:00
|
|
|
os.write_file(out, s.text) ?
|
2019-12-21 22:41:42 +00:00
|
|
|
// download_file_with_progress(url, out, empty, empty)
|
2019-11-27 06:01:25 +00:00
|
|
|
}
|