Tagged templates for Python
Project description
tagged

A Python version of JavaScript's tagged templates, mixed with Python 3's f-strings.
For a more involved example how this package can be used in practice, see htm.py that implements JSX-like syntax in plain Python.
Installation
$ pip3 install tagged
Usage
This package defines tag, a decorator for creating new tags. Let's define a simple one:
from tagged import tag
@tag
def t(strings, values):
return strings, values
Now t can be called with a template string that can contain any Python 3 expression between { and }. The "static" parts of the string are listed in strings and the evaluated expressions are listed in values.
strings, values = t("1 + {2} equals {1 + 2}")
# strings == ('1 + ', ' equals ', '')
# values == (2, 3)
Because the expressions are evaluated in the current context they can refer to local variables:
a = [1, 2, 3]
strings, values = t("the sum of {a} is {sum(a)}")
# strings == ('the sum of ', ' is ', '')
# values == ([1, 2, 3], 6)
Double curly brackets are interpreted as a single textual curly bracket:
strings, values = t("Inline a set between {{ and }} like this: {({1, 2, 3})}")
# strings == ('Inline a set between { and } like this: ', '')
# values == ({1, 2, 3},)
rexample
Let's define a custom tag rex that allows composing regular expressions from strings and other regular expressions.
import re
from tagged import tag
@tag
def rex(strings, values):
pattern = strings[0]
for value, string in zip(values, strings[1:]):
if isinstance(value, re.Pattern):
value = value.pattern
elif isinstance(value, str):
value = re.escape(value)
else:
raise TypeError("expected re.Pattern or str")
pattern += "(?:" + value + ")" + string
return re.compile(pattern)
greeting = re.compile("Hello|Hi|Greetings")
name = "Python 3.7"
rex("{greeting}, {name}!")
# re.compile('(?:Hello|Hi|Greetings), (?:Python\\ 3\\.7)!')
Development
Running Tests
$ python3 -m unittest discover -s tests
License
This library is licensed under the MIT license. See ./LICENSE.
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 tagged-0.0.2.tar.gz.
File metadata
- Download URL: tagged-0.0.2.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.32.2 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb1e830ce83b7df7e92d03ad349babad0c78eb1d1c5dd922e067f1079b119666
|
|
| MD5 |
430303baf6e3d4bf57199ef8957f5de0
|
|
| BLAKE2b-256 |
d05e96ad04eb807533cb676a790bb2d38800c4236d108b49505da822a21b4472
|
File details
Details for the file tagged-0.0.2-py3-none-any.whl.
File metadata
- Download URL: tagged-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.32.2 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f9bbb98c083536c5ec283688ddc9cec830ac0de19ab4ad9fa12db66985f7469
|
|
| MD5 |
21b4504dfdb74e384b341985a8b649e7
|
|
| BLAKE2b-256 |
43a8bf957ffdcd91d1ffad19083e4af72269ff7bb832113e2558e8270d4efd22
|