Skip to main content

PLY point cloud processing for 3D Gaussian splatting workflows

Project description

Extremely unstable library to work with coral reef splats.

You can swim with a few GoPros around a reef (e.g. wildflow.ai/protocol) and then turn the footage into 3D models (e.g. wildflow.ai/demo) to track changes over time, run different analysis on top of it, and ultimately see which conservation/restoration methods work best.

Installation

From PyPI

pip install wildflow

From GitHub (latest development version)

pip install git+https://github.com/wildflowai/splat.git

Note: Installing from GitHub requires Rust to be installed on your system.

Flow

flowchart TD
    %% Inputs
    style A fill:#1E90FF,stroke:#000,stroke-width:1px,color:#fff
    style B fill:#1E90FF,stroke:#000,stroke-width:1px,color:#fff
    style C fill:#1E90FF,stroke:#000,stroke-width:1px,color:#fff

    A([corrected images]) 
    B([colmap cameras])
    C([colmap point cloud])

    %% Transformations
    style F fill:#6C757D,stroke:#000,stroke-width:1px,color:#fff
    style D fill:#6C757D,stroke:#000,stroke-width:1px,color:#fff
    style E fill:#6C757D,stroke:#000,stroke-width:1px,color:#fff
    style G fill:#6C757D,stroke:#000,stroke-width:1px,color:#fff
    style H fill:#6C757D,stroke:#000,stroke-width:1px,color:#fff
    style I fill:#6C757D,stroke:#000,stroke-width:1px,color:#fff

    F[plan GPU split]
    D[split cameras]
    E[split point cloud]
    G([train each patch on GPU])
    H[cleanup patches]
    I[merge patches]

    %% Outputs
    style J1 fill:#006400,stroke:#000,stroke-width:1px,color:#fff
    style J2 fill:#006400,stroke:#000,stroke-width:1px,color:#fff
    style J3 fill:#006400,stroke:#000,stroke-width:1px,color:#fff

    J1([massive splat model])
    J2([splat ortho])
    J3([artifacts to publish])

    %% Flow connections
    B --> F
    F --> D
    F --> E
    D --> G
    E --> G
    A --> G
    G --> H
    H --> I
    I --> J1
    I --> J2
    I --> J3
    C --> E

Using the library

from wildflow import splat

# split into multiple training patches so each patch fits into GPU VRAM
gpu_patches = splat.patches(cameras_2d, max_cameras=1400, buffer_meters=2)

# split colmap images.bin and cameras.bin into patches to train on GPU
splat.split_cameras({
    "input_path": input_path,
    "save_points3d": False, # we don't want tie points to see splats
    "patches": [
        {**patch, "output_path": f"{output_path}/p{i}/sparse/0"}
        for i, patch in enumerate(gpu_patches)
    ]
})

# use 5% of the dense point cloud to seed splat initial positions
splat.split_point_cloud({
    "input_file": input_path,
    "sample_percentage": 5,
    "patches": [
        {**coords(patch), "output_file": f"{output_path}/p{i}/sparse/0/points3D.bin"}
        for i, patch in enumerate(gpu_patches)
    ]
})

# train all patches on GPU

# get rid of wacky splats
splat.cleanup_splats(...)

# merge everything into one ply file
splat.merge_ply_files(...)

# create orthomosaic

# publish

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

wildflow_splat-0.1.7.tar.gz (69.0 kB view details)

Uploaded Source

Built Distributions

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

wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (715.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (808.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (737.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (672.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (719.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (810.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (675.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (721.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (812.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (678.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (715.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (805.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (670.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (657.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp314-cp314-win_amd64.whl (488.9 kB view details)

Uploaded CPython 3.14Windows x86-64

wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (717.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (811.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (736.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (672.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (659.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp314-cp314-macosx_11_0_arm64.whl (602.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

wildflow_splat-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl (622.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (715.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (806.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (671.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp313-cp313-win_amd64.whl (488.2 kB view details)

Uploaded CPython 3.13Windows x86-64

wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (716.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (808.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (736.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (672.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (659.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (602.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

wildflow_splat-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl (622.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

wildflow_splat-0.1.7-cp312-cp312-win_amd64.whl (488.4 kB view details)

Uploaded CPython 3.12Windows x86-64

wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (681.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (716.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (808.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (736.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (671.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (659.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (602.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

wildflow_splat-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (622.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

wildflow_splat-0.1.7-cp311-cp311-win_amd64.whl (489.5 kB view details)

Uploaded CPython 3.11Windows x86-64

wildflow_splat-0.1.7-cp311-cp311-win32.whl (468.6 kB view details)

Uploaded CPython 3.11Windows x86

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_34_x86_64.whl (680.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (682.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (715.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (811.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (737.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (672.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (660.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (606.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

wildflow_splat-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (628.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

wildflow_splat-0.1.7-cp310-cp310-win_amd64.whl (491.9 kB view details)

Uploaded CPython 3.10Windows x86-64

wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (720.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (813.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (739.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (675.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp39-cp39-win_amd64.whl (492.0 kB view details)

Uploaded CPython 3.9Windows x86-64

wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (686.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (723.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (814.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (740.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (677.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (664.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (722.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (813.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (739.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (677.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (663.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file wildflow_splat-0.1.7.tar.gz.

File metadata

  • Download URL: wildflow_splat-0.1.7.tar.gz
  • Upload date:
  • Size: 69.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for wildflow_splat-0.1.7.tar.gz
Algorithm Hash digest
SHA256 31b95c7a8b98445ae847ded64c15eb9d70a37a039c5c8d0547af487dc47ecf09
MD5 6866215db8be7d6a6267ee960365edeb
BLAKE2b-256 9872dc8d2c5452b5b6748b26b41c4df121c2a0776897f5135e15bd78607ba042

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa0ed71eb899f627f186d651b411a8d10cca38256f4c8c1811581e67bfea7940
MD5 05fcdb8663510da291430ecbadac70c2
BLAKE2b-256 67273c38189a44960fd734986a596c0692fe5f74f77b01435319420455475b62

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf0334f49a43af7e4fb4e0c595521a790b2157cb205cba584177c5267d459152
MD5 10f2760d9da1ac3acd2b7b5a634cbdd3
BLAKE2b-256 e110d58e09b785db36f8280b9772fbae22a295e55b1568ee2358dcfddd78402d

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f37412499445785b0c899026cfd20366fb7f59ad6125d728ba5875ae308abd6
MD5 1ccb0a873d934663e42d54ac262b28dd
BLAKE2b-256 c94eaaebddf9fbb0a3aa15748c638fb5ed927b9f118ef0b1283ca5187d306a2e

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5c3fe661391a301bc5d822a6031b0457ae23c7f85d3c77a3b286be7472d274d
MD5 be9c9f80a6dcba51b0c05f399aa45b59
BLAKE2b-256 b56ed0d6a5a467b1a19b1565161e2020ebdb1a07bc3a3a630c7dd72850cefe78

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e51b730e288a91ac2e790973aa8136050b1d69474ec1148a55c223685cf6401
MD5 19636153dd82285b5d3166f929a5b1f9
BLAKE2b-256 832349882d58d8929d6c2c88704baac3f93668b06745ea3b8a403bcb7470c098

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a962b9e7e5790e0a35f0a7de6a59b63c773a69e0739f02f986586fa1a6cb2d3
MD5 9120f20fba869667e7b8a2f79918bc13
BLAKE2b-256 a578bd42e3cd3bcdc3deacaf35c365d08ed2ba60373477bc329b9411656cd62d

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3adf908101bd5b443628daa17b85c63b8b90795a3ed87bd39b3e3326509164b3
MD5 00d18326bbf3ffca050f0c6dfeb44e04
BLAKE2b-256 7c8dd380fc59e08822f52afeac15d10f8034b747969e45901e947b2d708e873c

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee6ffa060850ec2f229f828b318b173f8a996985485d703323902ddc0b8baecc
MD5 9e3596e501d5e8d26d45e95eb4565f76
BLAKE2b-256 6588139ebfe2481c97a1b3f2b11b23d0a08a7a0d6781202cfad90c6f2091f808

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 422322be4ce56a0291efefed953639af6c7373042182913f1edd5e594334e3f4
MD5 88b87fc7d612d141035e93f24863b745
BLAKE2b-256 1906653ca6e151f7155e3781e8bc3a9b457e833c8404c4d95761cd072ae99933

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 560647f1d6009eabef0b5174cc1c0cbde250407d2b998f75c28bc18dc7998b52
MD5 046c9faf3d00a1a668c176ac7db2d00b
BLAKE2b-256 b17f1a2a00be448dd7caa96cd4d5e881485111534c87d5c94a5eeaed5336babd

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7666900d51e0b6ca8ddb32293838ddf01e75381a7c5d525359767ee3ecd70dc5
MD5 bd3d38f9e6f4a10e09f2214867d633a5
BLAKE2b-256 35e1ad4cfa0afa96b1010bb2a64180113c15937e27c5ddec870552b52f40ad65

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58258436880e778f6b9b6b646c16b69f33df927e4c4bf548fb7a4a417451351a
MD5 69cee0e6ab3f9c31a943118e9256ef57
BLAKE2b-256 e3d5b9837c8b26bcbe9bb056478c17cb53ac8743e52c7bce54a189cfbc2ee366

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56289d50f3583677cc108aabed056a758198df2beab3c7dd1e4995b9e027b3bc
MD5 e75eebd2ea223e1d02fb48c3f01d3762
BLAKE2b-256 b124935a8704a814c5c48adffd72340288849eb81723a143ab5e933b7e6339b8

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 847fe053468e8c4752a8f8b4a553a9f417b3d37c70748e70050f04fe1f63c934
MD5 368dd62054d92383a18efaa4fc90e27c
BLAKE2b-256 0819ce4fde98d297d5c24c9638e72bef000a1e8a22479dc8a30d2edb1f5e8b9d

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 234cdc465143f63aa013f5a54112dfe12c1da6366e989c9cdcde4b723f9286bb
MD5 8e7fc8264fc9edb55f30c4c0aa1775f6
BLAKE2b-256 cf3eb10e6b4022227bafe768675ac468e327e42389791b1b21c05955484c7c4b

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbbf2fdc12a4007b7c03afd60a36181f17968f1f5bb1342c8846f9863d0c2f94
MD5 656131a628a0c19c11a3b5194b3fa15b
BLAKE2b-256 35b14f0f805c259b331fef4d472738862f158a667bd15f1450dc75a5dcc76361

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3bd3f3617b69cca0be852b8ad75af8f81d87ffcc78cfc5a703f25a02f03680ae
MD5 94aa4e9cb14a788a214e9245bedd5030
BLAKE2b-256 fe4d49d9cee27fc9521a5cda7ba5eb06a51dd3f739e8233917dd264be8a213a5

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bab24fa4dd098baee6ef39795a3c3d0caa69f4df003a79fe29a112210d1f5666
MD5 943c8152315ac7b28bb7956f4b1c2b92
BLAKE2b-256 15e460117cbb224a9bd3e16f5dc0a64794bf68ddf423a1f217558a7bd80e0aaf

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 871d6468b7fe96442dbbb6a4e09454402be944ea3ee5296ebb83734dd9abf20d
MD5 d61f6fd6ec25f72ee3feb8845d8b3edf
BLAKE2b-256 0c8beead9cfb47eca5ac852c4170bcdc2e93c0e79ed7f1cd4a782c64ac7365f3

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 327cad1856f36b248bd5a6c720e3cd2c591d87c6e2d768bb7516534a8c41b0cf
MD5 8d0fd211342e4554b823df0bdcd0451a
BLAKE2b-256 75717975520aa5a302da1f4787426b74447a8b5bd16cb04686d1c2952a0f0d31

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 04a4145521b9d2caf83d52a1e354a8f08c56ede8e165147321e92523002b2c82
MD5 4a439fe1bdea60362b9f0d81a62bd381
BLAKE2b-256 44904d7a28cd6ccfb471c0c3557ebe96a1fbdf9bed5230bb8c1fb1e5e0895905

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9420b548a3b96cb62aab14f498909bee7ef1b2989771f24ae0049c7793158950
MD5 c70b6329c78a6d44230ee14b1bf8ca30
BLAKE2b-256 2a69da3166d95ec68e99ccf266fa41f33720f1698d23ef20191868d4bba3e60f

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9943c4f137f2e38c1dc8107e2879526f1fd2d5ad08130c7dacd44c655c0c58e9
MD5 c0ac2a7100066628f7daf022089e7b02
BLAKE2b-256 6ae0786534095f9689008ea0b712a22387d8dab461aaccb3dfea3a91e24c76f1

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f5093b3b25c4d26dacbcc0b27faeb96feb108b938c32180f56a1c48f71e17fa
MD5 1f7d3517bbfb3fa29343997cdaf163be
BLAKE2b-256 3fbe48aab458cee0c132791df42c064b621d2c07cc476e7f516ff8f5f2773921

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a0894fb8f58084fade7feaf8689b75bd1c79c53da8832fcd96092a484609ba
MD5 075b03b4778604d3b60e9719e4c1b547
BLAKE2b-256 39ab59962765773b847d57e59e35bbc06268319b980daa6e3cc9c68d2b8d491b

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5331a2d3f6f7f1c429d95abcc4ffb02eee00d3bd8066581c257d48f2aa1bd4a6
MD5 82e0dd938b963b57e6fda0df043dfd97
BLAKE2b-256 846ab3e854a6f7cd776be98fb38a960ee49cd02928b904cc84e25ca2650a6b5d

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7a9bf8fc6bdba7d8db1027766dad75e48f98a89e026c9fd923480eff56090a2
MD5 08a65f057a11921fe53f0a4d9b509b9d
BLAKE2b-256 abbc1cb7a487246325e9bf486f28fd505e4d375c8892b7afe4e04fb3cb5f862a

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dcbdc4f42fbedf6b0c80c50cc679033476479204ae0120ec2d292dd9bb05f0f1
MD5 cc4840279b986ac99e9d107e3bd7241c
BLAKE2b-256 2468d26d9f1db91ba735840a1571e257792aedbe9ac2829f791cc3c6418bad1c

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f87c35f5d178e69d92a3c7911d86ef1a88f169cf4ba2e2fd7e9f47096a92d19
MD5 2007e1bd31fc043ed4a8e6e2dfe3af55
BLAKE2b-256 cc6dbd518696b740f735af83589a5293a6fa047051da8fec02633fc9ae02c269

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffff0d1c1e3ec6a3006e226d132f382a3e6cd856859be6c6af6b8a8f081a4686
MD5 8c78cd74f1f367cdf3fe3bbf2a40daac
BLAKE2b-256 1f6ebd38b88395f5567e1a214a4d7cf140863b3c4d004222dc2a36c460d60c74

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e862acadea142fc3fb708a2d1c177a56dea5465ed82a21ebedd293a4d9b4297
MD5 29cd28b70bd399d74837a81e50501532
BLAKE2b-256 248395cdcded72eadd9188b43fd595fd2fe2f7cc4daa96c7d43d734a20a017b9

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 363e39ed7840156b726fcde4deb71b054964db0b4f623b5504c0052cd02e9220
MD5 efecdcba4e45287cc26cdf190b5745f7
BLAKE2b-256 874e46244d0224985ede60f998c1ba40000b86a86103bf596af7bc010d5e762e

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4900264cd9a98f47c76076feeed83468ab25678cca9dea65ace02a11d515a26a
MD5 eab9e2f41777faa9adf53648cbbab31f
BLAKE2b-256 e029b5fbd16cf669357892eaf5e38d68d700846804959b2a94705e6bf79df221

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57886161ef9dca9f2d3afc88bbfb4d211aada7b60ae6b045139ea53ef685fedc
MD5 9b67e378b4428cd6e02a026ad585d208
BLAKE2b-256 5709343ac50f0cf1fb8eac73e4fdf788a02a0805567b7163e3a868fd04e0def2

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d981abd01a8243ae71185fbc6402baf1c7834a104b8504ab703ed20641cde7b
MD5 dee370380c7f4cd7ea4ac3f08fb19da0
BLAKE2b-256 90fde88a7051d77e09a4cd2be1ea1a7e4e9fa16853be9de23091e4232c4ec878

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82075a8e86d0e945afd348f048f70c8ddd9c79e1b49df6c0731482d03b04f746
MD5 e81aa16b15f2c2191b354682eb82002a
BLAKE2b-256 1e3da0ec79dc421dfce3db73d5a05461218ceb7774b37efc33ac41ffedcb69ca

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cd51048dc631ae7bf4f04ebb3b81eb0dea112c9d463240d3d5efb1d48401887
MD5 363685d12fda659ad40f4f4d6eaa3c74
BLAKE2b-256 932a4669a9110aef37a9bfdbaa095ef11101a5224a20e068b58ae2d422230b4e

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3010e545894f17a36c1fc0042f1d06c6d5e24a2747f05f59b345f6bec5b74de
MD5 55513bafe7553cab183c9ec39297cfd0
BLAKE2b-256 12d3b83c6a669155858887b687370e6e824c85f047a959f842f2f7b7d274fed2

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcd144761ca1dc6ace7e2f41be6b63f8c129718b081af8efb51177b4960e6162
MD5 01b8b27881ca6bc92b2ae404218b160e
BLAKE2b-256 d6b3153b4e774adbad28971504825f3835fd104ac981da09e0f2316cc520bf27

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 763d52ae85f4ca4dfe26ad709d9aa03de86a23fdcc169d621d0e18f7857060c0
MD5 518269a64ceb64ed0ba73663d979fa1e
BLAKE2b-256 6301764ca6559ecd7070768227d5f2205332658b7b5f44af701c10d0ba70326f

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b862969cddca75c8945d37f28b892fe2d96aa36388ba30c871a101cae5e0e79f
MD5 ad5b1eeef4bfc2f390cf9de6605375ca
BLAKE2b-256 b8729af94f34b03b2c4c3c3215f83bef84539eefcbea98e21837c1dde597d1a2

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 584bcc80e9cee0b33185618e359211fdbc7f70267f7cb983070d4e840fd0bc58
MD5 0b767205c5d524034ed840442380660d
BLAKE2b-256 37adc93401a3beaadebd24f531527aef606a81be3025f1ed742a327ae4533f2e

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 767052439cbef78747054662a6005aa6365ce4796bbcb75fca87e340c824aaaa
MD5 a4b757043a188f7f706a6bdb0a3be506
BLAKE2b-256 4463261ea9106cbbec228858a816ab8b9adef1489d5afbabbb6872c4bd398255

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f41e0a187d41267ad3fbb5d256f92753dad7b02f2d86d4cdbf134fa902763063
MD5 15690ae31f36b4170066963d7ecb59f1
BLAKE2b-256 c6280970796592444659aeb32a360833657b870bf9839c25735ce056e39775f1

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bbbfdd21ecc22f90fbe89bd72d40a4fa54de68cd01fed9d3b969820e1b5f97e0
MD5 e0bd799cf06be31e8c6795e915959f94
BLAKE2b-256 5e99e6e7c64027360a752ef7bb6b5fffc0e6e5db2d507cfa88d71f0dceffab0a

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a7b653d84de3ca57b83e1d921be1087afd8bb2e950ff347cbd0da89d410b836
MD5 298f395abb77222c3f9f4330fd47829b
BLAKE2b-256 1337f67add4da18c188ef126f1fffe32b3a51eabc13d705824bc0be6d1d7ad4a

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5549b9c6b057e9b095588e620c2ef2a702b99409c2105939238d7a5829761f27
MD5 36ff50b24d53bcbc2f5df4b42bbbeb0c
BLAKE2b-256 6ce1a86cbd0d6ecd39b5d7c24238d2cd140d456261a3e11b7932d7351fb70352

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e1b20e32e72c05a771281751cbcf370da4c28b51bd1f70d686dc2eae49fa9e
MD5 65e54c4445f65f04c972a41e1936a2b9
BLAKE2b-256 9ae0e22734d925433b19533dca706ebafb85747311d4c0596cb2523219bf49d1

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7e2b5151c575bbe1b3934c76248d8e112005d8b9151c8399ad9ba65f4850d86
MD5 70f5282ed09e1abdb233ec4c4dc7cab6
BLAKE2b-256 eb3646e41b9ae620b79579f467de2aed713963fb7bca4e733825c83b395e486b

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b6b24c54fa04ebe9540e37cfecb4ac10a55167289ee5736243fa895188fd0e0
MD5 4f52f5fd87573ab4fd8fb65b90359bee
BLAKE2b-256 bea1d1a0bf4ec6de1ac0f1eb4d3f0d1b6423d78057a908708f3fdeeb5de7f25e

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d51a1a3f9561a95b76c95b2f654b78d5b556a690cfa2fb69b21f268aab8faddd
MD5 47655363321d800d8f1443bea7996466
BLAKE2b-256 a5f9d22ba5d13e79b3558b6318763c6cbc5d04936800912734b511ad0de4e885

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9b5efd7df4bd8d571a24f479f6e2c0ec5f126994a4aec551c1346536d262beff
MD5 bdb0626d1423c6e823ab3f8eabe84e25
BLAKE2b-256 f2585daa251091db1b2e0c606db094e385123f355ef388f5006268b44ca6c696

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc0bdea8c07169e958efd51a42b717aa43571cf8bdde008764c9abf18527dc3c
MD5 f8cec651ed8d99eb50cc28bbae192228
BLAKE2b-256 c412065a8658d1ef0036956975ef979d4e0e5a6287d7173866bdd283d27b95eb

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 704a604ef400fb2d3da99e633e010f1c6343310944dacf5caa2cd4a0a3e9a446
MD5 b629a8625b860af3566e489074512092
BLAKE2b-256 3bbcca43eadf153556d51a0313635c5c8a7425080c16232a591d5e1f3cd621a9

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19618eb5c5a6e27c6b723203f61c256f47ae9114816b251b5986f766b2fc1136
MD5 3c32be8d494a030c9c0e09ecd13c782d
BLAKE2b-256 33386858a0b682e849508b8fc6f3ad8c6c5bd7e8fe764d2810850872293c62f2

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f3d94847a62c10ec94250b503427d3b99a48d09c96bcad74d3c453ce642b0b3
MD5 be151804e5a8f2406f3bfed16c7a7e37
BLAKE2b-256 151da19aeb379cf97d6833fdc80f77ff9341240f14897403799b815b28d1e18c

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf54cd1d9e966d7de89f40be1d169c28d761d117314431f95a3c13290487ebe4
MD5 ef96c98720f3d0d06c8dc59c2a4cd555
BLAKE2b-256 4b5c51678c8c331f766141a6c9b8a1ef19c2936ff0cde20e394894d0b639cbe5

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76f022ca23a0da81dfae1e50074430833f84e2536c83677ae9ecc012fefaa992
MD5 274ef7cdda821614bfd8a4b5fb8f4621
BLAKE2b-256 ae4ba7c74ab2a438006a85b93f86aede71b5a3a88516f62d3a4d0c3098360664

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69cfa8fea7c3d7e7a0b2809d0f3615f9cf2db869d59d022a1f30cc1baa12dab6
MD5 b15f5d9dbfe9622c86df2f14318f0a97
BLAKE2b-256 4fb12bffd5d41f00255351cc8cd567d3f233c5cc56dab0ae76f8fc175a7f7265

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 919b93ac6a34d7b9c9f55ba86e331e01d968526369c7ea6b592e70ddf3e5ce1b
MD5 4e00b6928a27ed974d992266e3514e3e
BLAKE2b-256 d6d39206f2fd12e0b1e8f13b4bdf7cc2ecc0df5589be26544e3fdcea725d0229

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1c0b87fb94445ddda65c2270f8362a4812fd1a3884e4a22511fa79e6818836e0
MD5 c0aee76308d04c7165b17757a12ed6b0
BLAKE2b-256 81299f8df5379eb2839547ee21d106af3cb582fad3786d3f551b7a6dcd742a4a

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 716bd11a41aca80988a64e90833b2000de71cf71509ede649495f92d3d2abad1
MD5 d30f5902e35f463ddd696a00226d2dc2
BLAKE2b-256 af9f2339209bb18295732cbb11b147611aa41401eadcf6ab2d6ee92c6243fc23

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c180bb732ad565ce78c907af3254dd7c9790cfb4f4faf7d8c16ec175a36ca000
MD5 14eb32836e173ec72c88eb2ff0a84557
BLAKE2b-256 0bc18cd92696217d24115e32b5ce15c9beb7312f13526fb9c18d16142ceadf48

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af8cdf8a7afebcc10ef163a0d3e3a38ea01095753688105f5ffebc0cdd44546d
MD5 15bd3343f691f3e0f53913ee01aaa8b1
BLAKE2b-256 5628a553ab61a7a8540e44bcddfeec445e2c164ecf3d86772612b10dbe5d9abe

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7dff317a727d7540c5da6b7e7a6f04e80d802e0a3c6f3e4e6e757a39adffe9c5
MD5 c7bc7ba2ce41906003d5a48a784cf309
BLAKE2b-256 5503b8f096f678d06e78c060523378b0976a177d388236b2462ae03533d64389

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a347d6e3473aff87a92d3253d434316c354d7ef36b9203de22cfcefc7715641
MD5 d0a9ee1a43a20df671b375f621cf04e8
BLAKE2b-256 b5c0b865e85c28e30a719207a164b956bec7b801b516f91e4d3481d44a4112db

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bca24c087fec9ef6fe2d0a4292792cfbc824ed685dd68dc5e6bf4517d867325a
MD5 df6175100000847401ad332932cfc817
BLAKE2b-256 59f9ba2b6406bef4945ae08d5eac9f2c351927d77eff07c97a2baa568da4dafc

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 75e3ca5affd23b2faf9353b56c81bccf0691b503f7a55493eedb1ea989f1bfa1
MD5 06a49466a8a68f533acc0673ba738bb3
BLAKE2b-256 0e8300297b636be03d0b4839eb3cec7ce273632169192c6d5837285defd22ad9

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb31e2ace9af1e784c7a93bce16ef175ac7b5e4cd70ef041181f424d7c1efc31
MD5 d81e2f7fabd6c4cec767cac2b95d880e
BLAKE2b-256 3b2d3a1a2ef01030ebe6344ce0fca8e9d1bbcccb92e50c892166c0ca9684b27d

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34a6ff874dbf99c1681d1dfb754b427c3e7a512ba169d9827d87642b7c174006
MD5 e5e5eb696c262e8fd530c40b21b86f08
BLAKE2b-256 16568869c38c22111b04d3e75540201e017fead60d6c44a086a216b9bf09d239

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0bb6d7fc0ad95bc8fb7d7ab74d223cab002ed7727af6cbbf80b5f30130e2d2f
MD5 1738b46b8b83542b1d940cde6b2fa69c
BLAKE2b-256 071db63eea1fc11519e158aed38dc64e6e16555f381f84ad992e79e4d126ca1a

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f5a42bd1655ed2d41fe0518cb60368e185e1274f6c7e4a40e88424c9a9d82be
MD5 3365a6babb25602668a3a31e9d46cc27
BLAKE2b-256 468e5f8dced5b95af6bfdfd6f738b81602c80d8ad1bc5fa87d386a43900c115f

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20f242edf0907a1cb124049a8dcac47bb8987f01d4bc23e97e01f227c04a8845
MD5 3f46d8402e393a960cb0b013b0584e19
BLAKE2b-256 f1d6372a02a8f1add070064d72ae726ce24dae4c3284531814ee1e750891ebf7

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8ee7a7f61664d01dbfa7a3e480460ccd8b9aed4c6913d6c027f6be79b81a6a9
MD5 cc4a2b297b45a5b6af55b7306ad7de3c
BLAKE2b-256 288c6226aef2768802d53281d2b28458cb0de1db57cbbe56903fda6d09fc3183

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9385f86fc0f66848c910f2fdcf8e4ed6a9f45c0f671292df2ab03d936b6e66c
MD5 1ef7df5b95c0fb7b3ed88afc796a7423
BLAKE2b-256 f289d393c6fcb3072dad6788dd0b7100639c966bbba893a9490a2b5749795eee

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb16318da7700696982c59d38ba4f092c3dbd6ef682b05eaaaf5f68fc26a9990
MD5 5b39fca2a5dca6f937cbb32de1113639
BLAKE2b-256 633b9f5bb67644e1184aac4b671a7593d0ac14f2c5ff37f8f77e6b70fd3c5a85

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d598be5d3c4f2bdbf8f3cccaabe4ee6d58f4dd1ab3f2614677bc48b3f980568
MD5 51b234844396ab03908ee76ab099fba7
BLAKE2b-256 5193e8449d3a583d054dadd1b6199136bf5c916a9117e9473d7d0d6b0fce5e2f

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 de52cfee09e369fc0cb8191d762e50a39a30d731a05667d6fd422c9bbd25939f
MD5 bfe338943926d0191ce3769ca0feb88a
BLAKE2b-256 caad1a1b9b37c94a326dcdc08d4a0501cf914553068b5cb0cd9f6b7a68d8ad75

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f091e087dc52c2934505d573792ce42e854d70ab182512e401d3e9606e8dc524
MD5 4381bc61bf55f6a1e7e534de6dc78e1b
BLAKE2b-256 cd428eab731487ac7bf446cd4d081954799864d2c313686fc0d21ece2154e9d3

See more details on using hashes here.

File details

Details for the file wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for wildflow_splat-0.1.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da9152ef0a58fb10c4366be57b8e074871e7284b1e2cea3c52b2bd00d9cd48dd
MD5 0b59fb59a8305a0f3bf181e3fbc73821
BLAKE2b-256 885eb11d10139557ac119a89d1ba9965c89179c94aeeeede12afabc94790b87d

See more details on using hashes here.

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