Bugzilla – Attachment 106781 Details for
Bug 84035
CONFIGURATION: Functions not recalculated by default
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Script to generate demo xlsx file
xlsxwrite.py (text/plain), 680 bytes, created by
Dan Haiduc
on 2014-09-24 10:05:09 UTC
(
hide
)
Description:
Script to generate demo xlsx file
Filename:
MIME Type:
Creator:
Dan Haiduc
Created:
2014-09-24 10:05:09 UTC
Size:
680 bytes
patch
obsolete
>############################################################################## ># ># A simple example of some of the features of the XlsxWriter Python module. ># ># Copyright 2013-2014, John McNamara, jmcnamara@cpan.org ># >import xlsxwriter > > ># Create an new Excel file and add a worksheet. >workbook = xlsxwriter.Workbook('demo.xlsx') >worksheet = workbook.add_worksheet() > ># Widen the first column to make the text clearer. >worksheet.set_column('A:A', 20) >bold = workbook.add_format({'bold': True}) > >worksheet.write('A1', 'Hello World') >worksheet.write('A2', 123) >worksheet.write('A3', 'This should be 369:', bold) >worksheet.write('A4', '=A2*3') > >workbook.close()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 84035
:
106780
| 106781