1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-21 00:19:57 +03:00
nickel/pyckel
Yann Hamdaoui c4da6975b3
Bump version to 1.0 (#1302)
* Bump version number to 1.0

* Add text for 1.0 release
2023-05-17 12:50:43 +00:00
..
src Make clippy run on the entire workspace in CI 2023-02-28 16:55:55 +00:00
Cargo.toml Bump version to 1.0 (#1302) 2023-05-17 12:50:43 +00:00
pyproject.toml Move Python bindings to its own crate pyckel 2023-01-16 16:38:24 +01:00
README.md Update pyckel/README.md 2023-01-16 16:38:24 +01:00

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
# }