Skip to main content

Macro recording and metaprogramming in Python

Project description

macro-kit

macro-kit is a package for efficient macro recording and metaprogramming in Python using abstract syntax tree (AST).

The design of AST in this package is strongly inspired by Julia metaprogramming. Similar methods are also implemented in builtin ast module but macro-kit (Julia-style metaprogramming) is more convenient in code operation and also focused on the macro generation and customization.

Installation

  • use pip
pip install macro-kit
  • from source
pip install git+https://github.com/hanjinliu/macro-kit

Examples

  1. Define a macro-recordable function
from macrokit import Macro, Expr, Symbol
macro = Macro()

@macro.record
def str_add(a, b):
    return str(a) + str(b)

val0 = str_add(1, 2)
val1 = str_add(val0, "xyz")
macro
[Out]
var0x24fdc2d1530 = str_add(1, 2)
var0x24fdc211df0 = str_add(var0x24fdc2d1530, 'xyz')

Use format method to rename variable names.

# substitute identifiers of variables
# var0x24fdc2d1530 -> x
macro.format([(val0, "x")]) 
[Out]
x = str_add(1, 2)
var0x24fdc211df0 = str_add(x, 'xyz')

format also support substitution with more complicated expressions.

# substitute to _dict["key"]
expr = Expr(head="getitem", args=[Symbol("_dict"), "key"])
macro.format([(val0, expr)])
[Out]
_dict['key'] = str_add(1, 2)
var0x24fdc211df0 = str_add(_dict['key'], 'xyz')
  1. Record class
macro = Macro()

@macro.record
class C:
    def __init__(self, val: int):
        self.value = val
    
    @property
    def value(self):
        return self._value
    
    @value.setter
    def value(self, new_value: int):
        if not isinstance(new_value, int):
            raise TypeError("new_value must be an integer.")
        self._value = new_value
    
    def show(self):
        print(self._value)

c = C(1)
c.value = 5
c.value = -10
c.show()
[Out]
-10

Note that value assignments are not recorded in duplicate.

macro.format([(c, "ins")])
[Out]
ins = C(1)
ins.value = -10     
var0x7ffed09d2cd8 = ins.show()

eval can evaluate macro.

macro.eval({"C": C})
[Out]
-10
  1. Record module
import numpy as np
macro = Macro()
np = macro.record(np) # macro-recordable numpy

arr = np.random.random(30)
mean = np.mean(arr)

macro
[Out]
var0x2a0a2864090 = numpy.random.random(30)
var0x2a0a40daef0 = numpy.mean(var0x2a0a2864090)

Recorded module is stored in Symbol so you can safely eval the macro without passing the module object as the global variables.

macro.eval() # this works
  1. String parsing

parse calls ast.parse inside so that you can safely make Expr from string.

from macrokit import parse

expr = parse("result = f(0, l[2:8])")
expr
[Out]
:(result = f(0, l[slice(2, 8, None)])
print(expr.dump())
[Out]
head: assign
args:
 0: result
 1: head: call
    args:
     0: f
     1: 0
     2: head: getitem
        args:
         0: l
         1: slice(2, 8, None)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

macro-kit-0.3.7.tar.gz (362.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

macro_kit-0.3.7-cp39-cp39-win_amd64.whl (322.5 kB view details)

Uploaded CPython 3.9Windows x86-64

File details

Details for the file macro-kit-0.3.7.tar.gz.

File metadata

  • Download URL: macro-kit-0.3.7.tar.gz
  • Upload date:
  • Size: 362.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for macro-kit-0.3.7.tar.gz
Algorithm Hash digest
SHA256 536b2dbb17178548d2ccaa11fa43fa62d7aa56579d0970da0f32b913c7f2e2fa
MD5 f35f071122af04a60b89cd22b2d89cdf
BLAKE2b-256 149dfce45bd78cd1f2c5851c77758ac5cac35cd9e91a317a95037c430fcff9a7

See more details on using hashes here.

File details

Details for the file macro_kit-0.3.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: macro_kit-0.3.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 322.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for macro_kit-0.3.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f14e199eac7136919d0b3b7ae6e5c3cb3978ab63f8396c4842f6ac42da3c0a3d
MD5 35c74897846ac8b18a19a6ee3e7f76be
BLAKE2b-256 54d5320342c7dbb83a61fb12d33f64abe3a2f5e4dab7c25708527d6a47ed74f5

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page