I would like to build a python3 script that will download a CSV file every day and send it to me by mail. I have managed to download the file and sending the mail. The problem is the filtering. The CSV file contains
"155;03155;Northeim;1669;1261.7;9;35;0;131.55;66;49.9"
and I want to filter only the last value 49.9 and send it to me by mail. This Value changes daily. But the order of the values doesn't.
Can someone help me?
csv.reader- docs.python.org/3/library/csv.html - set your delimiter to ";", and take field[10]