File: example_demo.rst

package info (click to toggle)
xlsxwriter 3.1.9-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 56,308 kB
  • sloc: python: 51,511; javascript: 7,768; sh: 284; makefile: 195; perl: 75
file content (22 lines) | stat: -rw-r--r-- 629 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.. SPDX-License-Identifier: BSD-2-Clause
   Copyright 2013-2023, John McNamara, jmcnamara@cpan.org

.. _ex_demo:

Example: Simple Feature Demonstration
=====================================

This program is an example of writing some of the features of the XlsxWriter
module.

.. image:: _images/demo.png

.. literalinclude:: ../../../examples/demo.py

Notes:

* This example includes the use of cell formatting via the :ref:`format`.
* Strings and numbers can be written with the same worksheet :func:`write`
  method.
* Data can be written to cells using Row-Column notation or 'A1' style
  notation, see :ref:`cell_notation`.