Fast symbolic differentiation library - Rust-powered Python bindings
Project description
SymbAnaFis
High-performance symbolic mathematics library written in Rust with Python bindings.
SymbAnaFis provides a robust engine for symbolic differentiation, simplification, and evaluation, designed for performance-critical applications in physics, engineering, and machine learning.
Key Capabilities
- ⚡ High-Performance Architecture: Built on Rust for speed and memory safety, with interned strings and optimized memory layout.
- ∂ Symbolic Differentiation: Supports product, chain, and quotient rules for a vast array of mathematical functions.
- ✨ Algebraic Simplification: Intelligent simplification engine covering trigonometric identities, constant folding, and algebraic expansion.
- 📊 Uncertainty Propagation: Comprehensive support for calculating uncertainty propagation with full covariance matrix integration.
- ∇ Vector Calculus: Native symbolic computation of Gradients, Hessians, and Jacobian matrices.
- 🚀 Parallel Processing: Optional parallel evaluation engine using Rayon for massive batch operations.
- 📦 Python Bindings: Seamless Python integration via
maturin, offering the speed of Rust with the ease of Python.
Visual Benchmarks
SymbAnaFis performance is validated against SymPy and SymEngine using complex physical simulations. Each benchmark features a Quad-View Dashboard comparing real-time simulations side-by-side.
Aizawa Attractor
Watch Video Simulates 500,000 particles flowing through the Aizawa field, comparing Euler integration throughput.
Clifford Attractor
Watch Video Visualizes 1,000,000 particles evolving in the Clifford map, testing discrete map evaluation speed.
Double Pendulum Matrix
Watch Video Simulates 50,000 chaotic double pendulums, verifying symbolic differentiation correctness and RK4 integration stability.
Gradient Descent Avalanche
Watch Video Massive particle descent on a complex terrain function, showcasing symbolic differentiation of compiled functions.
Installation
# Python
pip install symb-anafis
# Rust
cargo add symb_anafis
Quick Start
Python
import symb_anafis
# Differentiate complex expressions
result = symb_anafis.diff("x^3 + sin(x)", "x", [], None)
# → "3*x^2 + cos(x)"
# Algebraic Simplification
result = symb_anafis.simplify("sin(x)^2 + cos(x)^2", [], None)
# → "1"
# Handle constants automatically
result = symb_anafis.diff("a*x^2", "x", ["a"], None)
# → "2*a*x"
Rust
use symb_anafis::{diff, simplify, symb};
fn main() -> Result<(), Box<dyn std::error::Error>> {
// String API for ease of use
let result = diff("sin(x) * x", "x", &[], None)?;
println!("{result}"); // cos(x)*x + sin(x)
// Type-safe API (Symbol is Copy - no clone needed!)
let x = symb("x");
let expr = x.pow(2.0) + x.sin(); // x² + sin(x)
// Export to LaTeX
println!("{}", expr.to_latex()); // x^{2} + \sin(x)
Ok(())
}
Advanced Features
🔍 Fine-Grained Control
Use the Builder pattern to configure safety limits and behavior.
use symb_anafis::{Diff, Simplify};
Diff::new()
.domain_safe(true) // Prevent unsafe simplifications (e.g., x/x != 1 if x=0)
.max_depth(200) // Prevent stack overflows on massive expressions
.diff_str("sqrt(x^2)", "x", &[])?; // Result: abs(x)
📉 Uncertainty Propagation
Calculate error propagation symbolically, supporting correlated variables.
use symb_anafis::uncertainty_propagation;
// Calculate uncertainty formula for f = x + y with full covariance support
let sigma = uncertainty_propagation(&expr, &["x", "y"], None)?;
// → sqrt(sigma_x^2 + 2*sigma_x*sigma_y*rho_xy + sigma_y^2)
⚡ Parallel Evaluation
Evaluate expressions over large datasets in parallel (requires parallel feature).
// Requires: symb_anafis = { features = ["parallel"] }
use symb_anafis::{eval_parallel, symb};
let x = symb("x");
let expr = x.pow(2.0);
// Clean macro syntax for parallel evaluation
let results = eval_parallel!(
exprs: ["x + y", expr],
vars: [["x", "y"], ["x"]],
values: [
[[1.0, 2.0], [3.0, 4.0]],
[[1.0, 2.0, 3.0]]
]
).unwrap();
🛠️ Custom Functions
Register custom functions with their own derivative rules.
use symb_anafis::{Diff, UserFunction};
Diff::new()
.user_fn("f", UserFunction::new(1..=1).partial(0, |args| {
// Define ∂f/∂u = 2u for f(u)
// Clone the Arc (cheap), then multiply
2.0 * args[0].clone()
}).unwrap())
.diff_str("f(x^2)", "x", &[])?; // → 4*x^3
Supported Functions
SymbAnaFis supports over 50 built-in mathematical functions:
| Category | Functions |
|---|---|
| Trig | sin, cos, tan, cot, sec, csc |
| Inverse Trig | asin, acos, atan, atan2, acot, asec, acsc |
| Hyperbolic | sinh, cosh, tanh, coth, sech, csch |
| Inverse Hyperbolic | asinh, acosh, atanh, acoth, asech, acsch |
| Exp/Log | exp, ln, log(b, x), log10, log2, exp_polar¹ |
| Roots | sqrt, cbrt |
| Error Functions | erf, erfc |
| Gamma Family | gamma, digamma, trigamma, tetragamma, polygamma(n, x), beta(a, b) |
| Zeta | zeta, zeta_deriv(n, s) |
| Bessel | besselj(n, x), bessely(n, x), besseli(n, x), besselk(n, x) |
| Elliptic Integrals | elliptic_k, elliptic_e |
| Orthogonal Polynomials | hermite(n, x), assoc_legendre(l, m, x) |
| Spherical Harmonics | spherical_harmonic(l, m, θ, φ), ynm(l, m, θ, φ) |
| Other | abs, signum, sinc, lambertw, floor, ceil, round |
¹ exp_polar currently aliases exp (placeholder for future polar form support)
Documentation
- API Reference - Detailed guide to all functions and modules.
- docs.rs - Full Rust crate documentation.
License
Apache License 2.0 - see LICENSE
Citation
If you use SymbAnaFis in academic work, please cite:
@software{symbanafis,
author = {Martins, Pedro},
title = {SymbAnaFis: High-Performance Symbolic Mathematics Library},
year = {2026},
url = {https://github.com/CokieMiner/SymbAnaFis},
version = {0.8.0}
}
Built with ❤️ in Rust 🚀
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file symb_anafis-0.8.0.tar.gz.
File metadata
- Download URL: symb_anafis-0.8.0.tar.gz
- Upload date:
- Size: 493.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c88ab7c4ab74367698956ddbdd30dc02fb4ef567b3f2bebe5ea0764ac62c68e
|
|
| MD5 |
b084680f44046f74377506326c004b26
|
|
| BLAKE2b-256 |
d279d0e832a04f2f34e961b0efee2f0ab410984b7647d656be451186e7cbc78e
|
File details
Details for the file symb_anafis-0.8.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8df6873e8478d2603ba5d02680b5d6dd45f75760b8d4583bea1017102df66b2
|
|
| MD5 |
491fe7e1321f847a14fd6d6f2f8f825f
|
|
| BLAKE2b-256 |
5db7fd035ee531bf7cd4987bdf4ead2bebc15eb99c85ce7a837ff0da1689e546
|
File details
Details for the file symb_anafis-0.8.0-cp314-cp314-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp314-cp314-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89861609fe64a9ca972cb34cc534e33be80dc28bceeda63001e50b3305e7a851
|
|
| MD5 |
74802b6436766a6531578fbc74220e8b
|
|
| BLAKE2b-256 |
076da4b5edf87d0dedf3cfffbdac91d51a9a8c671e063a77742dd46dea9675c8
|
File details
Details for the file symb_anafis-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcf634108954de35df51c2809e0ed4540e2b2139602d9bb048ba9dacb888e9bd
|
|
| MD5 |
35b2383520724c029e9df0592e1cafef
|
|
| BLAKE2b-256 |
676b37982553ab7c0a432409b90cba2d5ce87c1ab74394a76a7fe2464c2745f8
|
File details
Details for the file symb_anafis-0.8.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cdf746942774bad63baad2e1c969a97f9ec361b6447a0c6c5ec2a5d1c5a1ef5
|
|
| MD5 |
fd1881905773c2bc91bfe3223bd3fbad
|
|
| BLAKE2b-256 |
e2d216b6088e6e8ad5c76ee9661dcb736b0cfe2e13d28bedec5c4f4da7409577
|
File details
Details for the file symb_anafis-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2590b5f3bfda39b7b0223b65de2a68ba4f68ff4b85c6336c2da75713a366fd21
|
|
| MD5 |
24609b625fbcc309750b4fe929ccfdda
|
|
| BLAKE2b-256 |
c4e42037b97ce8c8511fb4d7c8e37bd5f7a31f45e0509f98871282a6f619c4c3
|
File details
Details for the file symb_anafis-0.8.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57a7be717439fbcf6c4cbb5a4c936c76c0919939e37bfc23b632ec8bc1613fb4
|
|
| MD5 |
4bd1d1b8baf436ea196816b56dfd4bf8
|
|
| BLAKE2b-256 |
a71f406c411a1ee8505ba933dd86e7538ec07b22c49cd73b0f3549f44a3d5410
|
File details
Details for the file symb_anafis-0.8.0-cp313-cp313-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp313-cp313-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e99467e3a01ddca67644479ea47de44ec096891434b7f3e00cc9e4884bb0bf07
|
|
| MD5 |
e45ff4fbcd28c0df615fe92d92ff7dad
|
|
| BLAKE2b-256 |
fa235694f499b8dfeb55fbe75666e6290bcbb5f1d2a3607121765c73c8c64301
|
File details
Details for the file symb_anafis-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f84fa324f225ff1e570377bf0d83cc2b3bf9a0fac105b00898594ef6cfebb3a1
|
|
| MD5 |
f5eb30479f81f794a9a605bd5d925f78
|
|
| BLAKE2b-256 |
43528e684e38de8aa67455f62322e2486b5a4bf66337fbe3de33308a9ea3728e
|
File details
Details for the file symb_anafis-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
606a589f42154f6f992fdff0d4668919324b9df34171bbfbc8dbfa23b43a21cc
|
|
| MD5 |
a911833628743b04160df72b4b664b1d
|
|
| BLAKE2b-256 |
d51ac780e759e29857fcce6fe3e007d64288247193ba5f857f0a0c43cb65eebd
|
File details
Details for the file symb_anafis-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b3284169739dc2ba984518b7b0ee8bb8090df20d7c551d902293f6f08ddd918
|
|
| MD5 |
0006eb18a1368a96acb26c6c5e2f6609
|
|
| BLAKE2b-256 |
00a4386e688d34e55881c7b0f970436ca99061d33f89177b056369ebe8123f7a
|
File details
Details for the file symb_anafis-0.8.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf29b3edb75fefa95490b09ebff11df1c69d6d005f3d222281b71420fec4a6bf
|
|
| MD5 |
f0802d24af10aa44df39d0085a41f0a1
|
|
| BLAKE2b-256 |
2f062bfad14655f895fe272df685a428313cdaa3ac79a2b867b723b36df076bf
|
File details
Details for the file symb_anafis-0.8.0-cp312-cp312-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp312-cp312-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
974af167eec40363f2e910d0c3c9de2be20ed6fd31a1959020d9310433912443
|
|
| MD5 |
5330340540b3945ecdb5909de5e72979
|
|
| BLAKE2b-256 |
b2affaf76ce97a92e606a5bf2bd5ca4d68728594b1ef62080d9361ea52231579
|
File details
Details for the file symb_anafis-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98151d76316177999d7c0298e71e9d942057da12563053e6ce25b092371ebfa9
|
|
| MD5 |
d5bfc7f6ab0e170a522639f06c05d30c
|
|
| BLAKE2b-256 |
fff7fa5a8172d9ce46574cab59c3cd72247c15032a9c9ae603be7a4e0e9d6095
|
File details
Details for the file symb_anafis-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e210ebd0c6d79202ea158f3195951e3ec223e1a76dab3622a00bc975bf17af6
|
|
| MD5 |
6fc5ae9460ca7c4f196a7de099c13175
|
|
| BLAKE2b-256 |
28b130348f739cda8160e5598b17aef628ae817812f3be450172dd91e47fd7f3
|
File details
Details for the file symb_anafis-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd656c6a83b509b9bfe715d2b4b46bf98f89932cc0441bddf28dd966cbb32c17
|
|
| MD5 |
9c0b95a81dd019a6b990a526e64b0798
|
|
| BLAKE2b-256 |
66a23d65dd670126e559d716afb6c607f80268f6d28e79312497c45c8261327f
|
File details
Details for the file symb_anafis-0.8.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb7248df7d791b43730e0ed4a6e9b1d7cb708e6e4d8194972415936c410941ec
|
|
| MD5 |
2bb9144a0f1557878c69de17e5ba9cc7
|
|
| BLAKE2b-256 |
e9f6b64808db49bc3e096e3bd67104525dfd67b452f88e06aaf7cdca040ce667
|
File details
Details for the file symb_anafis-0.8.0-cp311-cp311-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp311-cp311-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eefa2f9b87d6b999bd55dba7b234d52c4510107b72045779acaf2003a69709b0
|
|
| MD5 |
7b35bab6a119229de3563faadd072296
|
|
| BLAKE2b-256 |
561bc935d8692f7ff3bd686b5168c5f37bc60bd9358f84f1b573f65388682bc4
|
File details
Details for the file symb_anafis-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8df207b08f7fe1ef642172ee11d5f09561f6f83c496c50328de81309443922b
|
|
| MD5 |
095444870a5dddba4808626d3fae761e
|
|
| BLAKE2b-256 |
1ef80391eae9c0130b7467e64c5921d90039c39c1be431e4be52111f4d6ab512
|
File details
Details for the file symb_anafis-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa5b76870e3a4d52a2b83d2e6a8ba327e895aa143398689c05b8223b9d111172
|
|
| MD5 |
3f97af3801767037b022a6e4934511f3
|
|
| BLAKE2b-256 |
9d57f7ca35464b8b893ab5858c8e291f8e7a5e08be00effdfac05688220b1685
|
File details
Details for the file symb_anafis-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a475227a2fa89a65beca0687e3807b2bc7799fec1c431a5743a517c0d39c9a26
|
|
| MD5 |
57393bda011d2122bd7912b2abadc66f
|
|
| BLAKE2b-256 |
ae817ad20e2347f05074069e966ba73686bdc1196d7cf480236d2e400ea40a51
|
File details
Details for the file symb_anafis-0.8.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e83727f7b42f11bec87f86820ae1ed2406eece9845df9dac3e5524c4e1cf74b
|
|
| MD5 |
6536c6a8852e5f2c6e312bec93d6f5cd
|
|
| BLAKE2b-256 |
1bbd83b9912ddb711f6d8492dfa5e66c4c4cccea1dc242293f796ac0f3a0eb6e
|
File details
Details for the file symb_anafis-0.8.0-cp310-cp310-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp310-cp310-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
41207a2d61f21b391d9c5a9b41141f16d9e565ffe74dc56b905b7a3bda165d76
|
|
| MD5 |
717d062799d02551298d40c47d69a712
|
|
| BLAKE2b-256 |
c656cc5b6465453615eb84beb19ba1e71300232b932d58e875ade7ef51e88a4e
|
File details
Details for the file symb_anafis-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4e0fac5b3152206f943ef243fa89aed2d2a9e4b42e0c62d992db4daba0dc527
|
|
| MD5 |
3b44ea4b7a8fcdf831efd9444f010be3
|
|
| BLAKE2b-256 |
b6244fe043c2026ed6a174feadbea1d768e97cbd9985dbdde0125a5f96bb068f
|
File details
Details for the file symb_anafis-0.8.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62a814c59df213ae3aa04a5aa129dee33b6758d58ac75ab1f5bafc3c2e838aad
|
|
| MD5 |
961f71ded439379d0bedd1158b65e96c
|
|
| BLAKE2b-256 |
a021b4115134dada5771054024ac1f35998107870e1be15de0416d5c7938f9ad
|
File details
Details for the file symb_anafis-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
549793691fa368cf9fda13d4169f74966d37e2a4a4a7aeeb5fcbd5f07d925152
|
|
| MD5 |
1feec5593eae819eda205bf14957bb40
|
|
| BLAKE2b-256 |
22d0e9d635e9b8d3d6227a8787cfb5c447e6fbbcd70bb0fa4c5d73806e4dca2a
|
File details
Details for the file symb_anafis-0.8.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51dc3ba371654c0f5ade6cb0925b2c779322fe66e4b64d8789ceb675b7e0c744
|
|
| MD5 |
b973d8f04ca0b4f11b3ba69703d66885
|
|
| BLAKE2b-256 |
ae641b1584750d0d32c971c651b6df0d69a378355190f39b8cffdc66f08e1aa4
|
File details
Details for the file symb_anafis-0.8.0-cp39-cp39-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp39-cp39-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4dc3b1a15e0ce980da271a6ce18d2d1e1da3de30d10cdbe3552a1451a3529053
|
|
| MD5 |
9d87797e776418b6de5340142ed0490c
|
|
| BLAKE2b-256 |
8eb89abad4e2ae5eae7557743d85cffb3451dbb9a3c7a619a81b28fdbfd3f630
|
File details
Details for the file symb_anafis-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31cd08e891302687825d4b51604794ac8b0aca8a67428a9974fde0eaf73181d5
|
|
| MD5 |
1170b066556c04977230098e1df6e8aa
|
|
| BLAKE2b-256 |
7f4ab5c7794c391cd8249d2cfde7b9053451646bee1d2954c3ec57b79516d075
|
File details
Details for the file symb_anafis-0.8.0-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee3ed2c29794fe217ab51d4e1adeb5d566efa68833b6f588b3c762dd84f11f17
|
|
| MD5 |
1f54763cf2d53e93e545dc3c960a5eeb
|
|
| BLAKE2b-256 |
b9802b45f27c36365b06f6dd5730df42f9125314748574b14bd3a88bbf38aed3
|
File details
Details for the file symb_anafis-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: symb_anafis-0.8.0-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25faea03408b1954f9977f6d10d350f49f7975a83955c2f9a02639c524e8f460
|
|
| MD5 |
ec65a24ceffe8d19c6342cb0df5bcd90
|
|
| BLAKE2b-256 |
5285fe1693d48b49095a934c9370b448e314db4d9f9876e2b5aaed5866e7f8f9
|