Skip to main content

Macros for Python: Quasiquotes, Case Classes, LINQ and more!

Project description

MacroPy is an implementation of Macros in the Python Programming Language. MacroPy provides a mechanism for user-defined functions (macros) to perform transformations on the abstract syntax tree(AST) of Python code at module import time. This is an easy way to modify the semantics of a python program

Python like you’ve never seen before

MacroPy allows you to create constructs which are impossible to have in normal python code, such as:

Tracing

with trace:
    sum([x + 5 for x in range(3)])

# sum([(x + 5) for x in range(3)])
# range(3) -> [0, 1, 2]
# (x + 5) -> 5
# (x + 5) -> 6
# (x + 5) -> 7
# [(x + 5) for x in range(3)] -> [5, 6, 7]
# sum([(x + 5) for x in range(3)]) -> 18

Quick Lambdas

print map(f%_[0], ['omg', 'wtf', 'bbq'])
# ['o', 'w', 'b']

print reduce(f%(_ + _), ['omg', 'wtf', 'bbq'])
# 'omgwtfbbq

Case Classes

@case
class Point(x, y): pass

p = Point(1, 2)

print str(p)    #Point(1, 2)
print p.x       #1
print p.y       #2
print Point(1, 2) == Point(1, 2) # True

And more! All this runs perfectly on vanilla Python 2.7 or PyPy 1.9. For more details, see the GitHub page

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

MacroPy-0.1.2.zip (32.5 kB view details)

Uploaded Source

File details

Details for the file MacroPy-0.1.2.zip.

File metadata

  • Download URL: MacroPy-0.1.2.zip
  • Upload date:
  • Size: 32.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for MacroPy-0.1.2.zip
Algorithm Hash digest
SHA256 23c826143f9180aea830ec0456961762ee244b4c8d1574bc9e10fcc30849e357
MD5 ce9f3de16a3eef640c5ea5ea845c41fa
BLAKE2b-256 aefe559d480ded7ba585478950a0516cd9d7b5dd7e576a985b1de45a708356aa

See more details on using hashes here.

Provenance

Supported by

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