Coder Social home page Coder Social logo

tals / asteval Goto Github PK

View Code? Open in Web Editor NEW

This project forked from lmfit/asteval

1.0 2.0 0.0 851 KB

minimalistic evaluator of python expression using ast module

Home Page: http://newville.github.io/asteval

License: Other

Python 97.67% Batchfile 0.85% Shell 1.48%

asteval's Introduction

ASTEVAL

image

image

What is it?

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, and so numpy functions are imported and used if available.

While much of Python's constructs are supported, there are important absences and differences, and this is by no means an attempt to reproduce Python with its own ast module. Important differences and absences are:

  1. Variable and function symbol names are held in a simple symbol table (a single dictionary), giving a flat namespace.
  2. creating classes is not supported.
  3. importing modules is not supported.
  4. function decorators, yield, lambda, and exec are not supported.

Many built-in python syntactical components (if-then-else, while loops, for loops, try-except blocks, list comprehension, slicing, subscripting), and built-in data structures (dictionaries, tuple, lists, numpy arrays, strings) are fully supported. In addition, many built-in functions are supported, including the standard builtin python functions, and all mathemetical functions from the math module. As mentioned above, if numpy is available, many of its functions will also be available. Users can define their own functions, but given the restrictions of not being able to define classes or import modules, the language is decidedly limited.

asteval's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.