MCPcopy Index your code
hub / github.com/FelixSchwarz/mjml-python

github.com/FelixSchwarz/mjml-python @v0.12.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.12.0 ↗ · + Follow
351 symbols 1,169 edges 77 files 5 documented · 1%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

mjml-python

This is an unofficial Python port of mjml v4. It is implemented in pure Python and does not require JavaScript/NodeJS. mjml is a markup language created by Mailjet and designed to reduce the pain of coding a responsive email.

Installation

pip install mjml

Usage

from mjml import mjml_to_html
with open('foo.mjml', 'rb') as mjml_fp:
    result = mjml_to_html(mjml_fp)
assert not result.errors
html: str = result.html

Alternatively you can run the code from the CLI:

$ mjml foo.mjml

Limitations

This library only implements a subset of the original MJML project. It lacks several features found in the JavaScript mjml implementation (e.g. minification, beautification and validation). Also the code likely contains many additional bugs.

The upside is that there are lot of possibilities for you to make a real difference when you improve the code :-)

Goals / Motivation

This library should track the JS version of mjml so ideally you should get the same HTML. However even under the best circumstances this library will always lag a bit behind as each change must be translated to Python manually (a mostly mechanical process).

While I like the idea behind mjml and all the knowledge about the quirks to get acceptable HTML rendering by various email clients we did not want to deploy a Node.js-based stack on our production servers. We did not feel comfortable auditing all 220 JS packages which are installed by npm install mjml (and re-doing this whenever new versions are available). Also due to data-privacy concerns we were unable to use any third-party products (i.e. MJML's API offering).

After a short spike to check the viability of a Python implementation I went ahead and wrote enough code to ensure some existing messages could be converted to mjml. Currently the library is deployed in some light production scenarios.

Another benefit of using Python is that we can integrate that in our web apps more closely. As the startup overhead of CPython is much lower than Node.js we can also generate a few mails via CLI applications without massive performance problems. CPython uses \~70ms to translate a trivial mjml template to HTML while Node.JS needs \~650ms.

Documentation

The idea is to implement the mjml XML dialect exactly like the JS implementation so eventually you should be able to use the official docs and other online resources found on mjml.io. However we are nowhere near that right now! The current code can render the "Hello World" example as well as images, tables and groups but many components remain to be reimplemented. I'd love to see your pull requests to improve the current state though.

Alternatives / Additional Resources

  • django-mjml: If deploying NodeJS is not an issue and you are using Django you could use the well established django-mjml library. That library integrates the mjml JavaScript implementation with Django templates so you can access all mjml features.
  • MJML.NET: This is an unofficial port of mjml to C# (github repo) which supports more components than this Python implementation.
  • mrml: rust implementation of mjml (github repo)
  • email-bugs is a github project which contains a lot of knowledge about rendering quirks in various email clients.
  • htmlemailcheck is a commercial offering to help you checking email rendering in various environments. I don't have any experience with their services but they provide a free knowledgebase.
  • #emailgeeks - Slack community for email marketers, designers, and developers

Core symbols most depended-on inside this repo

get_attr
called by 125
mjml/core/api.py
html_attrs
called by 95
mjml/elements/_base.py
widthParser
called by 24
mjml/helpers/width_parser.py
merge_dicts
called by 22
mjml/lib/dict_merger.py
strip_unit
called by 18
mjml/helpers/py_utils.py
renderChildren
called by 15
mjml/elements/_base.py
parse_int
called by 13
mjml/helpers/py_utils.py
getShorthandAttrValue
called by 12
mjml/elements/_base.py

Shape

Method 208
Function 99
Class 43
Route 1

Languages

Python98%
TypeScript2%

Modules by API surface

mjml/elements/mj_section.py24 symbols
mjml/elements/mj_carousel.py18 symbols
mjml/mjml2html.py15 symbols
mjml/elements/mj_column.py14 symbols
mjml/elements/mj_hero.py12 symbols
mjml/core/api.py12 symbols
mjml/elements/_base.py11 symbols
tools/update-expected-html.py10 symbols
mjml/elements/mj_group.py10 symbols
mjml/helpers/py_utils.py9 symbols
mjml/elements/mj_social.py9 symbols
tests/upstream_alignment_test.py8 symbols

For agents

$ claude mcp add mjml-python \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact