Support Jinja2 and YAML in IPython/Jupyter notebooks
Project description
Jinja2 and YAML for Jupyter
Please see the full HTML version.
The rest of this file is just the nbconvert into Markdown; it's hard to read. See the HTML version.
People use YAML and Jinja2 together; they're the core of Ansible. Sometimes you need a playground to figure out details of how they work. This magic provides both.
In:
%load_ext jinja_yaml_magic
%reload_ext jinja_yaml_magic
(Ignore the warning for %load_ext/%reload_ext.)
YAML
%%yaml variable parses the YAML in a cell into the named variable.
If you omit variable, the YAML is parsed into the variable jinja_env; it's also
then available through the history mechanism: Out[3] or _3.
In:
%%yaml
names:
- Jay
- Chris
- Pat
Out:
{'names': ['Jay', 'Chris', 'Pat']}
In:
%%jinja
{{ names }}
Out:
['Jay', 'Chris', 'Pat']
Jinja2
If you just want to try out a quick template, write %%jinja at the top of a cell. Both the contents of jinja_env and notebook variables are available. Below, we're using names from the %%yaml above, and separator from the notebook.
In:
separator = ", "
In:
%%jinja
{{ names|sort|join(separator) }}
Out:
Chris, Jay, Pat
Named templates
You may want to store Jinja2 code as a template.
- You can reuse the template later in the notebook;
- You can use Jinja2's powerful
extends,import, andincludemechanisms.
The template below is available under the name fancy_names. Files in the current directory are also available as templates.
In:
%%jinja_template fancy_names
{% for name in names %}
<b>{{ name }}</b><br>
{%- endfor %}
In:
%jinja --template fancy_names
Out:
<b>Jay</b><br>
<b>Chris</b><br>
<b>Pat</b><br>
Formatting
By default, the result of running a %jinja template is formatted as "pretty" text.
You can choose other formats.
| Type | ...displays as |
|---|---|
--pretty |
A string, without quotes |
--plain |
Python string literal |
--html |
HTML |
--svg |
SVG |
--latex |
LaTeX |
--markdown |
Markdown |
--code |
Syntax-highlighted code |
--latex requires MathJax to be loaded; it is by default. --code requires
a recent version of IPython.
In:
%jinja --template fancy_names --html
Out:
Jay
Chris
Pat
An SVG example
From https://medium.com/@heyoka/scratch-made-svg-donut-pie-charts-in-html5-2c587e935d72. This template does math, so you may not want to follow its example.
In:
# Percent of circle to be filled
full = 60
# Percent distance from top to start
offset = 12.5
In:
%%jinja_template svg_example
<svg width="25%" height="25%" viewBox="0 0 42 42" class="donut">
<circle class="donut-hole" cx="21" cy="21" r="15.91549430918954" fill="#fff"></circle>
<circle class="donut-ring" cx="21" cy="21" r="15.91549430918954" fill="transparent" stroke="#d2d3d4" stroke-width="3"></circle>
<circle class="donut-segment" cx="21" cy="21" r="15.91549430918954" fill="transparent" stroke="#ce4b99" stroke-width="3"
stroke-dasharray="{{ full }} {{ 100-full }}" stroke-dashoffset="{{ 25 - offset }}"></circle>
</svg>
In:
%jinja --template svg_example --svg
(There is an SVG image in the actual notebook.)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jinja-yaml-magic-0.1.2.tar.gz.
File metadata
- Download URL: jinja-yaml-magic-0.1.2.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f9895f9ffc9026e609885b146eb8feecd24b412f25fcb01460b4a61ce08e27d
|
|
| MD5 |
b969504a765adc323c0c84af029d84d3
|
|
| BLAKE2b-256 |
f98ca7c6a7e0fd4fe3e862b27790074b32f92b6aa6eb73f515100965655727e5
|
File details
Details for the file jinja_yaml_magic-0.1.2-py2.py3-none-any.whl.
File metadata
- Download URL: jinja_yaml_magic-0.1.2-py2.py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d996056bac938b206e49cf7296c3064eaa164770b1eb5fad3a246b2cf1b3ca8c
|
|
| MD5 |
d747165d42998b2e6a0875f6c6ba4f4a
|
|
| BLAKE2b-256 |
66f12521f7e1c7b37106b6cd8124fde00a787a3720ec57b96397a40954939951
|