Skip to main content

Catslap loads JSON input and applies it to document templates to generate final outputs

Project description

catslap

catslap

catslap is a Python library for automatic document generation from structured JSON data and parameterized templates. It can produce final documents in multiple formats by evaluating directives embedded directly in the templates.

Key features

  • Document generation from an input JSON file.
  • Support for multiple output formats:
    • Word
    • PowerPoint
    • Excel
    • Plain text
    • HTML
    • JavaScript
  • Single or multiple templates:
    • A single file.
    • Multiple files packaged in a ZIP or contained in a directory.
  • Ability to limit which template file extensions are processed.
  • Expression and logic evaluation with Python semantics.
  • Rendering of HTML embedded in JSON data for rich formats (Word and PowerPoint).

General concept

The catslap workflow is:

  1. Provide a JSON file with input data.
  2. Define one or more templates containing directives.
  3. catslap evaluates the directives, accesses the data, and generates the final documents in the desired formats.

Accessing data from templates

JSON data is accessed through expressions delimited by {{ ... }}. Evaluation follows Python behavior as if the JSON were a dict, with the addition of dot-operator access.

Input JSON example

{
  "report_name": "My report",
  "report_data": {
    "name": "BBS Tennesy",
    "account": "0000123",
    "values": [43, 56, 991, 2]
  }
}

Data access examples

{{report_data.account}}
{{report_data.get('account')}}
{{report_data['account']}}

Be careful when using JSON names that match Python tokens to avoid evaluation issues. For example, if you use items inside a JSON object, you cannot access it with dot notation (e.g., data.items), but you can access it with data['items'] or data.get('items').

When a JSON value contains HTML code (starting with an HTML tag), it will be rendered in a rich format when the output document type supports it.

Template directives

Directives are defined using {% ... %} blocks, and each directive must occupy a full paragraph in the template.

Supported directive types

  • Loops
  • Conditions
  • Configurations (format-dependent)

Loops

Allow iterating over JSON lists. Syntax:

{% for <name> in <list-expression> %}
...
{% endfor %}

Example:

{% for value in report_data.values %}
  {{value}}
{% endfor %}

Conditions

Allow conditional execution of content blocks. The condition is evaluated as a Python expression.

{% if report_data.account %}
  Valid account
{% else %}
  Undefined account
{% endif %}

Style configurations (Word and PowerPoint)

For Word and PowerPoint documents, catslap allows defining how HTML found in JSON data is rendered through style directives. The style directive format is:

{% style <keyword>=<style_name> %}

<keyword> are predefined catslap styles corresponding to HTML styles. <style_name> is the name of the style to use from the styles defined in the Word or PowerPoint template document.

Style configuration example

{% style heading=Heading 1 %}
{% style table_cell=Normal cell %}
{% style table_header=Header cell %}
{% style table_header_bgcolor=#FF0000 %}
{% style table_cell_bgcolor=white %}
{% style table_cell_bgcolor2=#E8E8E8 %}
{% style table_caption=Table caption %}
{% style code=Code %}
{% style codeblock=Codeblock %}
{% style token=Token %}
{% style link_title=LinkTitle %}
{% style link_url=LinkUrl %}
{% style quote=Highlighted quote %}

Supported styles

  • heading Defines the style for HTML headings (<H1> to <H6>). If a single style is defined, successive styles are automatically generated with prefixes 2, 3, 4, 5, and 6. By default, the styles are already defined as "Heading1", ..., "Heading6".

  • style_paragraph Defines the style for HTML paragraphs <P>. By default, the "Normal" style is used.

  • style_list_bullet Defines the style for HTML unordered lists <UL>. If a single style is defined, successive styles are automatically generated with prefixes 2, 3, 4, 5, and 6 for successive list indentations. By default, the styles are already defined as "Bullet List1", ..., "Bullet List6".

  • style_list_number Defines the style for HTML ordered lists <OL>. If a single style is defined, successive styles are automatically generated with prefixes 2, 3, 4, 5, and 6 for successive list indentations. By default, the styles are already defined as "Numbered List1", ..., "Numbered List6".

  • table_cell Paragraph style inside <TD>.

  • table_header Paragraph style inside <TH>.

  • table_header_bgcolor Default background color for table headers.

  • table_cell_bgcolor Default background color for table cells.

  • table_cell_bgcolor2 Alternate background color for odd rows (optional).

  • table_caption Paragraph style for <CAPTION>.

  • code Character style for content inside <code>.

  • codeblock Paragraph style for <pre> blocks.

  • token Paragraph style for <div class="token">.

  • link_title Paragraph style for link text.

  • link_url Paragraph style for link URLs.

  • quote Paragraph style for highlighted quote blocks.

HTML rendering (Word and PowerPoint)

catslap supports interpretation of a subset of HTML to generate rich documents.

Supported tags

  • <P>: Paragraphs, with CSS support for:

    • text-align
    • color
    • font-weight
    • font-style
    • text-decoration
  • <H1> to <H6>: Chapter headings.

  • <OL>, <UL>, <LI>: Ordered and unordered lists.

  • <PRE>: Code blocks.

  • <BLOCKQUOTE>: Highlighted quotes.

  • <CODE>: Inline code.

  • <EM>, <I>: Italic.

  • <STRONG>, <B>: Bold.

  • <U>: Underline.

  • <STROKE>: Strikethrough.

  • <FONT color="">: Text color (also via CSS color).

  • <TABLE>, <TR>, <TD>, <TH>, <CAPTION>, <THEAD>, <TBODY>: Table definition.

  • <IMG>: Images.

  • <A href="">...</A>: Links.

  • <DIV class="<style>">: Apply predefined block styles (token, table_cell, codeblock, etc.).

  • <SPAN class="<style>">: Apply character-level styles (only code).

License

To be defined.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

catslap-1.0.1.tar.gz (92.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

catslap-1.0.1-py3-none-any.whl (111.4 kB view details)

Uploaded Python 3

File details

Details for the file catslap-1.0.1.tar.gz.

File metadata

  • Download URL: catslap-1.0.1.tar.gz
  • Upload date:
  • Size: 92.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for catslap-1.0.1.tar.gz
Algorithm Hash digest
SHA256 f307ee78b464d040247c6fada37717d33915f33c1381ca4e3a0b91e6bd20a18c
MD5 0d0f0edfb4cafb1ad3074c42a395917b
BLAKE2b-256 e98be53ea4bee644be14ea3f3c22c81591243d9457948dff40f036548e621240

See more details on using hashes here.

File details

Details for the file catslap-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: catslap-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 111.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for catslap-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3c7c595b920c16acc4307c17a75aa12c9646cda5db537a3b5148d2d2774c9ef5
MD5 54836ebbd863afe3c1bf17c45f07b056
BLAKE2b-256 6fd20a554e2108b9a028448afb277b57d51e327231a0c21d53dd8dbf231a37a7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page