I am developing a script that will eventually extract data from this website. I am receiving the "Insecure Request Warning" message. This is a script I will only use for myself and not for commercial use. How vulnerable am I to a man in the middle attack? I have little to no knowledge about SSL and don't want to put myself in danger while running this script. I am asking if it is safe for me to run the script on my own, or if I need to look into better security measures. Thank you for the help!
import requests
url = 'https://midwestauction.com/'
response = requests.get(url, verify = False)
print(response.status_code)