在Python中使用xlsxwriter将数据写入Excel工作表

时间:2018-07-19 16:22:00

标签: python selenium xlsxwriter

我正在寻找一种使用xlsxwriter将数据写入电子表格的干净方法。

我用Python编写的脚本使用Selenium循环浏览我所监管的Facebook页面,并复制了过去7天的指标。

这就是我现在拥有的:

 # Navigate to metrics pages
for link in pages:
    browser.get(f'https://www.facebook.com/{link}/insights/?section=navVideos')

    browser.implicitly_wait(60)

# find_elements_by_class_name - Returns the div in which the metrics are found
    elements = browser.find_elements_by_class_name('_2v66')

    for e in elements:
        print(e.text)

这是我现在的输出内容:

Metrics Output

是否存在使用xlsxwriter在Excel工作表中输出这些结果的简化方法?

最终脚本将运行超过50页,该示例仅显示两页的结果。换句话说,每个页面有两个数据。

0 个答案:

没有答案