2021-01-18 15:20:06 +03:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2019-11-27 09:01:25 +03: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 17:43:10 +03:00
|
|
|
pub fn download_file(url string, out string) ? {
|
|
|
|
$if debug_http ? {
|
2020-07-04 02:48:01 +03:00
|
|
|
println('download file url=$url out=$out')
|
|
|
|
}
|
2021-02-28 23:20:21 +03:00
|
|
|
s := get(url) or { return err }
|
2021-01-26 17:43:10 +03:00
|
|
|
os.write_file(out, s.text) ?
|
2019-12-22 01:41:42 +03:00
|
|
|
// download_file_with_progress(url, out, empty, empty)
|
2019-11-27 09:01:25 +03:00
|
|
|
}
|