(url, out_path)
| 239 | |
| 240 | |
| 241 | def _download_requests(url, out_path): |
| 242 | import requests |
| 243 | with requests.get(url) as response: |
| 244 | with open(out_path, 'wb') as f: |
| 245 | f.write(response.content) |
| 246 | |
| 247 | |
| 248 | # TODO(GH-48593): Remove when libc++ supports std::chrono timezone |