Skip to main content

High-performance Gaussian Splatting format conversion library

Project description

GaussForge Python Binding

High-performance Gaussian Splatting format conversion library for Python.

Installation

pip install gaussforge

Quick Start

import gaussforge

# Create instance
gf = gaussforge.GaussForge()

# Read a PLY file
with open("model.ply", "rb") as f:
    data = f.read()

result = gf.read(data, "ply")
if "error" not in result:
    print(f"Loaded {result['data']['numPoints']} points")

# Convert to another format
converted = gf.convert(data, "ply", "splat")
if "error" not in converted:
    with open("output.splat", "wb") as f:
        f.write(converted["data"])

Supported Formats

  • ply - Standard PLY format
  • compressed.ply - Compressed PLY format
  • splat - Splat format
  • ksplat - K-Splat format
  • spz - SPZ compressed format
  • sog - SOG format

API Reference

GaussForge()

Create a new GaussForge instance.

read(data: bytes, format: str, strict: bool = False) -> dict

Read Gaussian data from bytes.

  • data: Raw file data as bytes
  • format: Input format name
  • strict: Enable strict validation (default: False)

Returns a dict with data key containing the parsed Gaussian data, or error key on failure.

write(ir: dict, format: str, strict: bool = False, spz_version: int = 3) -> dict

Write Gaussian IR to bytes.

  • ir: Gaussian intermediate representation dict
  • format: Output format name
  • strict: Enable strict validation (default: False)
  • spz_version: SPZ output version when writing SPZ, one of 2, 3, or 4 (default: 3)

Returns a dict with data key containing the encoded bytes, or error key on failure.

convert(data: bytes, in_format: str, out_format: str, strict: bool = False, spz_version: int = 3) -> dict

Convert between formats directly.

  • data: Input file data as bytes
  • in_format: Input format name
  • out_format: Output format name
  • strict: Enable strict validation (default: False)
  • spz_version: SPZ output version when converting to SPZ, one of 2, 3, or 4 (default: 3)

Returns a dict with data key containing the converted bytes, or error key on failure.

get_model_info(data: bytes, format: str, file_size: int = 0) -> dict

Get detailed model information.

  • data: Raw file data as bytes
  • format: Input format name
  • file_size: Optional file size for reporting

Returns a dict with data key containing model info, or error key on failure.

get_supported_formats() -> list[str]

Get list of supported format names.

get_version() -> str

Get library version string.

Building from Source

cd python
pip install -e .

License

Apache-2.0

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

gaussforge-0.6.0.tar.gz (61.1 kB view details)

Uploaded Source

Built Distributions

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

gaussforge-0.6.0-cp314-cp314-win_amd64.whl (629.5 kB view details)

Uploaded CPython 3.14Windows x86-64

gaussforge-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

gaussforge-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

gaussforge-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (651.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

gaussforge-0.6.0-cp313-cp313-win_amd64.whl (610.3 kB view details)

Uploaded CPython 3.13Windows x86-64

gaussforge-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

gaussforge-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

gaussforge-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (651.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

gaussforge-0.6.0-cp312-cp312-win_amd64.whl (610.4 kB view details)

Uploaded CPython 3.12Windows x86-64

gaussforge-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

gaussforge-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

gaussforge-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (651.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

gaussforge-0.6.0-cp311-cp311-win_amd64.whl (610.9 kB view details)

Uploaded CPython 3.11Windows x86-64

gaussforge-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

gaussforge-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

gaussforge-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (652.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

gaussforge-0.6.0-cp310-cp310-win_amd64.whl (611.1 kB view details)

Uploaded CPython 3.10Windows x86-64

gaussforge-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

gaussforge-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

gaussforge-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (652.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

gaussforge-0.6.0-cp39-cp39-win_amd64.whl (611.4 kB view details)

Uploaded CPython 3.9Windows x86-64

gaussforge-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

gaussforge-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

gaussforge-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (652.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file gaussforge-0.6.0.tar.gz.

File metadata

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

File hashes

Hashes for gaussforge-0.6.0.tar.gz
Algorithm Hash digest
SHA256 7d9bab4e9ab3964251b6c0495570a8598d9e8fc3a90dbbe8d4dcad24ece7924d
MD5 5b0f3f81c8702cc53a71e8fd897cd55d
BLAKE2b-256 65f17754803e68dd3de769bfaf12ab7347f7fed93899d0fef6fa0e0774379c80

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0.tar.gz:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: gaussforge-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 629.5 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 gaussforge-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 41a6ec57edfa86aa64b50eeae6388123bb7b411a441287758b441efea62d9aa9
MD5 68e03cff2b098f2f5d569511bb595e94
BLAKE2b-256 422e8b47d624a7fba59560fb04f23edff23cc19c3bb8717c538ae34421e73827

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp314-cp314-win_amd64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d931a2e69fa6b92547a43615b4366a902c0f57f6d3f6d77e995539db860b3e74
MD5 07656b1b8cbc8175bcc9c6ca266a5f14
BLAKE2b-256 9936150e609ab088b55d3be3dace37bb9ed5c946d61034f2f0187a9b4722c582

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cf364237a1f45d3a14e0931fe1048897f30a1a2971f3f2bfa8d5fe5af3b836c
MD5 f157e602c71ac2e1a7567d1b0340f692
BLAKE2b-256 cb5db65e27d10b07aae0d7bb7df06e0356a62c302c445f69e0d390ac7143b22b

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 361f09a3bf06814f49bc14f933591b39fc4ffa3afbd8125a89ad0404df9aecec
MD5 525f9b42cc6b78b965679b8b52ccf244
BLAKE2b-256 1bc9918e3900f9bd88dc3deac7bd7222420ba4639b3968cf710934418591cc24

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: gaussforge-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 610.3 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 gaussforge-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c76cb8e8df67fb00803646a393a04fcd18f7044cff5091edc0050e4968611639
MD5 3d6954ac5b1bb13187f1083e7efa52eb
BLAKE2b-256 32d03aeffc50d0dedb6da5ad35d0ea1d180b9c347b98d4d3b4e32813d140806f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp313-cp313-win_amd64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06a88c3cf59f9adc51646a96a1436325a32c5c7cda3ecd76ab0438851982599e
MD5 dd86f45e098967c8e0ffb16ee81a9684
BLAKE2b-256 f9f0ccf1368921a78c329288c5d3cb1b54434c2d854f4c0b45fec81ed13af681

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a65ad9c8c3f6023daa0676d7f892cea4b83c1542e2cf14bca6f2cd8d39d434c3
MD5 debc26e385c25ad1a3531131cf8f6698
BLAKE2b-256 8e8a7a98bd9e4167cd63d9f41dbadd26526cd6f2900b3b8bc908cb584215dea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 921fe36c3dc13eee5eda2390ac88f583ca4f4d8f6b2849c02ee5f0a20e6d101d
MD5 2a10a7908c1eca355d1f2df23ca5092b
BLAKE2b-256 2c38cf9056798a8f42c1cfbd1494f042f278d2898b5fde99ac6abf04011e3f53

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: gaussforge-0.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 610.4 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 gaussforge-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62db77e4141e2e18c8be2beca58bff660f9a8454f07e850a549f80cc51f1dd7b
MD5 4a7d97dca6bd72444bb73a62c1f40a76
BLAKE2b-256 78653626293c421535f2fc4fda450ac4320512c00b9732120baa95b04696f579

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp312-cp312-win_amd64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2365cfc6d8487c32d43d736ef3f54703612eda6fc90a7e612e8e6adad83cde04
MD5 7a6fe7a97f27e40d6dfa0e07f18141a0
BLAKE2b-256 8bb3eaf32d0b5a81486e3959af2d3e2438f808a091e97fd68e09c871232a254e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d736607f9caa7a8e275674e91a193c2cb5b490d8d5faed7ed7eefe181700b82
MD5 0d35ff06049b3c360b468b84f1941544
BLAKE2b-256 5a7147cd5b59576aa818f8eb7804c4f154951f4d77781a9dcabf07b1fbde6d6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22bb5d771486ee9db642cf2bfba2a11f1c16f309658bd1a682bb937f27a2bd8f
MD5 927ecd735deceec1fe42f497ca1c726e
BLAKE2b-256 f61bd88ae9d9e43c5d03736a35de12d4c380952886ef49f7caf9692c34ecdb34

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: gaussforge-0.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 610.9 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 gaussforge-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d01f5de5659c0e5e0154774cf4187a8df4226b9c618652f389f8cb9b89134788
MD5 755dbcfa0b8e0be3ae70ae52670f15e3
BLAKE2b-256 06ebdc0b958eb1702f608cf16a12b2376a971dcb17534937e2cf10b331b1a4a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp311-cp311-win_amd64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c0898245cc89100f49caa1c402dcefc918183bb0a329e942990192254f3663d
MD5 0d67ed6c9e5c7328ced450ae5813e279
BLAKE2b-256 5241a7d5fb92032f7e49dea9065896493aec81eb3648859a0bd0129b28641bcf

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5556ad3f30872dad99b425468f12166a68c2b564cb5a3d3f92a89057c637a07a
MD5 c2854fc80b1ac4df8fe3d2f105e14454
BLAKE2b-256 09f44268295585bf171238802522fc0e021b2d0d46359ab8569f36c3a2f78c33

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50831a4c3028deee7a1453b1c27323cdf52bf2fedff6ae20722477a720198839
MD5 8fbb31966fbd2d5e8675cf5664ee397c
BLAKE2b-256 e2954babe329e4c2a53d59ce1577dc445fa02359955928e330878d8112bc7c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: gaussforge-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 611.1 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 gaussforge-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f69a1d67dfbc0ef06e739cfa538484d4823fca4b28c92a6b36dacfaca75cafdc
MD5 30ab9427efcd6f1fb60373f55edd81b7
BLAKE2b-256 c2b4657cec682be3ba9bf24bb62bf25baad9d3d2713fe8d392d694a9c696a82c

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp310-cp310-win_amd64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7fa5862c4e4195b66f918c0edf2076b83b5790f9f8548937668da5ccc652956b
MD5 bb8a3111c6e7b6b973579f573432790a
BLAKE2b-256 fb7fb923b0cc1e3f6a4d1cac8621e3051a3739808940da400a7b086769d32422

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86ba64d71530f6499a5d0dc73db96955a28dc2e81ca2d2148af499209effa2fd
MD5 f3a49f17961d5f4c8e47b5e07df716b4
BLAKE2b-256 07f96e46b9e4a31d4acbb1435b2094c85d6a2f9ca47f9178752907094d9410d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d17e1f04adf8db89f22f59758b04c1b2e89f7ccc5271a495a5ad12bb316b77b4
MD5 25a97b17e56cad0fd8ddd017b6cf7438
BLAKE2b-256 ddeccec89ed95359cc2af4a57965c0015334c18da39e97c58bbae1931dd09f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: gaussforge-0.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 611.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for gaussforge-0.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43b46a37668e22700437c7fa040b8bdc9a8322396f65e86594817400093dc26e
MD5 404695bdf723b6bd69587c848831859a
BLAKE2b-256 aada9a3bc56027163ee7ca8a34f529eec014ed1600546d1efd88be1f761bdd2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp39-cp39-win_amd64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd441723149794f5e2cf2788d668e5ec2c54ac8c58895f039adb1b5d28d09ec3
MD5 baa7134144c6e90bbd4963f68f672f1a
BLAKE2b-256 fec74eb0184d3f208588a30cff438f3313e45b114ba8c0732ecb1a2ac2caaa68

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4d567bb3d27babd49a621298cf65b53e3c136f903f7983afe1bb6ec26cd81b9
MD5 b6b11930b2cea0471f2b852005825291
BLAKE2b-256 8efcf04406158cc416b89f4b4128d4ff429a12fa66921319e47f721fefb39ccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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

File details

Details for the file gaussforge-0.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gaussforge-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45ef2ca4ca6e5157fa2ca0418e956f2299c40aa44a21c9eb2a1706f9d8e51315
MD5 e52a4922478c2806d5f41cc466360cb6
BLAKE2b-256 59db5049eaaec30d8f1373257b1ad0ab7cd7b5c28c2ce1ed0f3665c595004ac0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gaussforge-0.6.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pip.yml on 3dgscloud/GaussForge

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