csvbase is a website for hosting table data. Exporting this table to pandas is dead easy, run:
import pandas; stock_exchanges = pandas.read_csv("https://csvbase.com/meripaterson/stock-exchanges")
The world's stock exchanges, with continents, countries and MIC codes
To load this dataset into pandas, do the following
import pandas # you just use the same url as the table page stock_exchanges = pandas.read_csv("https://csvbase.com/meripaterson/stock-exchanges")
To load this dataset into R, do the following
# you just use the same url as the table page stock_exchanges <- read.csv('https://csvbase.com/meripaterson/stock-exchanges')