将值从Python写入Excel

时间:2013-10-06 02:25:03

标签: python excel concatenation

我想要做的是通过将Yahoo Finance的股票价格放入电子表格来使这行代码工作。我问了很多人,我已经研究过这个问题,但我没有让它发挥作用。

这是代码的问题:

ws.cell(1,i+1).value = str.replace(price','price')

我得到错误,“替换”需要一个'str'对象,但收到'list'或'int'对象每次我修改它都没有属性。感谢提前帮助。

from openpyxl import Workbook

import urllib
import re

from openpyxl.cell import get_column_letter

wb = Workbook()

dest_filename = r'empty_book.xlsx'

ws = wb.create_sheet()

ws.title = 'Stocks'
symbolslist = ["aapl","spy","goog","nflx"] 

i=0
while i<len(symbolslist):
    #counts each object as 1 in the list
    url = "http://finance.yahoo.com/q?s="+symbolslist[i]+"&q1=1"
    htmlfile = urllib.urlopen(url)
    htmltext = htmlfile.read()
    regex = '<span id="yfs_l84_'+symbolslist[i]+'">(.+?)</span>'
    pattern = re.compile(regex)
    price = re.findall(pattern,htmltext)
    print "The price of", symbolslist[i], " is ", price 
    ws.cell(1,i+1).value = str.replace(price','price')
    i+=1


wb.save(filename = dest_filename)

导入CSV模块比使用Excel进行数据分析更好,因为它是开源友好的。

2 个答案:

答案 0 :(得分:2)

我甚至认为您不需要EXCEL API来执行此操作,您只是脱机工作,因此请使用CSV格式编写财务股票价格,然后使用EXCEL打开csv文件。像这样(psudo代码,不完全一样):

with( f=open( "a.csv" ) ):
    f.writeline( ",".join(l) );

答案 1 :(得分:0)

  1. re.findall返回一个列表对象,您可能想要获取列表的第一个对象。

  2. 您只能使用字符串对象中的str.replace,例如price.replace('a', 'b')

  3. 应使用ws.cell('F5')代替ws.cell(1,1)来访问一个单元格。