我正在尝试从office 365链接读取excel文件。在此链接中,我可以读取和写入记录。任何人都可以帮助如何从在线excel文件访问/读取数据并更新相同的文件。
答案 0 :(得分:1)
您可以使用graph api在线阅读存储在SharePoint中的Excel文件。 样本端点:
def plot(self):
data=x
self.setWindowTitle("Bestandseingruppierung")
# instead of ax.hold(False)
self.figure.clear()
# create an axis
ax = self.figure.add_subplot(111)
#fig.autofmt_xdate()
# discards the old graph
ax.hold(False) # deprecated, see above
# plot data
ax.axes.bar(data,y)
self.canvas.draw()