How do I download the csv file?

How do I download the csv file? Section 5, unit 10


You have to download the 'Infosys' company's CSV file from www.nseindia.com.


import numpy as np
import pandas as pd

infy = pd.read_csv ('infy_data.csv')

# This code will work only if you have stored the 'infy.csv' in the same folder where this notebook is saved.

# If you store it at some other location, then the line of code would have to specify the location.

# infy = pd.read_csv ('C:/Users/academy/Desktop/infy_data.csv')

 

All csv files along with the notebooks are available at the end of the course in the Downloadable unit

(Section 10 Unit 6).