无法将.xlsx文件保存在本地计算机上,我正试图使用XlsXcessive python创建/生成该文件

无法将.xlsx文件保存在本地计算机上,我正试图使用XlsXcessive python创建/生成该文件,python,xlsx,xlsxwriter,Python,Xlsx,Xlsxwriter,在运行下面的示例代码时,我得到的错误是“未定义保存”。 这就是为什么我从xlsxcessive.xlsx import save添加了。 但它仍然无法在本地机器上保存 这是pythonapi的错误还是我在编码上犯了错误 """Just a simple example of XlsXcessive API usage.""" from xlsxcessive.xlsx import Workbook from xlsxcessive.worksheet import Cell **from x

在运行下面的示例代码时,我得到的错误是“未定义保存”。 这就是为什么我从xlsxcessive.xlsx import save添加了。 但它仍然无法在本地机器上保存

这是pythonapi的错误还是我在编码上犯了错误

"""Just a simple example of XlsXcessive API usage."""

from xlsxcessive.xlsx import Workbook
from xlsxcessive.worksheet import Cell
**from xlsxcessive.xlsx import save**
import decimal

wb = Workbook()

sheet = wb.new_sheet('Test Sheet')

# a shared format
bigguy = wb.stylesheet.new_format()
bigguy.font(size=24)
bigguy.align('center')

# add a border
bigguy.border(top="medium", bottom="medium")

# set a builtin number format
bigguy.number_format('0.00')

# another shared format
boldfont = wb.stylesheet.new_format()
boldfont.font(bold=True)

# and another
highprec = wb.stylesheet.new_format()

# set a custom number format on the shared format
highprec.number_format("0.000")

# the API supports adding rows
row1 = sheet.row(1)

# rows support adding cells - cells can currently store strings, numbers
# and formulas.
a1 = row1.cell("A1", "Hello, World!", format=boldfont)
row1.cell("C1", 42.0, format=bigguy)

# cells can be merged with other cells - there is no checking on invalid merges
# though. merge at your own risk!
a1.merge(Cell('B1'))

# adding rows is easy
row2 = sheet.row(2)
row2.cell("B2", "Foo")
row2.cell("C2", 1, format=bigguy)

# formulas are written as strings and can have default values
shared_formula = sheet.formula("SUM(C1, C2)", 43.0, shared=True)

row3 = sheet.row(3)
row3.cell("C3", shared_formula, format=bigguy)

# you can work with cells directly on the sheet
sheet.cell('D1', 12.0005, format=highprec)
sheet.cell('D2', 11.9995, format=highprec)
sheet.cell('D3', shared_formula, format=highprec)

# and directly via row and column indicies
sheet.cell(coords=(0, 4), value=40)
sheet.cell(coords=(1, 4), value=2)
sheet.cell(coords=(2, 4), value=shared_formula)

# you can share a formula in a non-contiguous range of cells
times_two = sheet.formula('PRODUCT(A4, 2)', shared=True)
sheet.cell('A4', 12)
sheet.cell('B4', times_two)
sheet.cell('C4', 50)
sheet.cell('D4', times_two)

# iteratively adding data is easy now
for rowidx in xrange(5,10):
    for colidx in xrange(5, 11, 2):
        sheet.cell(coords=(rowidx, colidx), value=rowidx*colidx)

# set column widths
sheet.col(2, width=5)

# write unicode value
sheet.cell('G2', value=u"43\u00b0")

if __name__ == '__main__':
    import os
    import sys
    from xlsxcessive.xlsx import save

    if len(sys.argv) == 1:
        print "USAGE: python sample.py NEWFILEPATH"
        print "Writes a sample .xlsx file to NEWFILEPATH"
        raise SystemExit(1)

    if os.path.exists(sys.argv[1]):
        print "Aborted. File %s already exists." % sys.argv[1]
        raise SystemExit(1)

    stream = None
    if sys.argv[1] == '-':
        stream = sys.stdout

    # wb is the Workbook created above
    save(wb, sys.argv[1], stream)



Note:  Tried following also
# local file
save(workbook, 'financials.xlsx')

# stream
save(workbook, 'financials.xlsx', stream=sys.stdout)