Metadata-Version: 2.0
Name: bericht
Version: 0.0.1
Summary: Improved tabular report generation with ReportLab.
Home-page: https://github.com/systori/bericht
Author: Lex Berezhny
Author-email: lex@damoti.com
License: BSD
Keywords: pdf,table,report,reportlab,html
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: User Interfaces
Requires-Dist: reportlab

bericht
=======

Improved tabular report generation with ReportLab.

to test things real quick:

.. code-block:: python

    from reportlab.platypus.doctemplate import SimpleDocTemplate
    from reportlab.lib.pagesizes import A4
    from reportlab.lib.styles import getSampleStyleSheet

    from bericht.table import TableBuilder, Span

    rlstyle = getSampleStyleSheet()['BodyText']

    builder = TableBuilder(rlstyle)

    builder.row('this is a test1', 'second cell1', 'ending cell1')
    builder.row('this is a test', 'second cell', 'ending cell', 'forth cell')
    builder.row('this is a test', Span.COL, 'forth cell')

    doc = SimpleDocTemplate('test.pdf', pagesize=A4)
    doc.build([builder.table])

you should find a `test.pdf` file in the location where you started python


0.0.1
-----

* Initial release.


