Skip to main content

A program to help build, maintain, and release PEP 517-compliant projects.

Project description

???

Interpreter for a basic logic language, inspired by two-element boolean algebra.

Demo

Here's a quick demo, based on the example that prompted its creation:

>>> from lla.interpreter import Interpreter
>>> variables = {
...     'ssh': True,
...     'website_up': True,
...     'search_up': False,
...     'elasticsearch.http': False,
...     'elasticsearch.process': True,
... }
>>> interpreter = Interpreter(variables)
>>> interpreter.run('ssh & website_up')
True
>>> interpreter.run('ssh & website_up & search_up')
False
>>> interpreter.run('!search_up & !elasticsearch.http & elasticsearch.process')
True
>>> interpreter.run('undefined_variable')
Traceback (most recent call last):
    ...
lla.interpreter.UndefinedVariableException: Undefined variable: undefined_variable

Overview

Here's the gist of it:

  1. All variables are booleans.
  2. You can't define variables, just pass the interpreter predefined values. a. Or pass the Interpreter instance a dict, because those are mutable.
  3. Only fully-resolvable statements are supported. a. Anything else raises a Python exception.
  4. You provide the interpreter a single statement and it gets simplified to a single boolean value, which is then return.

Dependencies

In theory, this is all you need is Python 3.6+.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/duckinator/snektrace.

The code for snektrace is available under the MIT License.

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

lla-0.0.2.tar.gz (5.0 kB view hashes)

Uploaded Source

Built Distribution

lla-0.0.2-py3-none-any.whl (6.4 kB view hashes)

Uploaded 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