Metadata-Version: 2.0
Name: bericht
Version: 0.0.6
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: pdfrw
Requires-Dist: reportlab
Requires-Dist: tinycss2

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.6
-----

* Proper handling of /DescendantFonts when creating letterhead XObject.

0.0.5
-----

* Template bug fix related to compression.

0.0.4
-----

* Added page-break-before CSS property.

0.0.3
-----

* Added missing dependencies.

0.0.2
-----

* Bug fixes and improvements.

0.0.1
-----

* Initial release.


