Skip to main content

Extensible combinator library for building symbolic expressions that can be evaluated at a later time.

Project description

Extensible combinator library for building symbolic Python expressions that are compatible with serialization and can be evaluated at a later time.

PyPI version and link. Read the Docs documentation status. GitHub Actions status. Coveralls test coverage summary.

Purpose

In many scenarios that require some form of lazy evaluation, it is sufficient to employ lambda expressions, generators/iterables, or abstract syntax trees (via the ast and/or inspect modules). However, there are certain cases where none of these are an option (for example, employing lambda expressions precludes serialization and employing the ast or inspect modules usually involves introducing boilerplate that expands the solution beyond one line of code). The purpose of this library is to fill those gaps and make it possible to write concise symbolic expressions that are embedded directly in the concrete syntax of the language.

Package Installation and Usage

The package is available on PyPI:

python -m pip install symbolism

The library can be imported in the usual ways:

import symbolism
from symbolism import *

Examples

The library makes it possible to construct symbolic Python expressions (as instances of the symbol class) that can be evaluated at a later time. A symbolic expression involving addition of integers is created in the example below:

>>> from symbolism import *
>>> addition = symbol(lambda x, y: x + y)
>>> summation = addition(symbol(1), symbol(2))

The expression above can be evaluated at a later time:

>>> summation.evaluate()
3

Symbol instances are compatible with all built-in infix and prefix operators. When an operator is applied to one or more symbol instances, a new symbol instance is created:

>>> summation = symbol(1) + symbol(2)
>>> summation.evaluate()
3

Pre-defined constants are also provided for all built-in operators:

>>> conjunction = and_(symbol(True), symbol(False))
>>> conjunction.evaluate()
False

Documentation

The documentation can be generated automatically from the source files using Sphinx:

cd docs
python -m pip install -r requirements.txt
sphinx-apidoc -f -E --templatedir=_templates -o _source .. ../setup.py && make html

Testing and Conventions

All unit tests are executed and their coverage is measured when using nose (see setup.cfg for configuration details):

python -m pip install nose coverage
nosetests --cover-erase

Alternatively, all unit tests are included in the module itself and can be executed using doctest:

python symbolism/symbolism.py -v

Style conventions are enforced using Pylint:

python -m pip install pylint
pylint symbolism

Contributions

In order to contribute to the source code, open an issue or submit a pull request on the GitHub page for this library.

Versioning

The version number format for this library and the changes to the library associated with version number increments conform with Semantic Versioning 2.0.0.

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

symbolism-0.2.3.tar.gz (7.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

symbolism-0.2.3-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file symbolism-0.2.3.tar.gz.

File metadata

  • Download URL: symbolism-0.2.3.tar.gz
  • Upload date:
  • Size: 7.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0

File hashes

Hashes for symbolism-0.2.3.tar.gz
Algorithm Hash digest
SHA256 bb39533dca90614384477a2ef5a7b11718017e4b5b4c9d3292595efb17c4be7a
MD5 7e35728cde80c623cad589f1f3bca96a
BLAKE2b-256 3feb144be5fdc2794525351c2973393591530656ec32e2866a974bdba4d49aa9

See more details on using hashes here.

File details

Details for the file symbolism-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: symbolism-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.26.0 setuptools/58.1.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.8.0

File hashes

Hashes for symbolism-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 52b496e125c3bcff7c4fe9af200d73dafdccb9042a9a5c8ff87b6bdf5ebb23a2
MD5 c940d674de2909b789f7dd0c1c083daa
BLAKE2b-256 f002195f6c3abc2e2aed56dcdbe0fe7fda2c14342bd8b4ac4c546e26a7d4d719

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page