--- id: snuggs version: "1.4.7" license: MIT license_treatment: permissive maintenance: active --- # snuggs — Snuggs are s-expressions for Numpy License: permissive · Maintenance: active · Downloads: 560.2K/mo ## What it is and what it does Snuggs is a small expression evaluator that lets you write NumPy computations using Lisp-like s-expression syntax instead of Python. You pass a string like `(+ 1 2)` or `(mean (asarray 1 2 4))` to snuggs.eval(), and it parses and executes the expression, returning the result. It wraps NumPy functions and operators (arithmetic, logical, and higher-order functions like map and partial) in a functional, parenthesis-heavy syntax. The main use case is writing simple, expression-based array calculations—particularly useful when you need to serialize computations as strings or accept user-provided formulas as input. It supports passing NumPy arrays as named context variables, so expressions can reference external data. The package is lightweight (only numpy and pyparsing as dependencies) and has no known security vulnerabilities, but performance is not optimized; the documentation explicitly notes it lacks the multithreading and temporary-elimination optimizations of libraries like numexpr. Use it for: - Accept user-provided mathematical expressions as strings and evaluate them against NumPy arrays without parsing Python code. - Serialize array computations as s-expressions for storage, transmission, or later evaluation. - Write simple calculator-style programs that combine NumPy functions with arithmetic and logical operators. - Build domain-specific languages or configuration systems that need to express array transformations functionally. - Prototype numerical algorithms using Lisp-like syntax before translating to optimized Python or compiled code. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Snuggs evaluates s-expressions (Lisp-like syntax) that operate on NumPy arrays and scalars, letting you write array computations as nested function calls rather than Python code. Yes, if you need to evaluate user-supplied or serialized array expressions safely and don't require high performance. The low install friction, permissive license, and lack of vulnerabilities make it a straightforward choice for expression-based workflows. Not recommended if you need optimized array computation; use numexpr or raw NumPy instead. ## Install pip install snuggs uv add snuggs poetry add snuggs ## Installing snuggs Before you install: Low install friction with only two runtime dependencies (numpy and pyparsing). The package is actively maintained with recent commits, though the latest release was in 2019. License in practice: MIT license is permissive; you can use, modify, and distribute snuggs freely in commercial and private projects with minimal restrictions. Quickstart: import snuggs import numpy as np # Simple arithmetic snuggs.eval('(+ 1 2)') # 3 # Array operations snuggs.eval("(+ (asarray 1 1) (asarray 2 2))") # array([3, 3]) # With context variables snuggs.eval("(+ (asarray 1 1) b)", b=np.array([2, 2])) # array([3, 3]) Verify before relying: - Whether the package is actively developed or maintained in maintenance mode only (last release 2019, but recent commits in 2026) - Python version compatibility and support range (requires_python field is empty) ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: active - Downloads: 560.2K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags lisp expressions for numpy, s-expression array evaluation, numpy calculator dsl, functional array operations, numpy lisp syntax, dsl, expression-evaluation, lisp-syntax [View on SkillFed](https://skillfed.io/packages/snuggs) · [View on PyPI](https://pypi.org/project/snuggs/)