Skip to main content

safe embedded python expression parser

Project description

embexpr
============
.. image:: https://travis-ci.org/orisano/embexpr.svg?branch=master
:target: https://travis-ci.org/orisano/embexpr

| safe embedded python expression parser (for mainly easy DSL or config file).

Getting Started
------------
.. code:: bash

pip install embexpr


How to Use
------------
.. code:: python

from embexpr import Expr, ParseError

assert Expr('3 * 5')() == 15
assert Expr('"foo" + "bar"')() == "foobar"
assert Expr('len("example")')() == 7
assert Expr('s.startswith("prefix_")')(s="prefix_suffix") == True

try:
Expr('eval("1")')()
except ParseError as e:
print(e)


Reference
------------
https://github.com/ansible/ansible/blob/devel/lib/ansible/template/safe_eval.py
http://stackoverflow.com/questions/12523516/using-ast-and-whitelists-to-make-pythons-eval-safe

License
------------
MIT


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

embexpr-1.0.1.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

embexpr-1.0.1-py2.py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 2 Python 3

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