Import/View Calendar from Outlook or Gmail in Ignition

There isn't much on the forum about this, one post i found talked about Google API

I spent a couple minutes fooling around with exporting an outlook calendar, and you can export it in csv format, then read the contents of the csv. From there it would just be modifying the csv dataset to match the format of the moth view calendar events dataset.

This is as far as i took it, since im not sure this is even the direction you are interested in.

import csv
path = "C:\calcsv.CSV"
csvData = csv.reader(open(path))
header = csvData.next()
dataset = system.dataset.toDataSet(header, list(csvData))