Skip to main content

py_evalexpr

PyPI version CI License: MIT

A Python extension module written in Rust that provides bindings to the evalexpr crate for expression evaluation.

🌟 Features

  • 🧮 Evaluate mathematical and logical expressions from Python
  • 🔒 Three evaluation contexts:
    • StatelessContext: Simple expressions without variables
    • ImmutableContext: Expressions with predefined variables
    • MutableContext: Expressions that can update variables
  • 📊 Type-specific evaluation methods for:
    • Integers
    • Floats
    • Strings
    • Booleans
    • Tuples
  • ⚡ High-performance expression evaluation
  • 🚀 Built using Rust's evalexpr crate (version 12.0.2)
  • 🐍 Python bindings via PyO3

⚡ Performance Benchmarks

PyEvalExpr was benchmarked against several popular Python expression evaluation libraries:

Test Case py_evalexpr sympy asteval simpleeval
simple_arithmetic 0.0047 ms 0.2339 ms 0.0116 ms 0.0083 ms
complex_arithmetic 0.0066 ms 0.2329 ms 0.0186 ms 0.0118 ms
variables 0.0046 ms 0.1996 ms 0.0126 ms 0.0083 ms
math_functions 0.0077 ms 0.2403 ms 0.0230 ms 0.0117 ms
complex_expression 0.0095 ms 0.2268 ms 0.0244 ms 0.0141 ms
boolean_logic 0.0059 ms N/A 0.0159 ms 0.0103 ms

Benchmarks performed on AMD Ryzen 9 7950X with 32GB RAM running Python 3.11 using 50,000 iterations per test. Lower is better.

🔧 Prerequisites

  • Python 3.11 or higher
  • Rust toolchain (cargo, rustc)
  • Compatible C compiler

📦 Installation

pip install py-evalexpr

💡 Usage Examples

Quick Evaluation

from py_evalexpr import evaluate, evaluate_int, evaluate_float

# Basic arithmetic
result = evaluate("2 + 3 * 4")         # Returns 14
result = evaluate("sqrt(16) + 2")      # Returns 6.0

# Type-specific evaluation
int_val = evaluate_int("42")           # Returns 42 as int
float_val = evaluate_float("3.14159")  # Returns 3.14159 as float
bool_val = evaluate_boolean("5 > 3")   # Returns True

Context Usage

Stateless Context

from py_evalexpr import StatelessContext

context = StatelessContext()
result = context.evaluate("42").value          # Integer: 42
result = context.evaluate("sin(0.5)").value    # Uses built-in math functions

Immutable Context

from py_evalexpr import ImmutableContext

context = ImmutableContext()
context.variables["x"] = 10
context.variables["y"] = 20

result = context.evaluate("x + y").value       # Returns 30

Mutable Context

from py_evalexpr import MutableContext

context = MutableContext()
context.evaluate_empty("x = 10")
context.evaluate_empty("y = 20")
context.evaluate_empty("sum = x + y")
result = context.evaluate("sum * 2").value     # Returns 60

🛡️ Error Handling

from py_evalexpr import evaluate
from py_evalexpr.exceptions import EvaluationError

try:
    result = evaluate("undefined_var + 5")
except EvaluationError as e:
    print(f"Evaluation error: {e}")

🤝 Contributing

Contributions are welcome:

  • Open an issue to discuss proposed changes
  • Submit pull requests
  • Follow existing code style

🙏 Acknowledgments

  • evalexpr - Rust crate that powers this project
  • PyO3 - Python extensions framework
  • maturin - Python packaging tool
  • devbox - Predictable development environments
  • uv - Python package installer

Made in 🇨🇦🍁 by Benjamin Kiiskila

Release files for py-evalexpr 1.1.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for py-evalexpr 1.1.1
File Size Uploaded
py_evalexpr-1.1.1.tar.gz 38.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for py-evalexpr 1.1.1
File
py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-64 Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ x86-32 Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARMv7l Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux musl 1.2+ ARM64 Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ IBM System/390x Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ PowerPC 64-le Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARMv7l Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.15 CPython 3.15 Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l Details
py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x Details
py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le Details
py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l Details
py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
py_evalexpr-1.1.1-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARMv7l Details
py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ IBM System/390x Details
py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ PowerPC 64-le Details
py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARMv7l Details
py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
py_evalexpr-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
py_evalexpr-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
py_evalexpr-1.1.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARMv7l Details
py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
py_evalexpr-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
py_evalexpr-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
py_evalexpr-1.1.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
py_evalexpr-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
py_evalexpr-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
py_evalexpr-1.1.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
py_evalexpr-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
py_evalexpr-1.1.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
py_evalexpr-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details

Total release size: 45.3 MB

Release files / py_evalexpr-1.1.1.tar.gz

Download URL py_evalexpr-1.1.1.tar.gz
Size 38.1 kB
Tags Source
SHA-256 checksum
How to use checksums
ef85de06eaeec0b6655f84d85973001c12b003a2a974731670d6ebd9803a12b2
BLAKE2b-256 checksum
How to use checksums
4d2a592a7eedc88842fa781075b9d18d86863cd305786501bcfde70c487838f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Size 735.1 kB
Tags Linux musl 1.2+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5105f46e59d618b65fc26cfd7f77a1af8833259a37d079ed37f0f0a9e3cf656b
BLAKE2b-256 checksum
How to use checksums
2459c0aac9438c47264643f27f3d2af8880a4df2c81e476f5f85305ee76fdf45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Size 779.8 kB
Tags Linux musl 1.2+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
f59a2cf2bb9c9e27af07cbe49516968a981ab6989ec93d136bcacdfb95291fa1
BLAKE2b-256 checksum
How to use checksums
bb456b6d50c67df12a25772407c4fe96a55fa44a635118faa840f78d4625e969
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Size 799.6 kB
Tags Linux musl 1.2+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
f56584cb9d3f3901309c2ffae1593b1bcae449996b5d1922689d2a0479e18583
BLAKE2b-256 checksum
How to use checksums
c6b086e5c488264cf19addc59d4771c77bc60088696f7f25acf95297db2e5e36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Size 692.0 kB
Tags Linux musl 1.2+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a87c4efe1d2e8601e70b4222cee686f2a60b826c411ebfeebf90d4f7e0687e85
BLAKE2b-256 checksum
How to use checksums
ae1ac0f6803261c0de0bb62e5bb8a2d9c7d17aaa926fd3df5894c5e2d3d836fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 522.8 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
8d2c39a2bb1c3d1d70d045034c14c2901327ec924948f9b593d7e6e98dc0b6c0
BLAKE2b-256 checksum
How to use checksums
41e5025047b50c056de2f5f20871ad545d698c9473abfa6fa3554ffe87ea5f64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 544.9 kB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
ea2bf250e9ecaa0d4377f70e619aca0e905283d891c1d699ece0752551756381
BLAKE2b-256 checksum
How to use checksums
84699949162fcf37ed1475c730c33b51c761cdbf4a17d0ffda4f7b9d7bd124e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 636.1 kB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
44215fd37eeea3a78bc940b4fd1bd40549b481e012a2ed4d82aea2de45007478
BLAKE2b-256 checksum
How to use checksums
cd84ab2b1728529f11f1f0428c67981d6f5f85abd9d3c715065578084e243107
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 526.1 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
a008216d881a2e4a52f6179bb537ea530cce8680b4b7e7d01faf80eb600a3dcd
BLAKE2b-256 checksum
How to use checksums
ccf2205835ff13aab48ded04a0ee613128cb680381a037fe6372651aea52a20f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 515.6 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
59ef0bcc986d9303f6d59072f5443db4b17f328fbcce9d3458f179fb51b2f46e
BLAKE2b-256 checksum
How to use checksums
01a9b157b2040199b29f35fd6b74e61d8f9065e17c7e0a0217990ebead05662d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 572.1 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
5e50b8c0b171b01d4283abe65c49221dd95c7893204f82b8bace1a73610ca1aa
BLAKE2b-256 checksum
How to use checksums
5b94c5ed53cad9cd814c17a679fd213def7dfe18a4d287f773a0901cc318dd26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 518.1 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6f3b306e5193e562f3adbd791e631327b4c117ca7f49c009ea33999a86c54cc4
BLAKE2b-256 checksum
How to use checksums
29a6cc317b185e656560cd04c693bcef6a5c37823651fc655e72ab05c3b1c8ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Size 564.0 kB
Tags CPython 3.15 CPython 3.15 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1c9a7b37e4bb8acedda688c441626e3aa7c8ef753f25f88e6e355e7fd92ae788
BLAKE2b-256 checksum
How to use checksums
5b7cc908109284d6ef0f567c461b366f181248350382b93947048bdfb3b589c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 517.2 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ab3d63fe17eab18e15ff4d0a4dcac2d92e9621ee4da886de70dc6157a171f1b0
BLAKE2b-256 checksum
How to use checksums
ef21536c9d0110529684d06cb3b2b0bf3a41a909570b65af139b18b9afc2191f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Size 564.5 kB
Tags CPython 3.15 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0ddfa4bc5ebfd80999bfbcfb0fa331118be7c05c3049bcbfe8dae998f1bef630
BLAKE2b-256 checksum
How to use checksums
b09684d81ca9ebc513bdee04fecf6e19b7549c8aa1089c168284b5b0fed36059
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 730.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a596eaee44ba15db5e08a93fca75bc40f3e25151bb6d33836cdf04d62aff70ae
BLAKE2b-256 checksum
How to use checksums
2a2e45db4c1668b0c32dd3480f3125e692e79b54016a4a44f46d33ba90e71cc3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Size 771.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
db057af1c29ac9cc79b83e7f36fdc66a220037165871cac558161a245b978cb6
BLAKE2b-256 checksum
How to use checksums
122a9aea4e97da6bbb5f5c4d4d1dc957d35412af0731d834e7eeff87cb9382b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Size 794.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
6c244bc0dc30ce3c9a256dc5edc61cf0cef2b426bb8cf9780786158b7b1f614f
BLAKE2b-256 checksum
How to use checksums
dcf3d00415cc4cb1f336cc49713332ececfd2d2aa37436016e18105ef2e7f5fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 685.3 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
4eeacd0c35a8837c54cf869d5a4a672356ba67942941339d41dff96d13f71414
BLAKE2b-256 checksum
How to use checksums
165ce558d709e8ed3ae5d401fdeeac0a50b4f9657bcb76b36547455d2f761cf8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 517.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e28755b0a99ec197da0354b047c18b90bd5c2a5e76c5e7cfdb1f7db66da075a6
BLAKE2b-256 checksum
How to use checksums
18392e55ad076a301665e7a30a2b19e71fef5bca0f0d2a75acc493d366151ffe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 538.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
abd03916cab064dd56de7c7d1b98cd495e06e9ee927b12b501e9a131ff454514
BLAKE2b-256 checksum
How to use checksums
2bb12d14e42d43eb043620057db1bb09b1f66fd619c291a68bf8e5153c51d80e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 630.4 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
5f807dc4f5d496dc575bf8002e1a7de8700e899ea8fb79be2c5d1a8e22aac009
BLAKE2b-256 checksum
How to use checksums
e37481e3f7e004d541c60b5017fbe578e0345bbea3779dafc0d3faaaf4934a83
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 519.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d3f0181de63da2005a78bd374f84932d21076ab41752e6fa8fb558b6430d721c
BLAKE2b-256 checksum
How to use checksums
df0f6a1d6c70d13f520bc13f81dc83577c42f81e2ebd59394047747493b1279b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 507.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
087e23515a44671334ec1b2c59c1126c154ce5fff69397eac44f91126803ce47
BLAKE2b-256 checksum
How to use checksums
54054f20913e6dd1ce39f8195498c6177a93eaaf71841defa0f43a6649fb9c26
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Size 563.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
80ac93c6861135e6082079ef257d4e5fa4d72a91c42f36f145237ba02762993a
BLAKE2b-256 checksum
How to use checksums
3e6317bec3e2e4a7240e86a960447a2d712d2d669d99bf5b2137a4afb77df199
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-win_amd64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-win_amd64.whl
Size 368.8 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
4b32f1a5b0a9f18f1468d05f49e9ab31b6cad52197ff0d309dcb177d4c5e5775
BLAKE2b-256 checksum
How to use checksums
9f8daa520a0a2dcb1af124891cf8b88673d20f0a58555cf621ef121e9b01bdef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-win32.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-win32.whl
Size 328.6 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
a8dfc5731a27b3f308e6a6efbb25c9464cbcc691fce4cfdd6e2daf5d47a63007
BLAKE2b-256 checksum
How to use checksums
f632ca1c86868457eca7727b5d90bc563c5153ccd5457109b5f044851f0f165b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 729.3 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7189fef2984f62fb0ea4eac4c23fde5510408a1e3b76c47cc794bd362894e573
BLAKE2b-256 checksum
How to use checksums
dab53eb1f5da23214c75ad28d661919ac6792b9b0648edd09cd5167c79de608a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_i686.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_i686.whl
Size 772.5 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
ad82bbf0a24a51afdd716c80d2d33a35588cf9ed73b267c719b0b6b9e1cf147b
BLAKE2b-256 checksum
How to use checksums
ffe2da29257d7fac2556c7cc6a585d16dd757b3b368fbd9e76cb2b6e68af6154
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Size 795.3 kB
Tags CPython 3.14 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
b9308678224fa36f18efc9b4aabe154d8aafd54151c41c6ba1c12f4b753e7c7c
BLAKE2b-256 checksum
How to use checksums
ff248bb2ad5028fefd73fafb8d61a2060f23a1f8251b64d0a014eb388b6a33cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Size 686.1 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
337e8fbdf4f6d0a00bcc5f643c979132e7082770b5e79e9f571515a94bc3196a
BLAKE2b-256 checksum
How to use checksums
7ee952a4cfa637618dbd2640d38fad45914a92a9ceb752e931d521dbfccfa234
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 516.6 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a0b9301febff9d926dc7e18a21a12afb2e426dcee8b1738cfe65b512e19ceb19
BLAKE2b-256 checksum
How to use checksums
7d59c7a760ff3113df7fbbf60740e0f8019f1eeb945a08c948d14234dbb82226
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 540.2 kB
Tags CPython 3.14 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ecfa3ef27b501fd2f1e067938c7c917814f6a714972d6eb4986be1d373c8ab62
BLAKE2b-256 checksum
How to use checksums
f7ceebd07a5b743d746341c913244b62408c17b7fec67b4dbef9797720c10612
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 632.1 kB
Tags CPython 3.14 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
4078b75476273fe273fcd5f5ea134454cd513a21f5293b158685a3fa1c3e0251
BLAKE2b-256 checksum
How to use checksums
f070dd7813874f6875e21de04e5f31795c90afcac1b8cd7af0ea6e74cda617a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 519.6 kB
Tags CPython 3.14 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
a2f0a17f8a1245ed4a6142cef8a295073f290328e4540343b221fcf501bb1494
BLAKE2b-256 checksum
How to use checksums
4f8bab899b7d41e20f76471f1a3cf3a0216b258121d4e8270a0d378e8ac12228
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 508.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
578f20f67a540aebadf25f7bbf8019dd0a51e76b09f74d33a6bb9ae59fbe2a60
BLAKE2b-256 checksum
How to use checksums
e60f6e32e803d4cd4a8ede930a471637f8bc7c4c2f3c1d711dee3f9f39e25ff6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Size 564.3 kB
Tags CPython 3.14 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
09b17fb026b104d84b57d0b3193f326a94fd3f5d9111e1659642fdfaaa37b1fd
BLAKE2b-256 checksum
How to use checksums
f696cdc568a42820bc518835ad7ae83a061da5fbd2a2734162de3dd2b4b8514b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-macosx_11_0_arm64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Size 458.7 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c91c871db56364196597181f64888f7fc932fc6be4b968e05ce84b17a2e221cc
BLAKE2b-256 checksum
How to use checksums
5672af176c128f9a67b6933c058793b85269e49447ba0a59973acd09c50e9544
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl

Download URL py_evalexpr-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Size 467.6 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
d910c98ada881c94e8f0c10efbcb2bdcbdad6ee61648e8f6d84679923e003576
BLAKE2b-256 checksum
How to use checksums
8188c4196a751aaa78d28053f59aaf12f10730fd3b5e450df8aa733327001ead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-win_amd64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-win_amd64.whl
Size 367.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
afb4b3c54a6364e4cd1638ae82afd341491a65df2548ae490a28c48f53ed5722
BLAKE2b-256 checksum
How to use checksums
c9b9d7ce968fe32b1ad6dfed4b46dc7cdef4d5d3ee5ef87ca2e5bbb4a7ca4bc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 726.7 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4edbb537f2eb97ddc1eaebc51c52552f1352ca1c9714b897fdf0a4607ab13a6e
BLAKE2b-256 checksum
How to use checksums
5f3a54962f339840392c109c774f10b4a974660156a9dff1c6d729add103f4f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_i686.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_i686.whl
Size 769.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e1ec3443588f9ea6229cb5d64f8a949807d56e84de585cf87121e0176cf0569f
BLAKE2b-256 checksum
How to use checksums
8899321b7f992a1b5cb8a20c568776cd9219de71027bac58768f3ff9f660cf1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Size 792.0 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
61d892dfaba4f8e54e6cc247c7cfb476e611571eaa10e7fb2bc2b8b359d9f11a
BLAKE2b-256 checksum
How to use checksums
18762b8a3c7c74087c148e6736346a052547847a52bf9d2b49437302c1ab204f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Size 683.6 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
a93e292e01b9c03ee14bf1df69607aae4ce9decddbfd5a98428324bb12eb6c7b
BLAKE2b-256 checksum
How to use checksums
a8eb04f94d79a4eee5bc1ee33e47c80419bb10c1b68d932f0f5197d32d8179ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 513.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
73ca57c8c2658a136b8c04840cbd788c732f6c4f3fe4d9fc3f70f24dbf2cdfc8
BLAKE2b-256 checksum
How to use checksums
2023301dc14ed4f5bbdb6eaf5815aa35faed364ed5bdd8a15b355cdf89b68d4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 539.2 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1979b5d559d71e808eaf76b2d0af2bc56aaa9fbe6e1708c7d69e1759582b8dfd
BLAKE2b-256 checksum
How to use checksums
7d0ff66cb4398d6cea6a2537855fa192c86c20228215f6cfd82c1eb9703c7883
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 627.6 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2c78cff1dec1d3ed6f872d2781acbd24bd1f99d31d1c75a44bb25feb46b68176
BLAKE2b-256 checksum
How to use checksums
9450c1f143783013e2376bda0775800571f5cedfd1056c915892a7563ccdb3c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 517.6 kB
Tags CPython 3.13 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
affff97d24b94c390a69ebcea3aec2b28127d65d52e9d0f073d64bb9aacd3654
BLAKE2b-256 checksum
How to use checksums
e7049c9558378cb0faca50084e36cc3598a3a51e52c5d77a0f79893e063000e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 505.9 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d6e882cedec3a45371d6312c57711428b9d4130c55373be17af3a16332afeb0d
BLAKE2b-256 checksum
How to use checksums
edc30e5099011d473b3506039ee0827f7e7def6a85336d324d17badaed7060cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Size 561.9 kB
Tags CPython 3.13 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
aa4b6966cb5c3d49a72e23d307042c55113fce123631b8f06520f7e34a401bc7
BLAKE2b-256 checksum
How to use checksums
1acd73fb852ebfe268f5ed1b633617b8681f246c8ff3ec3048231bd2831230fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Size 453.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2ddc68e7e429fd9cfe496affdf7820ee66a968bf36a911abdc1fd52526828490
BLAKE2b-256 checksum
How to use checksums
2c24d765a443570c9939ada478d3922bec126ed7a7e6d375eb1a86bcf9191acb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl

Download URL py_evalexpr-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Size 464.1 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3870680999511bbc12e2ec4b20d42a0de80df453fbbe1850a2f46d9943c45fc1
BLAKE2b-256 checksum
How to use checksums
c8f459dc971bd9826921cb640d74bccf8ccd5136ff76fe6f14847cf2f4d5d850
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-win_amd64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-win_amd64.whl
Size 368.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
4a08a8fdea0a6accdc08502ee8cb5013765a3ffe57ad0a8cf0119510bf8eef58
BLAKE2b-256 checksum
How to use checksums
7b2f408e875db47a8d2b1a8fc95e092313f8a79994c8fbf4c5b6e764301b1b97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 727.2 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
eef50533f5ba447e1e5898763289d1d2bb979d6871c933da5c67064a820bc472
BLAKE2b-256 checksum
How to use checksums
3f6975b043c98eb8555709f00287ddde43dc5c7ef2465d1c9e918221a284443b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_i686.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Size 769.5 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
7a5fd52821c1cd25d968d3906428e0130ac26487cc956db2546556b4c43770dd
BLAKE2b-256 checksum
How to use checksums
98307903e41b896052d77b73b89494c5727e71e1e2bc46549c275f8fd7779284
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Size 792.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
fea53ab6f816a7a7d29602aee9da885567a0ccf5644cff1af2dca26d41e46716
BLAKE2b-256 checksum
How to use checksums
db1fd1b16bc362d5772de276b842a3afc5426efb355090796beec44d2554f1e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Size 684.3 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e7b5cac64395a931d4cdb0f5844bd9dde1d0d71e2473cc5f1f26133c00228e73
BLAKE2b-256 checksum
How to use checksums
dc7ce6b1f7791db6373dc39ded75cd95b6fa3b65731e1c4591e707313581b2c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 514.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
98d4299e76f68ecddedb92894b229736b74a1ce7e8be2c9035dbf98ee7907eb5
BLAKE2b-256 checksum
How to use checksums
0300a74711c96f6a145656387711d93d60331bb2cd8b864f0e5b5be5298dbe36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 538.8 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8b581fc42bacb1fe703c11aea5ffd8146ac5c4cb1c3c6c9b3e4823661ba3f145
BLAKE2b-256 checksum
How to use checksums
4b268b84f1d123218ed08f50d19996094ed6835ccd0682a05152f06578626749
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 627.7 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9eb26e28b7fbd2d34297816fdfd89bd99f9e262756e87fe6ed45dd091154fd56
BLAKE2b-256 checksum
How to use checksums
1560cb6a75bf3434ca56801552cb1e0565e3d94d9325b2c0a19394fad347432a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 517.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
3cb0989253477273b3861f8371f3ff5557c9db8e9662f8d9c349aed9cbb06d9b
BLAKE2b-256 checksum
How to use checksums
0b5fc6f3e205420cbef1095155278c2645de2191035d30e13ebf86e011e8db64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 506.6 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6cdc714b0a41d73e17a30f839ff20bf52851d60d6f3eea6ae7e3347856087710
BLAKE2b-256 checksum
How to use checksums
b000bc82f9f4101bc7a1cb0b4ab2196fc0625157964d100f3e8262fe71e87bd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 560.9 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5557813178cc22f2300881e25045af2a3492b4e312f56319fb5f4f0eb844659d
BLAKE2b-256 checksum
How to use checksums
4ed7a4d72b20fdd093ab4035615b0804396254af84f36bc5fd0ea0ecf5600d0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Size 454.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b021f4e581c90f9ce8fec6903db25d525adc636b7fc12449bec5dfcb62dc371e
BLAKE2b-256 checksum
How to use checksums
491d3db18568ea6ac5556c7118fe9876f8c227c2239ebb4d09eee1091f3370ff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl

Download URL py_evalexpr-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Size 465.1 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
af10e6357a72f33e80374d9a6aaeb7aa1785991b4da1b9e5a064fc96e12dcfd8
BLAKE2b-256 checksum
How to use checksums
2a9b61e8c15e5647041f8fd57367e331d3000e7caf39352d3da67f166ddcb4cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-win_amd64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-win_amd64.whl
Size 371.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
cc786d9db208b57efdcf4484c2f4e19fc42e9f19fc360c528b994caff81c799f
BLAKE2b-256 checksum
How to use checksums
c7983ba14eb4ab32d76e01d335e8f006b491eefac6390e18fb14ca9db67c1da8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Size 731.4 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
a40edbbe21dfa3a7480f71c70a4e9a7099dee3682b92e158705689449ac24e10
BLAKE2b-256 checksum
How to use checksums
6863fe0f7c94a1bedf9206dd16831bfd3b72c97ff27b4ef277a639db55a526a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_i686.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Size 776.0 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
a8965f0dc0c2570e885d22640e582420debf3baf8aff6ddaeeec2a9ad4b57f04
BLAKE2b-256 checksum
How to use checksums
b8bcd37099e39b8eeafb36c4fb799da88984e0d818fb519baa3aa8d45f297433
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Size 797.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
210da24b123543bc182fae575637c5b719283b62378d3120cfa69ec36a068e4b
BLAKE2b-256 checksum
How to use checksums
a2b038994fbd77c8c50e854c617fc0cd8f94c44fab3c69b045de8a49685d7675
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Size 689.5 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
72eedec729aecbc051669f526c143508a648d1c390959e008b3212fc3b8b4ac7
BLAKE2b-256 checksum
How to use checksums
a2efe9d260a7a4dbc58ca5c85408d163edbc5b971b951a830db92db5d1c272a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 518.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d99e01e452041ed09f6020483d49a0cfcfeb52169561085e2d2f84c5c0e6aeeb
BLAKE2b-256 checksum
How to use checksums
58a085c0c9087d4b079f5e8523c718d910748a67d3111020127c9add048aaa19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 539.3 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
e24792d0015cf6238751eb07ea79454e9c1c9a49215c1211df7af8fd32b9a767
BLAKE2b-256 checksum
How to use checksums
c3c1332da5a6d1ec18151c19bdb7bcc529e0474ef98d75eea1131244227190dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 634.3 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
422d0590b77554eee7eca6bd3d4f60489bb8afbc37a3a30968c934258c8ef24f
BLAKE2b-256 checksum
How to use checksums
1262a1567fe0288eb9f893b13711a3ebdce92f17b1beaa715788c829177e6899
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 522.5 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
c442aa2daeaeeb6f257de166606dfdba259138aa32404a568a4ddcfe791fb8ff
BLAKE2b-256 checksum
How to use checksums
c1c0063626b403ab00428e6153bd9f1aae3914aadda2ce22682b3ef14a48d69a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 512.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b26361e479bc7aac85cb10711bf406e07447e71a91e18924ce0019e8e8aaf856
BLAKE2b-256 checksum
How to use checksums
1d313953dd47fefadb35d7e44e198c5be72a8e53e8137e52ec7288e46a636f34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 568.6 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
343da7fdab5eb5adcadb185363fcd9b3dadcdcddc143187859781a9c5488f5ee
BLAKE2b-256 checksum
How to use checksums
570af16d1922600e320786ea81c2ccbc3c25f1d2e6fe9c7e12bd5ff47c8cc3e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Size 464.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e97e56bdc25dc9b1581a2072d88a82a0b0c038377f65ec08b840cd7b55391c32
BLAKE2b-256 checksum
How to use checksums
e85b2a7c29f69b0136dcb3506f12729f1b4fe4c70ac4c59414c6c64029d53e1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release files / py_evalexpr-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl

Download URL py_evalexpr-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Size 464.5 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
56a0cd3e3d8cc0966833c49cd33de977fcb32d52b75e108c325ec87cd9a1cb8b
BLAKE2b-256 checksum
How to use checksums
05399f07cab07403ac106908841afc28dc2fed31b75a3ec7e276f80c8eb17a39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via maturin/1.14.0

Release history Release notifications | RSS feed

This release

1.1.1 This release

78 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page