4  Download File

4.1 Command Line

4.1.1 MacOS

!curl -O "data/receipt.png" https://raw.githubusercontent.com/mistralai/cookbook/refs/heads/main/mistral/ocr/receipt.png
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0curl: (6) Could not resolve host: data
Warning: Binary output can mess up your terminal. Use "--output -" to tell 
Warning: curl to output it to your terminal anyway, or consider "--output 
Warning: <FILE>" to save to a file.

4.2 Python

4.2.1 urllib.request (No extra installation)

import urllib.request

url = 'https://raw.githubusercontent.com/mistralai/cookbook/refs/heads/main/mistral/ocr/receipt.png'
filename = 'data/receipt.png'

urllib.request.urlretrieve(url, filename)
('data/receipt.png', <http.client.HTTPMessage at 0x106c12030>)

4.2.2 requests library

import requests

url = 'https://raw.githubusercontent.com/mistralai/cookbook/refs/heads/main/mistral/ocr/receipt.png'
filename = 'data/receipt.png'

response = requests.get(url)

# Check if the request was successful (status code 200)
if response.status_code == 200:
    with open(filename, 'wb') as f:
        f.write(response.content)
    print(f"Downloaded file saved as {filename}")
else:
    print(f"Failed to download file. Status code: {response.status_code}")
Downloaded file saved as data/receipt.png