A base library for writing compilers and interpreters
Project description
Sweetener
Sweetener is a Python library for quickly prototyping compilers and interpreters. Extra care has been taken to make the algorithms as flexible as possible to fit as many use cases. If you're still missing something, do not hesitate to file an issue! In particular, this library contains the following goodies:
- A typed record type that allows you to build PODs very quickly.
- Base classes for an AST/CST, including reflection procedures.
- A means for writing diagnostics that can print part of your source code alongside your error messages.
- Generic procedures like
clone,equalandltethat work on most types in the standard library and you can specialize for your own types.
Examples
Here's an example of using the Record type to define a record that holds two
fields and visualizes tham using GraphViz:
from sweetener import Record, equal, visualize
class MySimpleRecord(Record):
field_1: int
field_2: str
r1 = MySimpleRecord('foo', 42)
r2 = MySimpleRecod(field_1='foo', field_2=42)
assert(equal(r1, r2))
visualize(r1)
Running this program will open a new window with the following content:
from sweetener import BaseNode, visualize
class CalcNode(BaseNode):
pass
class Expr(CalcNode):
pass
class Add(Expr):
left: Expr
right: Expr
class Sub(Expr):
left: Expr
right: Expr
class Var(Expr):
name: str
class Lit(Expr):
value: int
def eval(node: Expr, vars = {}) -> int:
if isinstance(node, Add):
return eval(node.left, vars) + eval(node.right, vars)
if isinstance(node, Sub):
return eval(node.left, vars) - eval(node.right, vars)
if isinstance(node, Lit):
return node.value
if isinstance(node, Var):
return vars[node.name]
raise RuntimeError('Could not evaluate a node: unrecognised node type')
prog = Sub(
Add(
Lit(1),
Lit(2)
),
Var('x')
)
visualize(prog, format='png')
assert(eval(prog, { 'x': 3 }) == 0)
Running this example will open a new window with the following content:
License
Sweetener is generously licensed under the MIT license, in the hope that it inspires people to build new and cool software.
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 sweetener-0.2.1.tar.gz.
File metadata
- Download URL: sweetener-0.2.1.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac23cfd5989b30e2fc8e885843ac68a9053b98cddfd698a1986444192e757a83
|
|
| MD5 |
90b4eb0d45a812e97e1175d83e5cc2fc
|
|
| BLAKE2b-256 |
5fa60290b4c43c4fcc194997a249bc1f784ef2eadfb81333797f0c674d17e73a
|
File details
Details for the file sweetener-0.2.1-py3-none-any.whl.
File metadata
- Download URL: sweetener-0.2.1-py3-none-any.whl
- Upload date:
- Size: 29.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e18eaa3fa520d03f235ae27cc333c0b7a6cda703a3b2a6e80c862d203a3e9394
|
|
| MD5 |
40f27d8542f10c42b3fc1cfc7c9483a6
|
|
| BLAKE2b-256 |
477b5a937cb45716f10d05b44dd856f84f9b6d8a5d122f88c72555c483397a02
|