Skip to main content

Utilities to process and preview single photon data.

Project description

Overview

Command line utility and python/rust library to preview a photon cube as a video or a series of frames and/or convert it to a different format.

Features:

  • Zero runtime dependencies, except for FFmpeg, which will be automatically downloaded if not found on path.
  • Multi-threaded and (despite very unoptimized code) blazing fast, usually an order of magnitude or two faster than equivalent cpu-based numpy+numba code.
  • Supports a collection of .bin or .npy file. Assumes bitpacking in the width axis in all cases.
  • Demosaicing, inpainting, tonemapping, inverting SPAD response, and transforms (rotate/flip) are also supported.

Limitations:

  • Not all features are exposed to python yet.

Installation

Prebuilt wheels are available for most architectures, just:

pip install photoncube

Compile from Source

To compile it locally, simply clone the repository, cd into it and run:

pip install -v . 

Ensure you have an up-to-date pip, and an adequate rust toolchain installed (install from here), else this might fail. This should work for python >= 3.8 (tested with 3.8 and 3.12). You might have to update your rust toolchain with rustup update (MSRV: 1.74.0).

This should pull in any rust dependencies and compile bindings that are compatible with your machine's env. It will create both a CLI and package.
If this is your first time compiling a rust project, this may take a few minutes.

CLI Usage

Three main functions are available via the CLI: preview, process, and convert.

$ photoncube -h

Convert a photon cube (npy file/directory of bin files) between formats or to a video preview (mp4) by naively averaging frames

Usage: photoncube <COMMAND>

Commands:
  convert  Convert photoncube from a collection of .bin files to a .npy file
  preview  Extract and preview virtual exposures from a photoncube
  process  Apply corrections directly to every bitplane and save results as new .npy file
  help     Print this message or the help of the given subcommand(s)

Options:
  -h, --help     Print help
  -V, --version  Print version

For more info, run photoncube <COMMAND> --help.

Preview

To preview a photoncube as a video or series of frames (either averaged or single bitplanes), the photon cube needs to be saved as a npy file. See convert for how to convert a folder of .bin files to an .npy file.

Here we preview a photoncube as a video and apply a rotation by 270 degrees then flip frames left-right:

photoncube preview -i binary.npy -t=rot270 -t=flip-lr -o video.mp4

Note: Transforms can be composed arbitrarily, and order matters. Valid transforms are enumerated here and are serialized in kebab-case, i.e: Transform::FlipLR is "flip-lr" and so on.

You can annotate frames and correct for cfa arrays and inpaint like so:

photoncube preview -i binary.npy -a --cfa-path=rgbw_oh_bn_color_ss2_corrected.png --inpaint-path=colorspad_inpaint_mask.npy -o video.mp4

Note: Multiple inpaint-paths can be specified. These masks will be OR'd together then used.

Individual frames can be saved using the --img-dir option, and a range of frames, as well as the window over which we aggregate frames, can be specified:

photoncube preview -i binary.npy --img-dir=frames/ --start=20000 --end=50000 --burst-size=100

Note: You can, of course, save a video and frames at the same time!

In particular, if you wish to view individual bitplanes, you can set burst-size to one, and use the step argument to skip over frames as to not create a huge video. For a photoncube captured at 15kHz, a realtime playback of individual bitplanes can be shown:

photoncube preview -i binary.npy --batch-size=1 --step=625 -o video.mp4

Note: Here we set step=625 because the default playback speed is 24 fps (i.e: 15k/24 == 625), but the fps can also be changed using --fps, although using a very large or small fps will cause ffmpeg issues.

Process

Many of the operations detailed above can be applied directly to a photoncube at the bitplane level, notably all transforms, slicing operations (start/end) and inpainting/cfa-correction can be applied. The later will use a dithering-like approach to perform stochastic inpainting. Again, only numpy files are supported.

Here we process a photoncube by applying cfa corrections and a few transforms:

photoncube process -i binary.npy --cfa-path=rgbw_oh_bn_color_ss2_corrected.png --inpaint-path=colorspad_inpaint_mask.npy --start=0 --end=100000 -t flip-lr -o processed.npy

Convert

You can convert from a collection of .bin files to a single .npy file like so:

photoncube convert -i <DIR OF BINS> -o <OUTPUT>

By default this assumes half array frames (i.e: 256x512), you can specify --full-array for the whole array.

Library Usage (Python)

The python API mirrors the rust and CLI functionality, for more info on how to use it please see the above section.

from photoncube import PhotonCube, Transform

PhotonCube.convert_to_npy(
    # Directory containing `.bin` files
    "full-array/binary/16kHz/", 
    "test.npy", 
    is_full_array=True, 
    message="Converting..."
)

# Open cube 
pc = PhotonCube.open("test.npy")

# Get a frame
frame = pc[10]

# Load inpainting masks, both .png and .npy supported.
pc.load_mask("dead_pixels.png")
pc.load_mask("hot_pixels.npy")

# Inpainting masks will be OR'ed together
print(pc.inpaint_mask)

# If using colorspad, you can specify the color filter array 
# and all non-white pixels will be interpolated out
pc.load_cfa("cfa.png")

# Generate 100 preview images with bit-depth of 256 
pc.set_range(0, 25600, 256)
pc.save_images(
    "tmp/", 
    invert_response=False,
    tonemap2srgb=False,
    colorspad_fix=False,
    grayspad_fix=False,
    annotate_frames=False,
    message="Saving Images..."  # If not None, a progress bar will be drawn
)

# Make video preview instead, but transform frames first, and invert the SPAD
# response, and normalize to a 95% quantile, for better low-light performance
pc.set_transforms([Transform.Rot90, Transform.FlipUD])
pc.set_quantile(0.95)
pc.save_video(
    "output.mp4", fps=24, 
    # If specified, images are also saved
    img_dir=None,
    invert_response=True,
    # Options from `save_images` can be used here too:
    message="Making video..." 
) 

# Save a new photoncube that has been processed with any transforms,
# cfas, masks or color/grayspad fixes  such as cropping dead regions or column swapping.
pc.process_cube("processed.npy")

For the full python API and up-to-date typing, see photoncube.pyi.

Development

We use maturin as a build system, which enables this package to be built as a python extension using pyo3 bindings. Some other tools are needed for development work, which can be installed using pip install -v .[dev].

There are both rust tests, and python ones, run them with:

cargo test && pytest . 

Code Quality

We use rustfmt to format the codebase, we use some customizations (i.e for import sorting) which require nightly. First ensure you have the nightly toolchain installed with:

rustup toolchain install nightly

Then you can format the code using:

cargo +nightly fmt 

Similarly we use black to format the python parts of the project.

To keep the project lean, it's recommended to check for unused dependencies using this tool, or this one, like so:

cargo +nightly udeps
cargo machete --with-metadata

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

photoncube-0.3.15.tar.gz (448.8 kB view details)

Uploaded Source

Built Distributions

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

photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp313-cp313t-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp313-cp313t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

photoncube-0.3.15-cp313-cp313t-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp313-cp313t-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686

photoncube-0.3.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp313-cp313-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.13Windows x86-64

photoncube-0.3.15-cp313-cp313-win32.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86

photoncube-0.3.15-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

photoncube-0.3.15-cp313-cp313-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

photoncube-0.3.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

photoncube-0.3.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp313-cp313-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

photoncube-0.3.15-cp313-cp313-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

photoncube-0.3.15-cp312-cp312-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

photoncube-0.3.15-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

photoncube-0.3.15-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

photoncube-0.3.15-cp312-cp312-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

photoncube-0.3.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp312-cp312-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

photoncube-0.3.15-cp312-cp312-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

photoncube-0.3.15-cp311-cp311-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11Windows x86-64

photoncube-0.3.15-cp311-cp311-win32.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86

photoncube-0.3.15-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

photoncube-0.3.15-cp311-cp311-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

photoncube-0.3.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp311-cp311-macosx_11_0_arm64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

photoncube-0.3.15-cp311-cp311-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

photoncube-0.3.15-cp310-cp310-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

photoncube-0.3.15-cp310-cp310-win32.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86

photoncube-0.3.15-cp310-cp310-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

photoncube-0.3.15-cp310-cp310-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

photoncube-0.3.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

photoncube-0.3.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp39-cp39-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9Windows x86-64

photoncube-0.3.15-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86

photoncube-0.3.15-cp39-cp39-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp39-cp39-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

photoncube-0.3.15-cp39-cp39-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

photoncube-0.3.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

photoncube-0.3.15-cp38-cp38-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

photoncube-0.3.15-cp38-cp38-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

photoncube-0.3.15-cp38-cp38-musllinux_1_2_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

photoncube-0.3.15-cp38-cp38-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

photoncube-0.3.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

photoncube-0.3.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

photoncube-0.3.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file photoncube-0.3.15.tar.gz.

File metadata

  • Download URL: photoncube-0.3.15.tar.gz
  • Upload date:
  • Size: 448.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for photoncube-0.3.15.tar.gz
Algorithm Hash digest
SHA256 651885588d74273d7e9e4f74d38e5130cfd2d3e5f164ad9b2e9163f7b3953f0f
MD5 3d3d3a802e94fa1aa9d2a6afbfa47cf6
BLAKE2b-256 a3d4fd738e1f0c222de5a316ac2fc83697645f85831702f2e6ef35151305bcab

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f655e4312ee68a81bdb569ccaec6ffbaa22025cf3840202c366c014a08b81a7f
MD5 816be74cc0c30cec584acf15883a78f2
BLAKE2b-256 b6d3cf0d2268431322ce2650c0b4058f3f77b0fa56514857916f441319e338bf

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f639826275ea1f38522c50e80c1ba707aee29202cb8a9b28a2193de07bee172
MD5 5d7ce8b8dc689ad47cc916ffd9fd631d
BLAKE2b-256 8e9edb18850dc44a66fee4fe3e73bed65ec7c6ad083c742d36aa786219f4e4f7

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 93a4dc21c47360580ced3856eb0f6600c510f11111ece9a0d9e8a8c9bb2ad8d9
MD5 569d359cd06c2351464d490316e010ad
BLAKE2b-256 7b709675674a0f1bf82db5e8991a29bb5a1887b24b994c66764ea125dc773a81

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 344f3502f505a9b281422147b8a163c074448280fd7279142979f4517969c3d7
MD5 13ab4f04099ff1c171fdb81c73d54f8e
BLAKE2b-256 462501b50b6f7eaf44438cd59a6386172d217a08ca59689622b0b16c0c891281

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16d26d11b1d072b7f2b194df5f79e23ebb0e13660c73fc4c89fb2fd61941eacb
MD5 f0ce64a879bfaa87c1091c2ad538d552
BLAKE2b-256 09c0c681fc1f6f3b8f89dc44364d558c8130e9589c4184cd9bd88b48de5eb226

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ab23b0db03641e6f425cd36935f8b5dbbb46d84e82c25153d6ed52e133a7be9
MD5 8a183491f9877cfd0be12e22d83aba7a
BLAKE2b-256 7222b24408b2e5de24b6f49db57bdfe0d7601f49b8d8745a35edd9cafa868f90

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8a8c04251359773ad79614072bfa6533c706cc6c22e6f30e7723130c6cac578
MD5 6357e27e82d0e9b284da55d6925a96e7
BLAKE2b-256 747d54fe91cb9f74572860e219ba4e179ae0dc8766e243a3dc688f824e993530

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ecdaf7ef2679b25a606019c6c8ce875ea67ab0d924b5d7fe49607308a218d5af
MD5 80504a0511e2ec9c9eee51750f1ad602
BLAKE2b-256 376ddabb61003fff4bf2f536de3bd2615b35f78ca0c7e39f9bc3823441b6bd90

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7d8b8bdead7b2fb55925b1f1759d63c556aeefe763a3412cbf1a07b636fa3fe6
MD5 29935427e0036cd6c6a909e713408770
BLAKE2b-256 b2da97b62a580487062202338a33832f7a4bbd3550e4943de0cd525793d5eded

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6972cbbb9a020e0e288c00d7538fa342b10b5c0f41933d8e9e96ab44e1029a68
MD5 430f07cab614259ff2c919c9d309b241
BLAKE2b-256 f21db069d430f68ae6988da21245a1dfe7f7440364ae5437d02579a1d7c4f15e

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 608403c43affd8d7a29ce961b6bff2bd5406549857dabf8c2990943e36b90894
MD5 da0d5bc4aa8b898b53c31420ce6f3a6f
BLAKE2b-256 c665e085cccc459a7141cbefac13399d81a94e885b87bb63258fb8ca193e7bba

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13937f7fbcfa3ccbd509c06abe0d442aff9f6c48fc8d4334a72c7b02aef38c48
MD5 1bac9323f4e9fe97dd2ec30e2fd11f3f
BLAKE2b-256 fc8be71e8eafcf75f8f446036a3492b9063f6d3660ddbbbb6a545ba8ea459fc3

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f2b2ff47273ad5a2e081ac22a864617b6bee82376f1a0a77b1f2144cee45915
MD5 6c413bbc09c29589aed00e08d8b569f1
BLAKE2b-256 3ce65b8d91227b1335864f9139f4acec02634def4fb84b3d4b73b50fde262e58

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8094ffc02879b07126b257fd1f6e297a1e7454b92ae2441944b9a27c3507d1ba
MD5 caeafef16ac34723242d3beceac73723
BLAKE2b-256 b5e38e199615db65ddce213dae9b8ae596c9cd78f571d4fa69b01760e7ae28b8

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dac4cdf21549369afeacb78c014997c89b6b73630f7bf109212f0e1133394632
MD5 0fa8bcc22648cab9fb5b63fe1db83e36
BLAKE2b-256 99d0d856f8c9ec772c9e9aa980b504c1380e1f70f6eff3fe15bc4af3fffb5318

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7d75a3b7b54a5e7e9c419d8dbaf994b6a92118982b6fa8c4ad3dc9070b1d1c9
MD5 a1f516fa614ff6a6bbfe1bfdf9023ba9
BLAKE2b-256 5a2c1633b3d78ca3d83e29e99259f80d10ba67838daf69be3fbae52832b51cf5

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d4a641c298d4c85cbd28495f3ed5d5f684ad571657943f541065f69fcaa8eb9
MD5 f13fd4ba454b3ec41f8dde99efe8173f
BLAKE2b-256 26d4b4025cc7e102152b43b02ee49251c7b42d304cd8f934949d51fc5f3ae775

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e733a78b1230c2e039136ab4ca05854fb2bc5825bffdd5f8485d03ec800bfc0
MD5 c7d6e42c609dda43061d58b284ea39d3
BLAKE2b-256 68fc2bb1e2673352d937b0bbcea0e35e1e73524a1c4189837c7a934904aa4a92

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d13b738594cfb6fa570bf136f7d267fc140decf5f6449fc8662262bcf1ef0973
MD5 ec208c81078b8d03dde187c0800a9e0a
BLAKE2b-256 8aea3b564e65709f522b4358b017b4ceeb5b71d088e480293567ceb6773e61c6

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3e88bf472873cf536ee8a382a99b0fb1b0b491cae76f5d65cc9b6c0c71e4cf8
MD5 0cde2a449a2b259987b87022acfd7e81
BLAKE2b-256 6fbb5e5944ad0c53846950a375504efda14b58e50264d9443f366172fe3db96b

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4096b73cd694f81833555136bd04e8122391f165dd44aeae67b0197699463a97
MD5 a48b260b5768c5d791a463f0bbb32572
BLAKE2b-256 aadd26e7fad21536efb9efb0b76ba66076fcd3096e75bec7d294bfcb25eb5443

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1342ac1c50346be6fbcfd7417fa7314a8f2f51d543929d214612147e15cb7dd
MD5 592aa63eed852405a287bcbbddf9a5c5
BLAKE2b-256 12a072ebc656bf9ef2b6881da0aeb2c39ad6fefa7c186b46b9a19d6b7b4e7b23

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 838ca77209ae27ca8d097e663ec652124a4a69dccb787e8c258ca5488037847e
MD5 6bf846f34c992ddeccf2bafdef5b0e87
BLAKE2b-256 496cfdf4eb957ba5c68c1b2d14cbf12b9bb74a34f8d1037d6ab45367f1f38dac

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 101ecad638abf0958b6297ebaf6601439352a91ab8c3128cc728792bcb0f7c1b
MD5 2cb4cf570d9d0bfd662d66491e890278
BLAKE2b-256 72ea429294b438985a578945f8a2e7d741b707ab13a57b24c3f845ab797f2b95

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d819940120415cad9c3c5092867a0aa099ccebe5b4211779cdee24d4ca250374
MD5 8e08a33484dd6af2cedbbe276ac3cd8c
BLAKE2b-256 b59c1184b0398cc737eb39eda93019234fc9a4dee079988fe81c2b6ac3686a84

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9223fcb799cd3d84a72f279e3e8f52bfe4521069f83ccedc28f0b62a420247d
MD5 2d08f08333b0157cd9c69972de899756
BLAKE2b-256 bef3a33385e6ecfa6e954e0b4c426c072203261a0937a1af37d02cf078efebcd

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c70559e09caef12a49f7de63ff164d19c21d471900ef97a20b21ec17c2b7128
MD5 23eee41fcd106fc13614f15fe4b267df
BLAKE2b-256 992cd36ccb4c238db89e106f43222a0d4bce1cf95ee66a0236bf6d7977bd88a8

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be1e7398a121be780e7f824262c4911a5c3244f91d4ab377f0f377a2fe32ed98
MD5 cae06440ad4788c7537867d62f3e80cc
BLAKE2b-256 b7c8e11898591e8b9c7852cc5da14a2e2caf980eb18985dfd27ad12c91e5f1d6

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f5ba3e5d0843b0869a66899784a0272705e9b2752bc22f304266508e6b9a911
MD5 e5b56a16a2a1438a891766197907f836
BLAKE2b-256 5c37ad90f1191cbc77e332a00b78f595fbc14212325a9e7e651ecf8eee903b54

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3fb12b1ea7604e62b5e70f61203f1cf74950b30b3f8bc4cb448aa3c828c770cd
MD5 b3510aca4dd8cc7f9b360aacb2d59f0d
BLAKE2b-256 e2f3a48e8aa189f883abd6b3579eed9bfc4b2a2bf0b1e1da705c7aca447e9f55

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a80b256642dd84011bcd1ae6e5e4acbaa4191719bd6de65a40c1e67000b48435
MD5 afd658f59050e488d8bf50316cea5ea0
BLAKE2b-256 07fd946ad436d1e5703281bb6812a984540b107278494422aa83e2a9c4338983

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1de86fae2a16b86ee3d44070b046d064d2ab0133841cd373dc705d9d46af4e1
MD5 8a57a9d4790b4a4b46b7c8d016fe2ff8
BLAKE2b-256 3efd05886235600cdc6950e68fc646c18b696f4b1f07838e7dbca4078d11c9fc

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 afcb0290529417c14e99b774e22017837cfdd0e39568e9d6d810ec2c34acfb01
MD5 937c083b4518869316f28aec4227154e
BLAKE2b-256 c0d5ef775809812327d083c50e1475e6bdb437c75de3ab55b62033cffe09488e

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46987348f776dc7fcb800692e714fd044ea15fe2453d0b751b9885d61c5d2685
MD5 4b4e648e7f0daf723403cc0b818fe58c
BLAKE2b-256 0131edaa9f7dd61666a3042acc0689eac5bcd620b1a543782c2fe22b5a5fb6cf

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4dfbaa93c1575decb8ea4e17f1e3bede7c55b65330fae810435aa1fe7a3365b7
MD5 657c6db9a4e0446d6fbe2671ef1659a7
BLAKE2b-256 5a93d0e4c3a76277fc490739ece09b3d9cd15e6647c7e59907be3b5f0ca50601

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a5e92515323df8882783cb3681aeb10445b6ea90bb589857d32505ed2893187
MD5 271cba418fb057ea756b259c47e489af
BLAKE2b-256 62076c259b8837e77d2f0a0266a850085616f53077860f51373e1487bc8e2080

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47286c1cb80eed4b3f47a2d18f62aa7946267ece423888b6e3abcddc80169d62
MD5 c9560a919f94612100e70ae464b2d4ef
BLAKE2b-256 eb07b510b7c03e884bad3098588020a4b5738ab68e2916244b344e565f2d8232

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e6695f558e4005121dcc43912c3789262116524d2bfaafe4f022ac8e118be97
MD5 91fe8852a8851fd3718ac7e6784f9e34
BLAKE2b-256 e2137c8f598757882be349bb2ad23f8e19e816463753b59bb5c360c31de12baa

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2066eee9d937cf25d36decc99005e550cec900b64998015364bb2c4911ba8024
MD5 538646e8235e2fb253848cecd4285d5d
BLAKE2b-256 55b5836d9364088f1903f6bc486196a6e5b42a5c470bb5a5804807cde6c66247

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0810402c644a1b21d5ee554cc73aa6f38dc7821bee4b8edc188ded88d95d55b
MD5 a0fe143728339d085d1a3c65d5444559
BLAKE2b-256 cc6f28f095132fb99cd8c271cf4c9d83d52723a83c215bbe5e0e00f18ed0a87c

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4d3f07671b15972bb468e5f80c14af95ad17cee6f66e05c3506ecfe5e3091930
MD5 0a8168a431e2cb22966a19ae47600b13
BLAKE2b-256 af752c6c0c91866cc1090d9412827fcd532ae4832b3cd3d8f8f63c88523a5e01

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1db195e905ce278d68b4c5b1d2cb223a5c6440dfbec9f188498e8fa5b524a151
MD5 6ca6d83beb013c7efdad36501945ece2
BLAKE2b-256 f50e7fb45fce9c815921b5ca07e3bfd047114e9abdda06cfa8f24d281e127003

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac0f5b785bfd293f7d96b2fc7e5d296a7283ff2201b1c6e34e95b00a7f87320f
MD5 94832fb920c8e9cd9fb7270d234fe718
BLAKE2b-256 03f8760dab1a6850a4df5116b64516f4a38da40df6045da91edf51ef3091371a

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7e02109c2097f93403b602b4eb4e24cbe37c8f8683971f706e57a830aab6ce0
MD5 3498e2aec3a5c33ae5ea6ab9fe155a81
BLAKE2b-256 179ecca13843434afb7194f2cf25a0f19b4d9e559e97dae617050471da20eaa9

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9f2c07122b093c1f412a4244e82690f12040c6c72685f4b91672deee74474430
MD5 672f75a502165ff2b8a34eb01447bfe2
BLAKE2b-256 db82a32d736b5e761487f784f26b680e104403ce932fdf300ec9b55bb0521309

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1fb0339e0d0ceef45655ae0cdd10d720829f48370fba4da32c432b991400d694
MD5 b9e7ba25493497d838a92cdd83b0a2c0
BLAKE2b-256 d5469d23cea0745f58e95b6bef0047a48d12611d27c74536854dc8d75b68dec1

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c69c70a4406012498acfd6c8e3de195722eac0d3f663b6517f89c0d0cb0bdb1b
MD5 78b2ae5405d16c4b0f9b9ab19336bf47
BLAKE2b-256 fb55ce89f6e847ff6f6430383be68f4dc9e5c9ecd12876fb5418bf84931afcd3

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97d9e8bbcf87d323b68b502c2184e01ae75fbe49997f23e1d13c40b10c511510
MD5 1ca4eca0a905cb654ef76514c1c9ad61
BLAKE2b-256 94e908d6b83e31c74895c3c26ffd40c1ae8d755dc0c15d918dea291e87b0cee2

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 086f087893d32abbc60454c9e1b72e2483a2cbfbd3d9adfaa9c08f19730f564b
MD5 35ad2ec4654846b872f867eca0b7a9d3
BLAKE2b-256 0089a22d3bafc50c53a7a4c88017c1dd3fe1b15ab6eb6f9c8bfadcabe4bc7ab7

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62a55e00f48cb37b9e6ea1671892bff7aeffddb3f91330d204155d573bb95e07
MD5 fa6584bf9b963de49285086870f50c16
BLAKE2b-256 9451c3c59478f6f703117c1c41e140b121d734e525ce679d3fe53522c6dbad00

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 031dc903ca9cb58a62de08657633531271976355f6da8122d691664052a5526f
MD5 5912762c67ffe0d895b3747e1cc497fa
BLAKE2b-256 19be77b76192a06e1e648d12720eaef99a04683f7819bee6b9a9fc171c26028a

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e62ed1838c2f19e7023533f74ff94657c14abf05698475533a0ea99fce5f464
MD5 b3314bcf088ec31797a186c829fc105d
BLAKE2b-256 fd774bd3d22585cc98492d5ffc456aa9fc694132b4bfca69f465e28207595407

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 962e9fce43306dd4d413139566336e823919c717d81ddaf967c1a3d5b95ee0a7
MD5 67eb7fa2e2c3acd14783bbdfe877d356
BLAKE2b-256 47d4380897d232165157d74cc695d5174d6e726b3997fa780badc89a1d4eeace

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b46713aff0eb1493bb099e338937749a7e8e8ab472864cfbd89f273e4f8215d
MD5 6271562b50f1d070f4e5bf53e61ee0c9
BLAKE2b-256 255b0ea44d545eefda9e21f1fc066d304a190a35c8b15e637007fe26f0565fc2

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14c5518dd737eff3f86ed09caae7bef166b37a8bf6799ae8a75a8e818e988c9a
MD5 b9b37960c8cf679221fc694d53bfca6b
BLAKE2b-256 84fc264fd9c0fe997130ea6b8fade8d5d26de4377ccd769fb0d5e2487fc5ea8a

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 64fd1c992fef0afc64b26d6ee07217158ebfde888204ac45a7288b63207818c3
MD5 bc26a3e86f9d3ad00a822a0229249818
BLAKE2b-256 b01c82f847bcad847953b00e2d034b5f2c5aed9e683f22834e9c58fe97b6d80b

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c20dc6d5b081f40cb9890bdd5e236955d212d9308af22b29c41dd43bab74f926
MD5 8c043b367f12dc3de47b512f1dd1e440
BLAKE2b-256 31cd13febf4cae4c3945db130eef9ca88c540c89637b05295967207c0122072b

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a9a83cf35ee532461a21ae4fe68fb6625e0bac50e136cfdd8bf9f00b26e232c
MD5 834692a1a03e0fc462fc9f19dbed5e87
BLAKE2b-256 8561b1bbab9378bfae3862a96b4c25b460e7a05bea94621c08aa789aa6cee904

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35f55e7dfbdeb50f4ad92b0f26d3c1abca81f250438086486d424675ce481f3b
MD5 97daf16e48b52cefa549ce70171f4219
BLAKE2b-256 cd16e34735465b8b0a670867d02b2dba0c06569449ef6c4fa1a756fd425a58a8

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2bae2b0397248407aa75c98a5c8dbea3d8462170f9458521ab089a4c1cf2ed05
MD5 ebebe5f1818142b1ee8e908f4e1cf0db
BLAKE2b-256 3ed429feee7fdba70e7e265a8b6ea234dfc9b503dae3822279b09be7a013185b

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87487c025bcd364f052434cbd69db818c660455eaaf1518fa08f9adbbc969c15
MD5 8980ea899c8f797adfd6047c74517d05
BLAKE2b-256 a5ea5fd9e4af8826d3facdc9280465148763695956977f94837f72b6ab796497

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9eb6a1ce4612e9b15fa5b95f57a013eea1b617325eb60c1b0d067c27d7a03229
MD5 482e33049781966c7a939d020aaa4a14
BLAKE2b-256 1c781d1429ca112bb2a48c8630dc6f5252445f002f32c8e5132c33134e637352

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 497f25608badc36ad128559f2b2e8a38e8ed7c6397833f281dc13834939bb741
MD5 422efbc60a24f8de7320e722972020d3
BLAKE2b-256 16cc69de3f391e1abee50fdbe9ee39fb395fc59d714123df7d3262bc80992bda

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 03cf8a57fce0b0bb27f416e15dda5dc2bdfaade1474b51f1abee16d9ee3565de
MD5 7063c4966ae3aab448734b8897685b44
BLAKE2b-256 16c11bcbbf522f048d183b7f9bcc0e979e7f865fdbbabe541883c3a84b899a92

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8fdea1d7b8c2a517518038179eda75af0535e2b0d25af68413e54e639196ac5c
MD5 0fcd57a2e17fb03c01e9c89d6c0127ae
BLAKE2b-256 69c5b0ca913ce81097e22bf92905ff4fc4793f60017c4547bfe435faf5e9090c

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9178b071bd59201e3e1f1465ad1e1cb97b4ce477e22d5e29e4c977803813502b
MD5 1aa1bd954d3fe9e8ddf95a53db3b47ef
BLAKE2b-256 6136360b8faba51062b7ea485466587c11b4d67df3c2d6ab4bc40ace7e53ca81

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4189384c8eaeaddecebcb4275fb9b2f948ffbf881d488301ecef7996529269cd
MD5 1b7d4b25995cae89e1a4fa20b4a62930
BLAKE2b-256 a561cc8c0fa424e800222b397380dcbe6a72e0949e6ccf878e3c63abcfd8b909

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 588e28b709ff070fc6a4bc67a7ff1b34682d04fb3c390b567bfe727bd950ce78
MD5 cca6c5285a0fee0c9531c20f5abefa3d
BLAKE2b-256 5ac4d4ccd53c6403401b3fa06ed031be03e24b45a437cd8f9a3a8cb1a6fc909f

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3099de4344bf5666e082d6885410e58ca6dcee5d471eefe854e41d687441b8ca
MD5 da7f14bfd804c970ef5ac333d04695ef
BLAKE2b-256 4ed9fb3196d8cd1d7c01fc71b7e835c8177b259af031f06b9a5c480b7e669806

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ef9952eef516cac5aac08e30d19160c7483dd82cb5fac72a2abe78403dad530
MD5 e2fbd18176b4a69e8e8c97dd6e902bb6
BLAKE2b-256 0a316cb041659f41522003186ca8b93d64e7c985134ce7884d47fc7cc1a93ef3

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8d61a2697d057dd1c475257eecb340c9052b10deaf04bc2360e045325636635
MD5 f1a0066bb8cc910aa3f7e3c0f51b5eb3
BLAKE2b-256 7dea8421512c871e3011ab51b8c21832598153143135d3caa8c6ed728b3b69b1

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b7bd119dec362473774518f05004e14becc71200e5bcf19dc23f8bef0991638
MD5 1e9d74d68848df31d875313545532680
BLAKE2b-256 5d5591b2a41811cc28057e3a14ce01b5c05aa8d45eae07690548a8846e68c13d

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 488f56d7964a97bed23e1b056dbee919b1014d3ab6c3e854aaea0f6906e09446
MD5 4e20450867a8c5892860b0daca8e7026
BLAKE2b-256 96845463541f5d65ae8998764d14cea3e8fb5e570ce32e3b1a89b2ae505acb29

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-win32.whl.

File metadata

  • Download URL: photoncube-0.3.15-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.0

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 745165afde57b9a8c947d0f63b5ad71d921a1b0a88878ce9888062f77a560d98
MD5 3ef75d69afae1265fe6ab5f3cc40b90b
BLAKE2b-256 b1b53e1421b7035cbcb7d5b8ba5d35848da6f2fecda4400028d79e02a3fc2f8d

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d5140cd12f2488bc80db70a0fb0df22c4b8ef190aedb75e51a1846275815403
MD5 5fc6f2344696c7cf334fd81eab6fdf8f
BLAKE2b-256 62d21b7920fdc6498f946f4b6d942715df1cd0af6d7579b14c7375d4c422ec8e

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a01983ff9e4f2fc458fa5270b255faedc8174d99b82baeba2fd51c73220adbb
MD5 162aee44ac92dc975ac010269066d091
BLAKE2b-256 51f36743ec82e9eb416b1286aa49682929f52e3cfe66d0416dba0b99337d85c1

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be8ccefb96dcb7da83047611ca273fb83529345caba43d23caff751003018ed2
MD5 28b35fba639a5922a8e373523b5266ad
BLAKE2b-256 f57d07e4a98efe2835208dd1a52e2043b5c92eb48a4a86aa2fec873f0e42872f

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a54e667dad39670fcf460a555fa1db4c783312df867ad407c5dd1903be2a2a14
MD5 2cd8c2d9d3ce95adcd6c5c7b64c1294e
BLAKE2b-256 c48438bc3b2bd6cd718d90587324bb6a8d0a1cd83ff03b0b8e54228395bca3a5

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0eb73c787e503b95dcf74dc015f84c5d71aa9367a56cfefcd44870e4e0f1bdaf
MD5 b5923f79590b59252b77c1d89fdd7b7b
BLAKE2b-256 097382fa81669422cfdd173be2a0e0f3c39b56ea5f9a796bab0c9273b43080a7

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f2504a5c45001ea4355d20c649db9ff9eebc07d6ad66b45f3f167aea9904d66
MD5 e579995c4f99315e914427445ca3ca31
BLAKE2b-256 a4fe31c1c2563dd12f32aa8e5875063d4834692f81508d4d8d32420c86398700

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc89952678b554167be665d506bc7e471de98b28496437588220d312b52400a8
MD5 d1088bc3d7226447e1d47eec79c7c973
BLAKE2b-256 94048822c6c58f80c438d890ee37c5b5cdf8779e1c094cfb451d77e21451e8b0

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75d7183368f0e4c761c48e1b121b0e71f69f2ec00ad4ea319505406c046c927d
MD5 c4e0d8f6313ef5ba6b8b75fa364cbd87
BLAKE2b-256 60ea950a8077f6f5b57e85a4ac2305386a610958cfb82e3b8e4922285b7b1380

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b98f1bc2dd1402284d228c07bf89457b5dd0a2fdabfa64377ec27b0a37a7331c
MD5 b47ada46c5c8aaf2a745557f094a9e39
BLAKE2b-256 c0d13e53ed649ca4d1fe0911b6595f846b0e06f2b3c98983a5721bead7bcd1a6

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 26cab15b04a61843996d4731e820baee5e1c3f532d1790b3b5bd7b0bb44a04e4
MD5 5fdaf7671d0a802ceec2dfad74c92acb
BLAKE2b-256 156d7259fd7ceb364ef91a8eae0494b664d02d8520971855a24e962e8e6034ad

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05edcb97063d0766cd2b03e4949480fbfadffc09f6f4c3b4cdc55675b57a6660
MD5 d72411c2ba81f70a0d25a7cd9254bd53
BLAKE2b-256 b28d4d9445df88e9a611bbac02d2d69c28e8d19eab15281a880d2472d87eef32

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b2bb77a6c1f1c05b8aae3899c8fb2895748be0ac23860e4ebc0a40a860ddab8d
MD5 5969006ba416c5105693d5154c54cf29
BLAKE2b-256 c4d639e66feb0ff70fc06464dfaad0e190564f5c8049757671e2ca150496a087

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b8312cde9f705fbc8d44036d1f354cb2ecb37c5f440f1e1b736a76d37e999dd
MD5 a8aef36853c8307c82f029260febe5c0
BLAKE2b-256 4bb7d94c50f39031d7016443958f9c460526ad32da0ac3782d047dfa5f0086d2

See more details on using hashes here.

File details

Details for the file photoncube-0.3.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for photoncube-0.3.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c521def80878ccbdecf61fbd5e2b64681ecc8dd4fe7a77025e88f2a3f00b000c
MD5 c116d153b69ed10d6937242e24160b8e
BLAKE2b-256 e1f738cb3141d8c2b7ae1f4c73ce972794f9b9f77e36428482b3ac048de4a545

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