Custom syntax for Python.
Project description
docs | |
---|---|
tests | |
package |
https://syntactic.readthedocs.io/
Customizable syntax for Python.
Possible uses
- Experimenting with possible language features.
- Boilerplate reduction.
Examples
Unicode lambdas
from __syntax__ import unicode_lambda func = λx: x + 1
is equivalent to
func = lambda x: x + 1
SQL template literals
Embedded sql:
from __syntax__ import sql_literals engine.query(sql`SELECT author FROM books WHERE name = {book} AND author = {author}`)
is equivalent to:
engine.query('SELECT author FROM books WHERE name = ? AND author = ?', [book, author])
Limitations
The example transformers are written in a fragile way. They are intended only as inspiration rather than production-ready transformers. If you want to add some production-ready ones, pull-requests are welcome.
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.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size syntactic-0.1.3-py3-none-any.whl (5.5 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size syntactic-0.1.3.tar.gz (5.2 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for syntactic-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 628ced0dc03f6c0580026a0280b42366e9b8fd780923ba51a1aee95bc7702328 |
|
MD5 | 126a757b65dc455a310f82814c4c1084 |
|
BLAKE2-256 | e5b3cbda5f512cdde76949aa2528d7559f69703a7257ec67887b3887a4c0f9b2 |