asteval 1.0.2

Creator: railscoder56

Last updated:

Add to Cart

Description:

asteval 1.0.2

Links

Documentation: https://lmfit.github.io/asteval/
PyPI installation: https://pypi.org/project/asteval/
Development Code: https://github.com/lmfit/asteval
Issue Tracker: https://github.com/lmfit/asteval/issues



Installation
Use pip install asteval to install the asteval library.
Asteval requires Python 3.8 or higher. If installed, many functions and
constants from Numpy will be used by default.


About ASTEVAL
ASTEVAL is a safe(ish) evaluator of Python expressions and statements,
using Python’s ast module. The idea is to provide a simple, safe, and
robust miniature mathematical language that can handle user input. The
emphasis here is on mathematical expressions so that many functions from
numpy are imported and used if available.
Many Python language constructs are supported by default, These include
slicing, subscripting, list comprehension, conditionals (if-elif-else
blocks and if expressions), flow control (for loops, while loops, and
try-except-finally blocks). All data are Python objects and built-in data
structures (dictionaries, tuples, lists, Numpy arrays, strings) are fully
supported by default.
Many of the standard built-in Python functions are available, as are all
mathematical functions from the math module. If the Numpy module is
installed, many of its functions will also be available. Users can define
and run their own functions within the confines of the limitations of
Asteval.
There are several absences and differences with Python, and Asteval is by
no means an attempt to reproduce Python with its own ast module. Some of
the most important differences and absences are:


Variable and function symbol names are held in a simple symbol
table (a single dictionary), giving a flat namespace.
creating classes is not supported.
importing modules is not supported by default - it can be enabled.
function decorators, yield, lambda, exec, and eval are not supported.
files can only be opened in read-only mode.


In addition, accessing many internal methods and classes of objects is
forbidden in order to strengthen Asteval against malicious user code.
Matt Newville <newville@cars.uchicago.edu>
Last Update: 30-June-2024

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.