Download file

Sử dụng curl command để download file trên Linux

Để download file từ 1 trang web bất kỳ chúng ta có rất nhiều cách. Sau đây vinasupport.com sẽ hướng dẫn các bạn download file ảnh, video, … từ 1 website bất kỳ về máy tính Linux sử dụng curl command line. Kiểm tra thông tin của file download Trước khi download bạn có thể […]

[Python 3] Hướng dẫn download file từ 1 URL trên Web

Bạn có thể download file (File ảnh, File text, …) từ 1 đường dẫn trên web sử dụng thư viện urllib của Python 3. Đoạn source code Python 3 như sau: import urllib import os output_dir = ‘/tmp’ image_url = ‘https://vinasupport.com/assets/img/vinasupport_logo.png’ # Make output directory if not exist if not os.path.exists(output_dir): os.makedirs(output_dir) # save path image_save_path = […]