I've created a .csv file using this code in a Python shell (https://stackoverflow.com/a/21872153/2532070):
mylist = ['''list_of_strings''']
import csv
with open('filename', 'wb') as myfile:
wr = csv.writer(myfile, quoting=csv.QUOTE_ALL)
wr.writerow(mylist)
How do I then download the 'myfile' csv to my machine so I can email it as a .csv attachment? Thanks!