Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 202 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 202 Bytes

pyckel

Python bindings to use Nickel.

Install

pip install .

Use

import pyckel

result = pyckel.run("let x = 1 in { y = x + 2 }")
print(result)
# {
#   "y": 3
# }