Skip to main content

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.

Release files for space-graph 2.0.2

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

Source distribution (sdist)

Source distribution for space-graph 2.0.2
File Size Uploaded
space_graph-2.0.2.tar.gz 23.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for space-graph 2.0.2
File
space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
space_graph-2.0.2-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
space_graph-2.0.2-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
space_graph-2.0.2-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details

Total release size: 8.5 MB

Release files / space_graph-2.0.2.tar.gz

Download URL space_graph-2.0.2.tar.gz
Size 23.9 kB
Tags Source
SHA-256 checksum
How to use checksums
9a40b6a3e746ad95d1e85886f6db3dfb5b8f7117fe422c146a0015055c345439
BLAKE2b-256 checksum
How to use checksums
c18082391af984a9f6deef70fc3252f1ff1ef4baa91728368a9520c91b3b585e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 337.4 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
838a5240cbda434eb4010c583dcfaf2994b176009e2d2a468948643fc1e00dd1
BLAKE2b-256 checksum
How to use checksums
e3ec2ea21f4bab0c6b00357467a3a320c0d194bd563b04bf54198d483b92e9a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 320.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
dd253a5176284e841f702bdb790839d871772870bf0cc2d9ad08dcc2ec1ce2f7
BLAKE2b-256 checksum
How to use checksums
87cdaa9a60a7d08c19f4a8c5cc121a6414593dbfd7b2581b9c371d8b2188d698
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 334.0 kB
Tags CPython 3.15 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
d878ff72cba9d40321ce7de893bc3e7afbcd818c87820a686df9a21997457de4
BLAKE2b-256 checksum
How to use checksums
dc5a524d5232c8d8712242ff6198f47187873bbd8ea77661887c90dc5067be5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 314.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4ab2b220ff8edbea5d48d487e6c47c0aef4c27ea1419e3ed7eca2f9268e2eb16
BLAKE2b-256 checksum
How to use checksums
ad27113c06321ed43b3e89fbff10d78b6bbfc4d4338198f882267b0f418f8eb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp314-cp314-win_amd64.whl

Download URL space_graph-2.0.2-cp314-cp314-win_amd64.whl
Size 187.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
cc129dcc4bf9e88daa281d94922c05cc4dd2c2eeb5743857aac20c7cc44c019a
BLAKE2b-256 checksum
How to use checksums
a56df8882ecc5f855c431e3469591a06394cc8ec202ea3252faa970186fcfe3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 334.0 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3d25b83eec770b096bd9a10ea42bc46ae64a0c732038295f009ad44ed7b2d60d
BLAKE2b-256 checksum
How to use checksums
de038124ddb78c50fd9ca1e31fff0cb0cbaff33d824a844ff9f4bc276b29c66c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 316.5 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
1c60bfcb6251560dc23f994c93882f598295d3421b3d0c989a078d02f33c789d
BLAKE2b-256 checksum
How to use checksums
a065072c07f5d061effbc784b000addf21455416c6ec1ffc0fc51f80c5d945d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl

Download URL space_graph-2.0.2-cp314-cp314-macosx_11_0_arm64.whl
Size 282.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b1b6788f36965fa9b21cecce294ae486267bb769150f6cc43dd8a652b9c7d665
BLAKE2b-256 checksum
How to use checksums
a06a13ad06317c8f95f61b584528d161255c4ea394d81a69a3f3d5c7f6984a0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl

Download URL space_graph-2.0.2-cp314-cp314-macosx_10_12_x86_64.whl
Size 297.0 kB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
66be9e8ccf141688cf140e774e343f45c05bf11da8646638b3d40c7a499e3f40
BLAKE2b-256 checksum
How to use checksums
b8765414eeaf3808ff25096a32f083bf4ba84a88c4addc76b7597697a004b3ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 315.2 kB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ff4b0146ea943e0cafc8dd27e53ed5480d7cb0ebb068d735c8aa7c687bd43a5d
BLAKE2b-256 checksum
How to use checksums
12c4e253d0df578a27501a81efb5e8f88b9f56820015cabee187abe95a5763a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp313-cp313-win_amd64.whl

Download URL space_graph-2.0.2-cp313-cp313-win_amd64.whl
Size 186.9 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
1e09c3af2a1312bbcdaef84eb20097c3b5355428ec77937b0758841b9c5c1b72
BLAKE2b-256 checksum
How to use checksums
3f8c29b520356f09b5e6c80a2886e65aa3e0c54e84f8088c2b0c3f823ec5ddd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 334.2 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5cc9c9ad7b87b63b983892b92bb435f712a3f2cb944d035a658c0d21d10d3550
BLAKE2b-256 checksum
How to use checksums
337d254400518a5321078698b8392641dcfe7852764ceea9516d9e8b195faf5e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 316.4 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d382c21ce8cc854378d877c28ab19094af19b464aadc6ef9964ba31fea3289a6
BLAKE2b-256 checksum
How to use checksums
941acb543e7b2d75b94088bed4f6a90269afb86cf16a922bd8c589996dc2b5e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl

Download URL space_graph-2.0.2-cp313-cp313-macosx_11_0_arm64.whl
Size 282.2 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
3a8e0fc51ff73f27f953090132fab443bcfb55eda8769a9596ca93a1b0f87df8
BLAKE2b-256 checksum
How to use checksums
d641dcb7ee59db4735c4c3c813e5f581fc1e9079f492f1847d09ef8ae9e5ec02
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl

Download URL space_graph-2.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Size 297.4 kB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
46977ef2b36d43e906c4101b4f4ab3218559785bc8a8c5f1427b9e0c5ff081be
BLAKE2b-256 checksum
How to use checksums
3914f8faa90995d48cdb2a689417cba4d703b183f2ab843cb0ecd99228cf6780
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp312-cp312-win_amd64.whl

Download URL space_graph-2.0.2-cp312-cp312-win_amd64.whl
Size 186.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f422563d44b37f77af0628aeb95065c06375222c00756b4b0eea5b38f09815ea
BLAKE2b-256 checksum
How to use checksums
9edb4451dcb0d8ba827c78a52bc80548fa273217b18887376a5f83e70bbe4b20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 334.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bc0ead52528fe58eee8a868240a7697227b8b272db45a33023311c7dbed58e3e
BLAKE2b-256 checksum
How to use checksums
e09797bc957f360001d4bc6873535155baa6efd34e87de9d642d5c924582070b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 316.4 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
274df6d14ee5f52cd28a8f5ae42e630d0e40e253e7dc6700cda49be1d615269e
BLAKE2b-256 checksum
How to use checksums
6f13ec7517aa92d03335e1b492222c0e73d51b60e966a7b3befaff26df70e7ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl

Download URL space_graph-2.0.2-cp312-cp312-macosx_11_0_arm64.whl
Size 282.2 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2e18bb07bddfd24fc7967cefd6e79c82b8d1cfd86907a29798345f0fc1d2b34f
BLAKE2b-256 checksum
How to use checksums
3c6414dd8899546a47c092e2e5f7746bd73a6c238c0b6921f6f85cd3ce5c7f58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl

Download URL space_graph-2.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Size 296.8 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
7a774990ca6083b01cccf8b9465ce9d977ab85bd753fb8ddfc72577d1517e04a
BLAKE2b-256 checksum
How to use checksums
5480cdb884be5f322e1742f5864bd8e73eed8188f41e1333bd985785ea6e6006
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp311-cp311-win_amd64.whl

Download URL space_graph-2.0.2-cp311-cp311-win_amd64.whl
Size 188.8 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
4f61c24eba1dc2608a4d7f5e8ea0d84ca5314ee82c72dfe54d8d46a098e4ec57
BLAKE2b-256 checksum
How to use checksums
86780c595ea457e2875b6a6637fc4d5aa6c4eb95a151f9d7879d516b8d0dd3e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 336.7 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
97f0bca222ff3b95f61fbaed5ccfb6c2ff28a772a7ec68c640ce487d5b0ed3ea
BLAKE2b-256 checksum
How to use checksums
d83ff71d46bb6a31e070a5f60379a8f2e80c78c0defb6d8e957be6294c9ef06b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 319.8 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
17610898c66b3c6b78999cc391ce832ff705901f2f34c9d1acd6368bf848ef0c
BLAKE2b-256 checksum
How to use checksums
43c088e23ef2e56b050d46c759971a7dbd93fb78232124b70a97b977937ebf3d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl

Download URL space_graph-2.0.2-cp311-cp311-macosx_11_0_arm64.whl
Size 283.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1194acd72d232c4faa1f46dda1b45e0b8fca37f75b94346615e00f6306427df1
BLAKE2b-256 checksum
How to use checksums
e11e3404b3e0039691c5d52afce5364f1bcb58833a0c2e587d0518a1f351ee74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl

Download URL space_graph-2.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Size 297.9 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
15a9130109f21c68d61c67ffe1fbe341161fe5089c7550252d12b89e52ad6fbf
BLAKE2b-256 checksum
How to use checksums
c9421070e90dde656fefa96a795a0f277361e9d220acfdd8d171bbefbcce2213
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp310-cp310-win_amd64.whl

Download URL space_graph-2.0.2-cp310-cp310-win_amd64.whl
Size 188.7 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e2250782004bc29ca76fad999ada392d3a924b68781674927221e7dd921ecdb1
BLAKE2b-256 checksum
How to use checksums
6e7f0f3e4f77ad802d7184685c8806433c2b989ee8a9ba1e01d68b644be41ff0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL space_graph-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 336.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
76ee7f2e7e976ebcdc63a54e5eb6d63e965a2a80467d3fbb74d4c63dd4289b29
BLAKE2b-256 checksum
How to use checksums
87c0ac26ff2ea33b80429c6cc27d605f9c4bb66628849b85b31cb658a766f9c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL space_graph-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 320.0 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
18f152e2d4614dff6cdfcd9868803d9fa94953d76e2c9f39a6ade5b2ced0eb09
BLAKE2b-256 checksum
How to use checksums
60e6f54d2b013aa05cc813cc83eaafd14457355a8da0977242871a08ac801f3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release files / space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl

Download URL space_graph-2.0.2-cp310-cp310-macosx_10_12_x86_64.whl
Size 298.5 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
c7e893dc67a32685cfcf10d52d872c4d6ff619ad476c805f5574d092f5b5cef5
BLAKE2b-256 checksum
How to use checksums
edb69e00cd6fc14d8880a11816bfe954d98fd2fbc234751b865a7a57efde3a75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Jun 10, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

2.0.2 This release

30 release files

1.0.0

2 release files

0.5.0

2 release files

0.3.2

2 release files

0.2.0

2 release files

0.1.0

2 release files

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