Skip to main content

Python Wheels for SymRegg algorithm.

Project description

PySymRegg - Python bindings for SymRegg

A Python package for symbolic regression using e-graphs. PySymRegg is built on top of the SymRegg algorithm and provides a scikit-learn compatible API for symbolic regression tasks.

More info here

Installation

pip install pysymregg

Features

  • Scikit-learn compatible API with fit() and predict() methods
  • Support for multiple optimization algorithms
  • Flexible function set selection
  • Various loss functions for different problem types
  • Parameter optimization with multiple restarts
  • Ability to save and load e-graphs

Usage

Basic Example

from pysymregg import PySymRegg
import numpy as np

# Create sample data
X = np.linspace(-10, 10, 100).reshape(-1, 1)
y = 2 * X.ravel() + 3 * np.sin(X.ravel()) + np.random.normal(0, 1, 100)

# Create and fit the model
model = PySymRegg(gen=100, nonterminals="add,sub,mul,div,sin,cos")
model.fit(X, y)

# Make predictions
y_pred = model.predict(X)

# Examine the results
print(model.results)

Integration with scikit-learn

from sklearn.model_selection import train_test_split
from sklearn.metrics import mean_squared_error
from pysymregg import PySymRegg

# Split data
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2)

# Create and fit model
model = PySymRegg(gen=150, optIter=100)
model.fit(X_train, y_train)

# Evaluate on test set
y_pred = model.predict(X_test)
mse = mean_squared_error(y_test, y_pred)
print(f"Test MSE: {mse}")

Parameters

Parameter Type Default Description
gen int 100 Number of generations to run
alg str "BestFirst" Algorithm type: "BestFirst" or "OnlyRandom"
maxSize int 15 Maximum allowed size for expressions (max 100)
nonterminals str "add,sub,mul,div" Comma-separated list of allowed functions
loss str "MSE" Loss function: "MSE", "Gaussian", "Bernoulli", or "Poisson"
optIter int 50 Number of iterations for parameter optimization
optRepeat int 2 Number of restarts for parameter optimization
nParams int -1 Maximum number of parameters (-1 for unlimited)
split int 1 Data splitting ratio for validation
dumpTo str "" Filename to save the final e-graph
loadFrom str "" Filename to load an e-graph to resume search

Available Functions

The following functions can be used in the nonterminals parameter:

  • Basic operations: add, sub, mul, div
  • Powers: power, powerabs, square, cube
  • Roots: sqrt, sqrtabs, cbrt
  • Trigonometric: sin, cos, tan, asin, acos, atan
  • Hyperbolic: sinh, cosh, tanh, asinh, acosh, atanh
  • Others: abs, log, logabs, exp, recip, aq (analytical quotient)

Methods

  • fit(X, y): Fits the symbolic regression model
  • predict(X): Generates predictions using the best model
  • score(X, y): Computes R² score of the best model
  • evaluate_best_model(X): Evaluates the best model on the given data
  • evaluate_model(ix, X): Evaluates the model with index ix on the given data

Results

After fitting, the results attribute contains a pandas DataFrame with details about the discovered models, including:

  • Mathematical expressions
  • Model complexity
  • Parameter values
  • Error metrics
  • NumPy-compatible expressions

License

[LICENSE]

Citation

If you use PySymRegg in your research, please cite:

TBD

Acknowledgments

The bindings were created following the amazing example written by wenkokke

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

pysymregg-1.0.1.tar.gz (48.6 kB view details)

Uploaded Source

Built Distributions

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

pysymregg-1.0.1-cp313-cp313-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pysymregg-1.0.1-cp313-cp313-manylinux_2_28_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pysymregg-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pysymregg-1.0.1-cp313-cp313-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

pysymregg-1.0.1-cp313-cp313-macosx_14_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

pysymregg-1.0.1-cp312-cp312-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pysymregg-1.0.1-cp312-cp312-manylinux_2_28_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pysymregg-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pysymregg-1.0.1-cp312-cp312-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

pysymregg-1.0.1-cp312-cp312-macosx_14_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

pysymregg-1.0.1-cp311-cp311-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pysymregg-1.0.1-cp311-cp311-manylinux_2_28_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pysymregg-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pysymregg-1.0.1-cp311-cp311-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

pysymregg-1.0.1-cp311-cp311-macosx_14_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

pysymregg-1.0.1-cp310-cp310-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pysymregg-1.0.1-cp310-cp310-manylinux_2_28_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pysymregg-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pysymregg-1.0.1-cp310-cp310-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

pysymregg-1.0.1-cp310-cp310-macosx_14_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

pysymregg-1.0.1-cp39-cp39-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pysymregg-1.0.1-cp39-cp39-manylinux_2_28_aarch64.whl (27.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysymregg-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (24.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pysymregg-1.0.1-cp39-cp39-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

pysymregg-1.0.1-cp39-cp39-macosx_14_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ ARM64

File details

Details for the file pysymregg-1.0.1.tar.gz.

File metadata

  • Download URL: pysymregg-1.0.1.tar.gz
  • Upload date:
  • Size: 48.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysymregg-1.0.1.tar.gz
Algorithm Hash digest
SHA256 562acc21b70fe051de72f347c25e3ef6f59ceb5f34a029b2051b3a64d033404a
MD5 63c9aca928a846d8228ac82359dc4e9f
BLAKE2b-256 3ecc53618a2586b951c5cb02ef97344e5aa22b81da93fd74396d6b9920e6a5f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1.tar.gz:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysymregg-1.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ad15973fc0cd44c6a7839111fa6b72d3060dbd762a2a75fd9bda2806fb5c811f
MD5 39e3ae50ff24b7ceff9510546b928cdd
BLAKE2b-256 d69a06c431ee29dc7a96184fa12d6cf80b23859649dcb45da52931e49a4fbd84

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa75e06921b4f18eb87ec58b08f462e92a0050981e5ce6449c07bcc232fc92ac
MD5 fe5b03a3ab478726efa2e04bc20a92e1
BLAKE2b-256 6c97205845fc568f08e810d480698cb833b94d43ae307c7397aa0b645b98a94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0214465bced887c39977b4fe0fb51f718cd34957d5abbca1a367bebb024fb61
MD5 7b46872a06e6542761de15b46840fda7
BLAKE2b-256 78bb8ed3fd18c27bb67ee3b484ea6bf3c798304f8d62c32290c0918f59973d6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 2453db02692d038c416fa8e6798b0b994acd0f5db7223dd22702a18b8ebb8d9d
MD5 082e0e76ca64667061c113a482eca5d2
BLAKE2b-256 e69040d9d6476fc8cd6df082373e2ea44901aa42e5f1a2a9efe2df2568ec7ecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp313-cp313-macosx_14_0_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 de1756e559f6d4642639981d044650d2599eb4286b820955130d2faa9647492e
MD5 8444cc05d1698e267aaa9a05f4eacca2
BLAKE2b-256 5f5487e4845e37718fdb3f4a8849ec61582d40ed8672bc923a74bd529eaa6b9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp313-cp313-macosx_14_0_arm64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysymregg-1.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d3fa48af5bae9b0118566c04aa46bcf8a324650f8a2b8bf1cc5c39b4270a9cd5
MD5 9e066aaa4298ba64e96de2b2cb15d61c
BLAKE2b-256 5f97113a7d72ff2cc10b1511b9c0517059a86ff2fd5f257cab13c164301856b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1295d27fb2528b02af3a6ce47fc0077806b59f7ba7817da413f5e3c6a5ab8050
MD5 c508f06757bd9db041d55438e698094b
BLAKE2b-256 8ad0d8c7640730f48b0a6f2f13be0ffba6264a02cfcca050cb09e4ca27634ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66e1ef9717fa5d1ce53d38103aff7a6d48c747df97f0699ac3a3c4452f277b24
MD5 d5cd2ac4ee895754797b098596eb5f39
BLAKE2b-256 6cc2a4f9983ac21feee2fe400c3b1e0522fea1db1b8229527e098e0a0cc88322

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 a8b823b7668e253edd4b9f12d7d81c92d0f76a4162ff4c6511fb2416321c223a
MD5 3c74b1581bc6dc98450db2eea127cee0
BLAKE2b-256 876c54d83b83ae8dfbcc9947986b28f13bd6df724f96895df4fb6ef07fef1f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp312-cp312-macosx_14_0_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 64086061692eb535ea962f41e8ed361daf886eef1092010b2220415b61646bd6
MD5 f2b20dc4b88282b1504f2a41348b9cfb
BLAKE2b-256 3aea6224d5dc1e5dc4fcc24aec587bd04908e9cd1fb0b412a3ea79643f3f5f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp312-cp312-macosx_14_0_arm64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysymregg-1.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62679346154d1e6789e93ce97398b81f30ab8cd89583b9eff845cf2be329d352
MD5 cbf3f4611a9b2ba48c0cefcb59abf68e
BLAKE2b-256 9a4d02459a0e75e32900b0e343349564a9d5ece36d36bb2269c656b960fda2e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 44856d52aba9c7331bca5125ec15c8616083d86661302e2dc55e53391de4b0e4
MD5 5f1858d043e3e6de43a95795084f3dd0
BLAKE2b-256 e1f5ce77533e08cbd8f0f221512dd0ca012218b9cbe0a19c3352f95df475856b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b378ded382d0bc77a273e371de0118061fe3d0a7e485b28c9f57fe722253560
MD5 cb92e141d5b1e49a60be766bf183eefc
BLAKE2b-256 91ec77135e428b797c3be106535709951851e30491e2d20338384f3e7416b2f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 9fbe48ead7deb540c1ffb3f788043339c1be81c76f70532728444248d8c84dbc
MD5 ef9f7425a2ad0f25388be9511197e2e4
BLAKE2b-256 5fe885bb9eba1edcbaa7f869990c0172ef5d8d4e57b2ccc2a815b9a820deaf46

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp311-cp311-macosx_14_0_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6f34fa20fa59005098cd4fde2ca3db3806a16eb3929ff246b589adaa8bab1676
MD5 1dede2ff182070ebfe1ffb049d0a9167
BLAKE2b-256 155aca7e0d20a4f17c8ffa1de299126759145a8899e59191b5aec1325230fb15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp311-cp311-macosx_14_0_arm64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysymregg-1.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 415ce9776ccb124dd4da247483b779697a5797d205dfd67c309df1dc914c9732
MD5 af901e924455890d1c2eb378c6e6386d
BLAKE2b-256 33561a9a606e2e248721585ad5eb68e50b7878352bcbe5d066d79ca26062ddbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 012981830e3fdfed5c5c580d7fce5ec861c4d9815dfb4a395c0066c1ea1553d9
MD5 a2779ab6a1df91992aff846732c9b1fd
BLAKE2b-256 f1cdbf506a40c4f70124beb219a6901a90472ca90f627d4e25015fb4fc4c99dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2a0d20361fcb738670cfd7db397cfc9ee1d0aaf18f360e55a1b5053bf3a819c
MD5 fde9a012f44af48e4e92b5c0d1a0f833
BLAKE2b-256 4679dbe2d1202f27936a30d68bba0f2b1a12b6c9f3ff01af6fc3dbf516b8d9f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 813b3e0cfe18cde5add71d40421115452cbcd3bde89fa0dbf5a91952047966cf
MD5 034a7d7e08ab2d67ec042101fc71bcbb
BLAKE2b-256 89d42a2ecc41f712090318f8eca384b558de2a5350af3ea0696a4b34204be400

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp310-cp310-macosx_14_0_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6fcb656b681b12f3199e605412bd8749fe553c3274b63f73c0c9024478d28e34
MD5 faf487228cbc20fb4c8569b00a66aba9
BLAKE2b-256 752eed28bf4fb5149f2b16a640860c591f83618e6022fe6e569e68c442ba9399

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp310-cp310-macosx_14_0_arm64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pysymregg-1.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e846ce8ed0bf7c21b1d3bc600e877289e56f2fb3f4f78e77a3bb4f8763900f7
MD5 a6237d5d8f997497bfc27df50c507749
BLAKE2b-256 89fb37aa48ab7442ef49baa105d86f6285d6fdf44f0438c0454400060d06d7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp39-cp39-win_amd64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73b765a5df72dd0ee5b4e78215b1be7535a4c2086ae7ebd8671e4119f8bb4aae
MD5 c54de1552b970ce300a062ec7efd6df7
BLAKE2b-256 786b85d2f77fea2bccf59f47c42bed9869a4e1a8da975c94de9a605f2485fe72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2094f88d193cf4d9f84d254283a8c3dbcd78e2c2b8e8c31ce8aab8e8ad83dde8
MD5 08389299413ba014711156a851c22923
BLAKE2b-256 d3d6125ec48b30b7404fc50837a6f7ef01278ffd217fb1868e0d033ebf6c8707

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 74aa41d6c878058fe69bb11ba24eee866ceea237b1de0d058a7cfa3e943e45a7
MD5 93a1403f10aeebcd21725f97945e43ee
BLAKE2b-256 111092e205a28909a83a932e72bef4390478ac11f5ca0dbb7502f1ec18156509

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp39-cp39-macosx_14_0_x86_64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pysymregg-1.0.1-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.1-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 6ff6b9c88015755e3e40930f241ab15e8f01e3e1ed069306ff84e206df73f11c
MD5 00670a5182c7799d4fad584afb474daa
BLAKE2b-256 9572fba00ea5a6c98d7272befb0cf45f75055df8f8ab5d5e4ef46b9ee8c9956c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.1-cp39-cp39-macosx_14_0_arm64.whl:

Publisher: release.yml on folivetti/pysymregg

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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