Skip to main content

Python SPACE: sparse partial correlation estimation

Project description

space-graph

PyPI version Python 3.10+ Build wheels License: GPL-3.0-or-later

space-graph estimates sparse partial-correlation networks from tabular data.

Given a data matrix, it finds pairs of variables that remain related after accounting for all other variables. This is useful for network discovery in high-dimensional settings such as genomics, where the number of variables may be large relative to the number of samples.

The package implements SPACE (Sparse Partial Correlation Estimation) from Peng et al. (2009): Sparse Partial Correlation Estimation for High-Dimensional Data.

Install

pip install space-graph

Quick Start

import numpy as np
from space_graph import SPACE

X = np.random.randn(100, 20)

model = SPACE(alpha=0.5).fit(X)

partial_correlations = model.partial_correlation_

partial_correlations is a square matrix. Entry (i, j) is the estimated partial correlation between variables i and j. Values close to zero indicate no direct relationship after conditioning on the other variables.

Choosing alpha

alpha controls sparsity:

  • larger alpha -> fewer edges
  • smaller alpha -> more edges

You can choose alpha from a grid using BIC or AIC:

alphas = np.geomspace(0.01, 1.0, 20)

template = SPACE(max_outer_iter=3)
best_alpha = template.select_alpha(X, alphas, criterion='bic')

model = SPACE(alpha=best_alpha, max_outer_iter=3).fit(X)

BIC is the default and is usually more conservative. AIC often selects a denser network:

best_alpha = template.select_alpha(X, alphas, criterion='aic')

To inspect the scores:

best_alpha, scores = template.select_alpha(
    X,
    alphas,
    criterion='bic',
    return_curve=True,
)

Important Options

SPACE(
    alpha=0.5,
    gamma=1.0,
    weight='uniform',
    standardize=True,
    backend='auto',
)
  • alpha: regularization strength. Higher values produce sparser networks.
  • gamma: mix between L1 sparsity and L2 shrinkage. The default 1.0 is pure L1.
  • weight: node weighting scheme. Use 'uniform' for most cases.
  • standardize: centers and scales columns before fitting.
  • backend: 'auto' uses the Rust backend when available and falls back to NumPy.

Output

After fitting:

model.partial_correlation_
model.sig_
model.weight_

The main result is partial_correlation_, a symmetric matrix with unit diagonal.

Citation

If you use this package, please cite:

Peng, J., Wang, P., Zhou, N., & Zhu, J. (2009). Sparse partial correlation estimation by joint sparse regression models. Journal of the American Statistical Association, 104(486), 735-746.

License

GPL-3.0-or-later.

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

space_graph-2.0.2.tar.gz (23.9 kB view details)

Uploaded Source

Built Distributions

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

space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (337.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp314-cp314-win_amd64.whl (187.1 kB view details)

Uploaded CPython 3.14Windows x86-64

space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl (282.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl (297.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp313-cp313-win_amd64.whl (186.9 kB view details)

Uploaded CPython 3.13Windows x86-64

space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl (282.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl (297.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

space_graph-2.0.2-cp312-cp312-win_amd64.whl (186.8 kB view details)

Uploaded CPython 3.12Windows x86-64

space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (334.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl (282.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl (296.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

space_graph-2.0.2-cp311-cp311-win_amd64.whl (188.8 kB view details)

Uploaded CPython 3.11Windows x86-64

space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl (283.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl (297.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

space_graph-2.0.2-cp310-cp310-win_amd64.whl (188.7 kB view details)

Uploaded CPython 3.10Windows x86-64

space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl (298.5 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file space_graph-2.0.2.tar.gz.

File metadata

  • Download URL: space_graph-2.0.2.tar.gz
  • Upload date:
  • Size: 23.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for space_graph-2.0.2.tar.gz
Algorithm Hash digest
SHA256 9a40b6a3e746ad95d1e85886f6db3dfb5b8f7117fe422c146a0015055c345439
MD5 6b424340c403250b3820488d166eba6f
BLAKE2b-256 c18082391af984a9f6deef70fc3252f1ff1ef4baa91728368a9520c91b3b585e

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2.tar.gz:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 838a5240cbda434eb4010c583dcfaf2994b176009e2d2a468948643fc1e00dd1
MD5 8d4236eb2a25cff02847e6800ba69ccc
BLAKE2b-256 e3ec2ea21f4bab0c6b00357467a3a320c0d194bd563b04bf54198d483b92e9a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd253a5176284e841f702bdb790839d871772870bf0cc2d9ad08dcc2ec1ce2f7
MD5 8ce168ffd3367052c3dba511584d7939
BLAKE2b-256 87cdaa9a60a7d08c19f4a8c5cc121a6414593dbfd7b2581b9c371d8b2188d698

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d878ff72cba9d40321ce7de893bc3e7afbcd818c87820a686df9a21997457de4
MD5 8e5caa3fcdc8e866e7242681e3001d94
BLAKE2b-256 dc5a524d5232c8d8712242ff6198f47187873bbd8ea77661887c90dc5067be5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ab2b220ff8edbea5d48d487e6c47c0aef4c27ea1419e3ed7eca2f9268e2eb16
MD5 bc20d4926f7649918eae64e0537ccda2
BLAKE2b-256 ad27113c06321ed43b3e89fbff10d78b6bbfc4d4338198f882267b0f418f8eb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: space_graph-2.0.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 187.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for space_graph-2.0.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cc129dcc4bf9e88daa281d94922c05cc4dd2c2eeb5743857aac20c7cc44c019a
MD5 2305ded90ebd5c286f3c1af3b33b2e46
BLAKE2b-256 a56df8882ecc5f855c431e3469591a06394cc8ec202ea3252faa970186fcfe3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp314-cp314-win_amd64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d25b83eec770b096bd9a10ea42bc46ae64a0c732038295f009ad44ed7b2d60d
MD5 5498aad827c0951c069e1331f62e05e3
BLAKE2b-256 de038124ddb78c50fd9ca1e31fff0cb0cbaff33d824a844ff9f4bc276b29c66c

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c60bfcb6251560dc23f994c93882f598295d3421b3d0c989a078d02f33c789d
MD5 c99187bf37be22f32000a236ca1b3471
BLAKE2b-256 a065072c07f5d061effbc784b000addf21455416c6ec1ffc0fc51f80c5d945d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1b6788f36965fa9b21cecce294ae486267bb769150f6cc43dd8a652b9c7d665
MD5 a0eb459f0f35c064aabd6100cc54be61
BLAKE2b-256 a06a13ad06317c8f95f61b584528d161255c4ea394d81a69a3f3d5c7f6984a0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 66be9e8ccf141688cf140e774e343f45c05bf11da8646638b3d40c7a499e3f40
MD5 aa3e864551116d21a2025fb543997bfb
BLAKE2b-256 b8765414eeaf3808ff25096a32f083bf4ba84a88c4addc76b7597697a004b3ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff4b0146ea943e0cafc8dd27e53ed5480d7cb0ebb068d735c8aa7c687bd43a5d
MD5 fcc59587fdfe88ceb6a7a68db0dfc34c
BLAKE2b-256 12c4e253d0df578a27501a81efb5e8f88b9f56820015cabee187abe95a5763a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: space_graph-2.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 186.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for space_graph-2.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e09c3af2a1312bbcdaef84eb20097c3b5355428ec77937b0758841b9c5c1b72
MD5 41e853374e5cdc8d858df7ff1444392c
BLAKE2b-256 3f8c29b520356f09b5e6c80a2886e65aa3e0c54e84f8088c2b0c3f823ec5ddd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cc9c9ad7b87b63b983892b92bb435f712a3f2cb944d035a658c0d21d10d3550
MD5 a279964efb19b5d8f37f321b314e310e
BLAKE2b-256 337d254400518a5321078698b8392641dcfe7852764ceea9516d9e8b195faf5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d382c21ce8cc854378d877c28ab19094af19b464aadc6ef9964ba31fea3289a6
MD5 f69481e5c39fe88c020bb97bebc17a35
BLAKE2b-256 941acb543e7b2d75b94088bed4f6a90269afb86cf16a922bd8c589996dc2b5e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a8e0fc51ff73f27f953090132fab443bcfb55eda8769a9596ca93a1b0f87df8
MD5 459ffb0ad667e5ced23d0ea96a044371
BLAKE2b-256 d641dcb7ee59db4735c4c3c813e5f581fc1e9079f492f1847d09ef8ae9e5ec02

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46977ef2b36d43e906c4101b4f4ab3218559785bc8a8c5f1427b9e0c5ff081be
MD5 064a4b8de956ec79dc7c1061f4f7142a
BLAKE2b-256 3914f8faa90995d48cdb2a689417cba4d703b183f2ab843cb0ecd99228cf6780

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: space_graph-2.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 186.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for space_graph-2.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f422563d44b37f77af0628aeb95065c06375222c00756b4b0eea5b38f09815ea
MD5 062cfd2c0c20f0fad3ebcb9e4f26ec46
BLAKE2b-256 9edb4451dcb0d8ba827c78a52bc80548fa273217b18887376a5f83e70bbe4b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc0ead52528fe58eee8a868240a7697227b8b272db45a33023311c7dbed58e3e
MD5 cd6e9970aaa69b191d6aa64275aea02c
BLAKE2b-256 e09797bc957f360001d4bc6873535155baa6efd34e87de9d642d5c924582070b

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 274df6d14ee5f52cd28a8f5ae42e630d0e40e253e7dc6700cda49be1d615269e
MD5 8e965588896a558d05f465167f848fa7
BLAKE2b-256 6f13ec7517aa92d03335e1b492222c0e73d51b60e966a7b3befaff26df70e7ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e18bb07bddfd24fc7967cefd6e79c82b8d1cfd86907a29798345f0fc1d2b34f
MD5 40d3947a957660f2e74a40bd88d94f61
BLAKE2b-256 3c6414dd8899546a47c092e2e5f7746bd73a6c238c0b6921f6f85cd3ce5c7f58

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a774990ca6083b01cccf8b9465ce9d977ab85bd753fb8ddfc72577d1517e04a
MD5 5d142bfd71575c8b2cb503759d749215
BLAKE2b-256 5480cdb884be5f322e1742f5864bd8e73eed8188f41e1333bd985785ea6e6006

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: space_graph-2.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 188.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for space_graph-2.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4f61c24eba1dc2608a4d7f5e8ea0d84ca5314ee82c72dfe54d8d46a098e4ec57
MD5 0c62b6e7f08f116c608742dbf863180f
BLAKE2b-256 86780c595ea457e2875b6a6637fc4d5aa6c4eb95a151f9d7879d516b8d0dd3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97f0bca222ff3b95f61fbaed5ccfb6c2ff28a772a7ec68c640ce487d5b0ed3ea
MD5 ed8ca9006c76f421ad206cadda283df6
BLAKE2b-256 d83ff71d46bb6a31e070a5f60379a8f2e80c78c0defb6d8e957be6294c9ef06b

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17610898c66b3c6b78999cc391ce832ff705901f2f34c9d1acd6368bf848ef0c
MD5 a6b7e24821db4bf34ced0ae35980c113
BLAKE2b-256 43c088e23ef2e56b050d46c759971a7dbd93fb78232124b70a97b977937ebf3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1194acd72d232c4faa1f46dda1b45e0b8fca37f75b94346615e00f6306427df1
MD5 d7116f3ef67a84322c41591110db3021
BLAKE2b-256 e11e3404b3e0039691c5d52afce5364f1bcb58833a0c2e587d0518a1f351ee74

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 15a9130109f21c68d61c67ffe1fbe341161fe5089c7550252d12b89e52ad6fbf
MD5 bb5f8be9d39d1b3851f255a0584f5ad3
BLAKE2b-256 c9421070e90dde656fefa96a795a0f277361e9d220acfdd8d171bbefbcce2213

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: space_graph-2.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 188.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for space_graph-2.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e2250782004bc29ca76fad999ada392d3a924b68781674927221e7dd921ecdb1
MD5 7900dba3c7f40544434c371bd2dfe6b2
BLAKE2b-256 6e7f0f3e4f77ad802d7184685c8806433c2b989ee8a9ba1e01d68b644be41ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76ee7f2e7e976ebcdc63a54e5eb6d63e965a2a80467d3fbb74d4c63dd4289b29
MD5 dc6ed6dee9be8e9c40b56463dd2f1d2b
BLAKE2b-256 87c0ac26ff2ea33b80429c6cc27d605f9c4bb66628849b85b31cb658a766f9c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18f152e2d4614dff6cdfcd9868803d9fa94953d76e2c9f39a6ade5b2ced0eb09
MD5 d9e5b6eea9f9140eb4354db6c9c4860d
BLAKE2b-256 60e6f54d2b013aa05cc813cc83eaafd14457355a8da0977242871a08ac801f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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

File details

Details for the file space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7e893dc67a32685cfcf10d52d872c4d6ff619ad476c805f5574d092f5b5cef5
MD5 03e15d335ab6a133e05eb8d1a46ceafd
BLAKE2b-256 edb69e00cd6fc14d8880a11816bfe954d98fd2fbc234751b865a7a57efde3a75

See more details on using hashes here.

Provenance

The following attestation bundles were made for space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: wheels.yml on shahrozeabbas/space-graph

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