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.2.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.2-cp313-cp313-win_amd64.whl (9.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pysymregg-1.0.2-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.2-cp313-cp313-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pysymregg-1.0.2-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.2-cp312-cp312-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pysymregg-1.0.2-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.2-cp311-cp311-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pysymregg-1.0.2-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.2-cp310-cp310-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

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

Uploaded CPython 3.10macOS 14.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

pysymregg-1.0.2-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.2-cp39-cp39-macosx_14_0_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.9macOS 14.0+ x86-64

pysymregg-1.0.2-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.2.tar.gz.

File metadata

  • Download URL: pysymregg-1.0.2.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.2.tar.gz
Algorithm Hash digest
SHA256 0cddc411698bfcc4b4079244ab94247346ce655f97d27e4a8de36124981646e5
MD5 c8a92e3b20b7f3ab7f96d9aff40640ad
BLAKE2b-256 44f587605c333884556f6a77ec38260e0cdbf604636a77895cccc5bf5f3533e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2.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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 35536c2eca84d5f4bc59106c479537134d9bbf46f5fd16d234f744e5880ad5ee
MD5 5f119c15f1646d05c44ab53ed34cf4ca
BLAKE2b-256 1bfeda8afb529257d2c05ec14de3e06d0222560c0b687088f00fb499fbeeff66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbb4fbd0f50f6a7e8da75fbe1762ceda14556aafb782b0e733089fc09e5b7d75
MD5 c22aef28342c1e3a7d41a4bd38622868
BLAKE2b-256 89e223cb134f7146dbcb12195f99cb90a0208d4b12eb0f6c922bcbeb4b559ed8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7530f81ba5b7ae9b88841fa0746bd54312a52960e81dd01b7195fc079375201d
MD5 715c14a4c0d323a77d2e1a3b4a9bc0ea
BLAKE2b-256 dcd616f18027c223818b9a366bb609cbdaf031515574a090dfad262d92a4a57c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 d55f3186059e641a425b6848c9dca059e5d457dbaaac6a2035030cec32a1af65
MD5 537b19277dca6f1e8d55cb023ba65ba7
BLAKE2b-256 f0db6e974c24a18b6b1b5a92e0619762a91f74e4d70169c6a16cefbbece44133

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 22ef6d3236e807497bc888693d2f2adcc49d0ced6f4e813fab3d995e0118265a
MD5 45b22c69ef608b2f5ffee30ddc8f0acb
BLAKE2b-256 7cf7a4d1c2ff0972d17a2d8892aa4a077cfec894997e5ef730fb4eab1563625a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eeb2a3209b0ddbe68858a24f526d9df5d2dff35b61d168b7654f3691c5cc8b4a
MD5 b23c1a9ad415a9e818a500b3cbec725f
BLAKE2b-256 64efe3ae2abb0cd3121104cdbea8bb652b8b949a1f6f7120e35d4ef27c9faeeb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 76048f5c8791a78e3ef6cedf08ce29b1bb9d1e0523b41937bbbd194d03287fd1
MD5 238c50fcd2c0a0a3ff5b7aadefeb4f32
BLAKE2b-256 688afef892e2c5771ae79f1d2addaf5641fd37ebf75d44b686dfafef074ad690

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 911e3a5cb82e047ff04f6457b9de876cc71791f51547a298930a9418aaddc464
MD5 7d584adb7483465bcc4ed71f456483ae
BLAKE2b-256 1dd6c92e035deb36910d420e48166f407f9edece3794ed94246c6948867ecd39

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 7a3ef879506074cf5b2fc55ea03c5f0d41a2195674ad67ec3fae99ee69110ef8
MD5 fd2ffec46594118a6edf20aea96e3b54
BLAKE2b-256 7d4baad93ebe3c3cfb52996c01a7090924fd1c9c8d9e1d29a1b7fe60f300a992

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f010f1ba46abe9d67170e4b48c4033507907a2331e38c8c393abe57889f722c8
MD5 c5a7ddd0f57fd66fd53fb75b8e6f7e86
BLAKE2b-256 407b1ca4670b1473e42b9abab1c19cb8504db968e01a66f1f1cf28ebda76ad3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f5019b57f34bf3e227e55809b755b0dabe1e521ae1952edd1aec918d4a5fccd1
MD5 3ff6d66f0f9c1fe98926bcbc6fa232ba
BLAKE2b-256 9823c52fa4589b269cb44e61f17ddd289e955b2e61849bec8aed52e146f4f535

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4504a4b1e704bf00f3905bab42568d5e4d4533a7d4b84ae7b7a52cabef73872e
MD5 7418692527e49cda169254dd3d31a742
BLAKE2b-256 39cce87838b7df0a76fff19a804d6bcea58cd85fd1b03f1c56224a7b1ca2b850

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b074952203844c9d2249376cba6a0b59f1aca2762f1f9147285f4d639ccc6d10
MD5 ded0f53d4d1f962f8f4181876d5ac426
BLAKE2b-256 fd8099c0eb36a2698f129b89be86d0e0e49cfde9d35297cd5aeb158e88010004

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 4d0cea170623e554073f1aec9f37c5c386ddc0e696ebbe6941e4dabfc9062c84
MD5 5f82a0db1b76ae8bce21998cd7575720
BLAKE2b-256 68fb059f8139de2d860576bedd19d38d478eb73ae1cb74e15083fbdeade1dc00

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 73bd1dae004500a9ec40561d1e76406ab3a8e57aab5a0feb4c2a874e8b2c6238
MD5 414472a4f22a181ce75f06423f2c17cf
BLAKE2b-256 9c5ffbef9217f0b863be7441c4b7f16b6d2536ea077b65ac335b9afdea7eda6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5f88f26cf7db1de43dd66b793ca5b940a471bd5ab6d7173926321802233f380c
MD5 b3de604720dcac633bf89d9c36ee8777
BLAKE2b-256 8e41e60abc63b09f53b1bf2d54a2a78fd99cd86b697964c6b61de1711a629e32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b00074a470ee588e798dbd4d788a593508ebc4373f810bcce66c872325ba87d
MD5 0ad9ce40f453524a4c5dd36bcacbbfe8
BLAKE2b-256 5b9911426e24436db59670f83156f6c3e977a5e07aa0bee65b10e77aa1043c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e0818efb01db8432f47078b4ca854be037c0bb9bcce598f0a5e135cfdb1ef7f
MD5 f645142c964da7e687b1dfc6b7c730dd
BLAKE2b-256 553328dbaa792af1805ad21a5d770a54d532498f28897dd0712abefc0f2c860f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 9baeb094ff778fdeab77608e31f2387b026f160b19f1d32019ec20e182159393
MD5 d860a393cba625724fe0f3accb58bcc3
BLAKE2b-256 e698be5e1420019b20d5ad51a87f144ec25060f114ab5718bc72e7bea311c6e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 57158390a5c0bd680221651be65235d81aa2930aa342523eca993665cf60d130
MD5 08ea9f51beb91d4e0d7dc186f6dedf05
BLAKE2b-256 0bc0481c1a27cd1c1148788bbc05ed37abcf249b11b50eeef9685915bbc5e20d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pysymregg-1.0.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8931f6fbb5ded9f456e1491bbdbd6c45db6281523830b76023448102b9adaa2f
MD5 1787b4e910a0a113922077197dee8f35
BLAKE2b-256 bebb003655d6972883c4c299841ec1d0d7129cf1f8aacb10b1579b3339322d0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be6bcb03b3c1b71567726f5bcd543f04da81294e0e5eb69f997e7d8914a36f21
MD5 a3acdf217eaad8ee3d5cb0a25e4b1de9
BLAKE2b-256 93032ef0a2b44ee216dcf0699bd006292cb57c5059c55fe0618dfd5053a61cc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dda4cb6e24c3f658a19c7c0d7054477445c0c4243df90e9a1c8690fc21a39f12
MD5 cc3d11e9b25968d7c4763432fcee7630
BLAKE2b-256 d02777a77dd5d932346603b8b80d3e8aa98b887c8ec8bc99071808bb5d8a2060

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp39-cp39-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp39-cp39-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 ce5e699cf37eada545bc8f01086eca3517d72b55ad51dc9d260391536590e9cd
MD5 f6117ad79332e107347f102b0df30fbd
BLAKE2b-256 08217e1b940795642d314ab1d7935dc4fd918cc2b2488d5b13b947fde52b24a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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.2-cp39-cp39-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for pysymregg-1.0.2-cp39-cp39-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c0ea23c107a7bd677494857fdbc37748ba4aac5a8ff432ac59296d8fe231e512
MD5 7ffe837804eff9faca456bf488181a5d
BLAKE2b-256 32b04a9ef1fbd260d80e9f79fb217fe14a5c92cb5fc3c0a591bf3d3849600c35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pysymregg-1.0.2-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