Skip to main content

Calculator for Circle of Confusion (CoC) to calculate the size in pixels of an area, used for depth of field processing.

Project description

Tests License Version PyPI - Downloads Python Versions

Circle of Confusion

Calculator for Circle of Confusion (CoC) to calculate the size in pixels of an area, used for depth of field processing.

It's built in Rust. To use the library in no-std: enable the no-std feature. For the Python package it exposes its functions via PyO3.

Add the project to your Cargo.toml by using

cargo add circle-of-confusion

# or for no-std:
cargo add circle-of-confusion --features no-std

Or in your Python project (managed by uv, but it's just available in pip as well):

uv add circle-of-confusion

Usage

The calculator is able to calculate the Circle of Confusion based on the provided settings. The size in px is the radius of the convolution. A CoC of 10 would mean a diameter of 20 pixels.

Output:

  • + is for far field pixels
  • - is for near field pixels

Modes

The calculator supports two modes, one is physically accurate, the other lets you tune your own DoF size.

Manually

When no camera data is provided to the Settings struct (just give the parameter a None), the manual mode will be used. This creates a smooth falloff to the focal plane point, based on the size and max size added. It will gradually apply the size based on the distance from the focal plane. When using a larger size, the CoC will be increased. Protect can be used to apply a safe region to the focal plane.

Camera

When the camera data is applied to the settings, the camera values will be used instead. This matches real world CoC values. Lowering f-stop will increase the CoC values, just like increasing the focal-length would. This calculation is based on the CoC algorithm: Wikipedia

Examples

It's really simple to use, you need to assemble the settings to calculate the circle of confusion. The interface identical (besides the obvious syntax differences) for Rust and Python. For example for camera based calculations:

Python

from circle_of_confusion import Calculator, Settings, Math, CameraData, WorldUnit

camera_data = CameraData(
    focal_length=100.0,
    f_stop=2.0,
    filmback=(24.576, 18.672),
    near_field=0.1,
    far_field=10000.0,
    world_unit=WorldUnit.M,
    resolution=(1920, 1080),
)
settings = Settings(
    size=10.0,
    max_size=100.0,
    math=Math.REAL,
    focal_plane=30.0,
    protect=0.0,
    pixel_aspect=1.0,
    camera_data=camera_data,
)
calculator = Calculator(settings)
result = calculator.calculate(10.0) # input distance value from Z-depth
assert result == -11.93532943725586

Rust

use circle_of_confusion::{Calculator, Settings, Math, CameraData, WorldUnit};

fn main() {
    let camera_data = CameraData {
        focal_length: 100.0,
        f_stop: 2.0,
        filmback: [24.576, 18.672],
        near_field: 0.1,
        far_field: 10000.0,
        world_unit: WorldUnit::M,
        resolution: [1920, 1080],
    };
    let settings = Settings {
        size: 10.0,
        max_size: 100.0,
        math: Math::REAL,
        focal_plane: 30.0,
        protect: 0.0,
        pixel_aspect: 1.0,
        camera_data: Some(camera_data),
    };
    let calculator = Calculator::new(settings);
    let result = calculator.calculate(10.0); // input distance value from Z-depth
    assert_eq!(result, -11.935329);
}

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

circle_of_confusion-0.1.2.tar.gz (21.6 kB view details)

Uploaded Source

Built Distributions

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

circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (446.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (473.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (550.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (455.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (397.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (292.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (446.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (473.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (550.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (455.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (446.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (473.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (550.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (455.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp314-cp314-win32.whl (128.4 kB view details)

Uploaded CPython 3.14Windows x86

circle_of_confusion-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (292.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl (445.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl (471.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (549.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl (453.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp313-cp313-win_amd64.whl (131.9 kB view details)

Uploaded CPython 3.13Windows x86-64

circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (445.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (472.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (549.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (454.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (275.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (291.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (235.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

circle_of_confusion-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (246.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

circle_of_confusion-0.1.2-cp312-cp312-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.12Windows x86-64

circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (445.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (472.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (549.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (454.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (291.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (235.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circle_of_confusion-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (246.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

circle_of_confusion-0.1.2-cp311-cp311-win_amd64.whl (132.9 kB view details)

Uploaded CPython 3.11Windows x86-64

circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (446.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (473.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (550.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (455.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (292.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

circle_of_confusion-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (246.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

circle_of_confusion-0.1.2-cp310-cp310-win_amd64.whl (133.2 kB view details)

Uploaded CPython 3.10Windows x86-64

circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (446.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (473.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (550.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (455.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (293.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-cp39-cp39-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.9Windows x86-64

circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (447.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (473.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (550.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (455.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (396.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (293.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (447.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (473.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (550.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (455.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (293.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file circle_of_confusion-0.1.2.tar.gz.

File metadata

  • Download URL: circle_of_confusion-0.1.2.tar.gz
  • Upload date:
  • Size: 21.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for circle_of_confusion-0.1.2.tar.gz
Algorithm Hash digest
SHA256 472a1709e3e4aa72513261dd85d9885fdcf859a555ca254a0522e616906995fd
MD5 475cb3b515a12869a2852ec4f486aacf
BLAKE2b-256 54176569173ea8300c10f0176d0cc3aeff658790979a7db68f18a2811335198b

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b506ef6fd8f246b37b739fbfce120fea9b6683cdbcc5cb9de506566142d4a032
MD5 8dd5819dd76ca07168080597469664a0
BLAKE2b-256 567766e37c37bb88d7a97c73ce748a89a8af7d24c6b013f563c7a1deaf8def5f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 993998e7ec876ee762f16d6dbbe283260f231db361793d49968bb045c9f205c3
MD5 e6e8c5e627df9d2e961d27fa53127f68
BLAKE2b-256 6b621b7df37e67fdcfaf50aba8ad1c6e05d96eee098fcc86cc57670d5da373a4

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4221e40a43db15496e004ba1e7387f9de873fa9bd39d83047064284b071c765
MD5 6016756d5d192e2e011ea53f2b53ed78
BLAKE2b-256 db730eea2c33985f13dc77b0e3b8bc1ce409444dd7d6c8529c2b90ee781321e8

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4c814950c79d016d4bfbf89c353b1b0b4ee983d589f764f38b3a29eab5e9777
MD5 3c292c4c3e66325b554d5965b54f570f
BLAKE2b-256 aa2a12b4eb8cf390cd5343f4daac81e0a4df00023e2b17e2cba402cdb47f53e4

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60034d3953efe1c318dff97131a81a8a9138502a6bb7c2be42cc2293f77ebe46
MD5 e06b471fdf171247761226b0c1259847
BLAKE2b-256 051170a2f1cdb5906553f863c94132573526aa96bdda0fd881693ad41e22c44f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6102a0dd8e3f65e7b9a2c7bde5a332d6d1d96928783e2cfc985b6314bdab442
MD5 a7f97199b752465c3970fa7e7c6dda73
BLAKE2b-256 9d8422f825d3af826496b7fd4e6e7794fbe3349ef2878cdbb786d2bb355c1d2e

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e584e310c5e2cfc8bf1e0a6673b8d52b4f0a0b347e5cb809c502bb492802620
MD5 a13330e2958ab0f5c56ce97a34d2b545
BLAKE2b-256 4aecaaacb98e373838079c7f31440a45ae7c84e41b79deef8f01a41b6b8efc7a

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20230deccadef3a8f7da1d40bd650501b2e3faf784b0ee7b79edd13bf3b6e536
MD5 7bb6db155ac6e7a760e592638ad8f242
BLAKE2b-256 652e888594fa990eb4bd789545439afe90b3b267af504436a2ad09f08d8e311c

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a9fd0b8c67c320865847b6133733da2836ee1924ffdd761199dfa125d74ade0
MD5 d6ea129dc5c669c14a2c22457ce3a273
BLAKE2b-256 1885e8a1046cc605ff518e64ea60d2d471a225c5d086740e67931fe0a11937b4

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c22d8db5af46074861296c9c8890c5d87b91a7f9b616d7134208ced452b7410a
MD5 25140228e2507d626e7c0460dec956e7
BLAKE2b-256 b9fe0e099f9695c35c6223fc63648aa1504215e768c3485363000639e6bde3fe

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15067d796a7883494b99c93984525749fdf66d964e6fc008136dfb58be6349d0
MD5 dd23cfd568416219da533fb4b734680e
BLAKE2b-256 12923b0f0f33da8f2370c10ecc49248518c1c2ca095764da705a7a1502ca8c4a

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c53304d0cafaab56e8a52e1e1aa291e7e34aca8b1b734e43af5cecc2b518b790
MD5 68dfdee9ce458826a1ce91fa44b3c7fe
BLAKE2b-256 c49824c2a3fc232787445db3cf6bf33aac34821e315cd3909b5cf0aa50052e66

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58519eb104d378e89b2eec68efd8cc80efe26c1eb7c3b3fde3a1c4254046dda9
MD5 adb8db52b59153e9c72411537fec16be
BLAKE2b-256 c9893e8577ed172788aab8178c89cd31464592f1bafa70377ace15b5b7dc90b5

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f0dac439dda3bac4383e355ae9a98d4a9dee9449d4b00c008348e40ec924fab
MD5 3cf32a7029459e768eed048dd39e13ab
BLAKE2b-256 2d03d4163b1e9d829157957b81e46d3ee592deb905410e458dd2e8ab4c831dab

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe01bebbb63a7d694acd38aac13e792a08e236f7f38a31aa20d8cf1f838c8843
MD5 4b9b85d6707b5ad4307ad3591334e5bd
BLAKE2b-256 5143520323c22ed53533dce0f7a6ca0b3044c0469f6abb66b5433e12bc6073c2

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77cf74df188e27c8d5a1b11d5e44ebe0ab7c934c2d3fa269dc0011fa8564f1cf
MD5 1d479cc9e72dcf47df99c7ef42c4216a
BLAKE2b-256 0d4fd57aa13dd4f18fb9dd3c340fdf03d5f193e8cb8eee72ce975918e0dda5f3

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08687edab23eef37a4f1a7c0b5757ba284800605a2446267cce325017c3f0bd8
MD5 3d0f92128cdf5ca9eeed55e5ee5781c4
BLAKE2b-256 0d101a5f9bc439161725dad1af2ddef37d3a1551bca0de7f98c14730dea3eb44

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5cf2fcf3ad760b84b929a5771b061abed47df58e189eaf1c0512df156a646a9
MD5 f6615ce0ece0f6e6396b742c74145294
BLAKE2b-256 2971226ba3daadb8b963b134c7c49835f0f2668a8417e3d3fd312708018f3fba

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b6649e191e8c999985fd5c294fe90d168ff4b0da24227dda9f3d2fdec16e06c
MD5 ed236148bcbb07118fe38b516c38d49b
BLAKE2b-256 cba787174298c08cf99e6ff486032866b9f6989484d0843d12d0d75b442ab49d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 957086d05f03acff454132a416d61dfa574a4805cc10dfed6436816df3b79285
MD5 a0301d034ba8cf5d4a0b6f3f791f759e
BLAKE2b-256 19bcf81c920cb62b431e93484a99b110cca03bdd0ed6feb86ad3f6a8554c4e5f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d13653614b5d18b003c31bf99d218ccb6b1629ecc4146602b0b51af784d02b44
MD5 3f2508282f5a8c7bf7e9268badf59fc6
BLAKE2b-256 e34bde3285fcc6cb8515bd51b2c3d7eb5d269d89d87795acf4ec9f9d6fff1aba

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2adb5987f870a2b32aeae55261502028715d31c9dc73c93d3317e4f928aae418
MD5 e1cbda47e2cc6d5d1c807e159ff8e7d5
BLAKE2b-256 5ced4f9cddf38adf5a284cda57e2ebc5a789813474b223c306368152b12f9ef9

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b50fd9826593607f9c5d9b46462d69ba1e9b25f54aefe62594c053b8cb93dfe4
MD5 713aa7d09fa761a0772e90ea3cff08ce
BLAKE2b-256 2da59adb4726852d3813cd057c12c8396fda0382c22ea5ea87101668bc02f20b

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c36114768949e9e32df2fa92ba40beef0dc5daa0e124b2c4c0f76ba349704072
MD5 201e8f57c8178e57cddba52ceb422400
BLAKE2b-256 d9d958aee8fa8d8cbbcdd4b1b07b03590e29e6b27e2bdbb0675825b155cda30f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 72896524a4552452b007a6091546c8f093a424da4a1ba47b2bc2789ad16490a5
MD5 c65921e58c33fc8f10a32fd8daf894bc
BLAKE2b-256 9279e8bf11828be01518ce0cda91aedf9391b52a1289c57db1697913e29a0071

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a29a1a0597d8f514d6aec952b31dbd221221949f2d17ec2b78f7303d43940b90
MD5 5a882e49f579a34531d1b09108fc5b57
BLAKE2b-256 1547e2b4d161fd86e16e53d91b84dbabb1f321d21759e3e074269446f32f8845

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f0d235e3b78161d6dff3419e911eb59bdb26c3649952aa13ea94e183029a3bc1
MD5 8ed26af997ba47355b19ac72d8c55db0
BLAKE2b-256 048e8d139d395c27c5d667531a2b180bf99afa37b5bc3a54ab42bb3bcc46755c

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3158e580526f51b7c509297d6575fe246b3b9941922589e9e5385ecbd6c90e72
MD5 d16c3941202136b87637f91fd120860c
BLAKE2b-256 458452c13460dc5f66f82ed904981ea00b7d87efcfae2b44bca72b920c2d8457

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac2daef295c85e9aed5c478eecd32d034dc1a97c085a126704d5fb4b72822c51
MD5 d8a85131775106b5828c059704056210
BLAKE2b-256 5d5aa658742ae43954fc0249b0492cba8feed74c220dad57ae69ca7f8eafb99d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a428b95e8fc8b844bf05bb06e7d9dbe5f51de2421e11476dc806e69f70a2085c
MD5 d38da45b4d2a1630278df1c9faae2604
BLAKE2b-256 3483d9cf6447db870132ab601454a773f75f37a8dc0cdb8fc87ca172ec5b017e

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f448040ef62945e4ecefea3105658e9587193e5159b4d9c8746106b86bf8cf7a
MD5 9cc2a4f045b38fdd9cfa41e9cec29adc
BLAKE2b-256 c2dd185319a4b7afaeee35c04a03fe13546579840f909be7fb651d08a6260d1b

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c6542ab2aaaaef352fdbf4cc6a2b7aaee4958ec3c4a2251d3a2506e73294415
MD5 7d0d6099ea761d26a688843b4566f25e
BLAKE2b-256 764618093457a61d051e4137639843f8d8aba0c0f2aaa477a2a8bd8336782d8d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88f3d0c22ed6e72140a6e0510c631906d28f2c112414bae9fde47e0c094f4e61
MD5 c3220f56dd5d348364bec46bf1d82a75
BLAKE2b-256 80752a5280e7bd355b4beb6610654983d18a21d86edfe0a29f17d668fb870a58

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 739a3d79329016e2da0c45e06fd6bfdbc4a7db93841d8881d2eba292d6314313
MD5 a1063393eb919c1a3d397fdfce6c46e4
BLAKE2b-256 dfab17f23ce6879806aa7e997637515324134adc64e3736b4f865850af6e335a

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18bddf29bac13015272c327fc6eded0fcfcd888e84dd8d115e8252b66710712e
MD5 3ee5ce8bd252feace134847f787b2e1e
BLAKE2b-256 ecca955fd2e643a9065d29f74ea88a5d841c5a0c5aa3dbfc92b123e41c1f1d0b

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4eec8f4dc65fa29a367cf2fb60e68c849eadda40d6a2dda878bab4fd9e0888e7
MD5 aec76e012ccfceda819f1ad58aab5432
BLAKE2b-256 ec21c7bc3871b468efcc630e686d92927a6aaee55f01a07b606c5d517698d96c

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0313b633ebc8f3a32c445e7f7ef9e26132d289d00ff639cad2a9277df4836620
MD5 076a6750a25d5335346f7556eb5b548a
BLAKE2b-256 7cff43d571a7955bd38eb336a73a50f0fd8db72b6a0ca5705647d8f5ef889b25

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d610781c647f33df207d8aaacb8ffecbce9ad73b4cf7d7231ab9c8715c224b49
MD5 637063ea2169fc83d67ace95bc3ff3ab
BLAKE2b-256 4ca050bfe5048aeb23f2bb75bee285c4b02b762c1d1224173797ecf695dd270f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b6faeb3552f5d82e35b824d876507e9576fef7cb92ff32c581f8dc71414393ab
MD5 b80015f907b8077dcc075a2bf032f18a
BLAKE2b-256 1dac6f0a69d029dd55492432f7487a08b45f6f587007ee9cd40ac3b1798671e7

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b59fc71ac63ae7e99459e9656e1f29146d8af3fb13c1a4f788c3fd510f362176
MD5 fc94d945ce8848976d1503e70d7cfe26
BLAKE2b-256 e25096bfeba8ffffbc73192e59f15443288a1a74e38761712159bbb7613e2dfc

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc9e661675464c310bd2bb24dd1d03c0c7ec8fae37cff2ef32bf6ec3464361b9
MD5 14fc0f0694a972d7a7c74a95504cdcd3
BLAKE2b-256 90cfbc011a846554226916312f8ba6a3cb59ffcb99894fe17919e4f38f1dba3f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a77d3d83de65eb3173940c6ecc52bba520faa74ccc8cc1f6a4f98424a2e3cf5
MD5 e06f654ea9a7174e685d27dfdae44f31
BLAKE2b-256 65c029e5b4d61418ef186e2de43e7a103f575e08ade3262bb46a8e280dbc9cc2

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38d4e07d67bd18b76e6e82c2b593a3ab04555f9fe2c76045e0ae74061949fc7a
MD5 01b422530d851b4d21f50313377c17ef
BLAKE2b-256 cccf4d5ba1c13dbe528255fa24b55add00a354e03cb053e0142b0ec76ea101cc

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 067afe02c9a358e986db646c05fc35a05d28810417c0d277857fea13192e7dd3
MD5 f65f962101bd36208e720146e1dfce1b
BLAKE2b-256 6431ad96b3568df2b4cd230d8053e7bbddd46fbbec25e4b48a503615572fc1f0

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84e55f73b67863ec808a677350e0b0b583279226c0b32c91d60f730e7d03ca06
MD5 25ffd2a9a5e23d77890f37fa70302e4d
BLAKE2b-256 e7206d2ce7669ad47a850315e40aac05683ec77f28002cd1739d2c515fea3aa4

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 320a8e403c7a30dbf0c7454ecfa11a6cfbb2d4eafcce1fc591f23a3431e13fd6
MD5 5c7aefa21e383614280c7267c62bca22
BLAKE2b-256 0304e51fbec04619a74b14e1308168f73bef4b6e3ab6229c1f29e1b6bf9b6990

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a9c3588e7f8d2eefbbb235aadcfafa22dc323d9e3500f6c98b8d2bc32529016
MD5 3d352e363b7ba811bda7d2ccb73b0f59
BLAKE2b-256 b400e6b06ac316eaa02c8abdb87ce4e852f2aaaa82d5b24ab43e5677e31fceae

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72b69788c6adc7d491dd7151936f04743ea740b2cac669d143508553f666171f
MD5 4a49536fe07aca1458f920c4e2ddb7bb
BLAKE2b-256 7157e86d69e50f42beb74cc828920ec1ac4cd175bfe551a1a49b766021717195

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b0ffeb4071007777e8772568491244d30bf243c9ce1d8b07714c97be0ff040f
MD5 a9030c08f6f115583ccc8ef17f0ef3e4
BLAKE2b-256 927449830b0392b3a6c5dfea31632b14d735a534e1744225f229503b8702c2ac

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c00ff3b735053900f5c40056bc70bc6ed7b7b039eb057d8ef82fbaafb46da5
MD5 06251b6dfc3c2a552655f37edf562d9d
BLAKE2b-256 8da43c1b0ab48bce54b2f987279aa7691444bd4c6f665efe129042b8999e8166

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c35424af7e1e0e7e3e186defa81a61e9ae06e4feaa13014d8fdcda21e251f22
MD5 25164447e3b1d0033d95f8ddae81ec61
BLAKE2b-256 2f313b7f2533372ec1b84e99c0b7824f2eea7879e3912d0f0bec6dd9023fd711

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 548e590650cfb4370289da65753d2dcf06f41391bac5b39a15a1d00fd6a55c51
MD5 f042294c6548ece6d8c078ee41045428
BLAKE2b-256 59bde5b73d0fb29d88917a80c687c2d3de94544b5106df346a34e53ba33d95f7

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63bb039c089304ed405fa8bbaf1f9b1f0f1a99be0040f0c644fd0b1a33bc2c45
MD5 43d1b45bf28188c2e962f4d20a22f1ba
BLAKE2b-256 a2396688f04d6a9c9bcac89fc21656bd9b5f0f210d05bad2bc8fff2456d22aa1

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 131e319493f95b30da88f12d3baf435b055e16e6bfd5f5baf8fa23684719d432
MD5 e41975040c25078ebde1114fc99c90eb
BLAKE2b-256 30348bc59b48008a1534491eb021b9016c961b77cb45ac0384e25262e6f19cd5

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bd06080b21abb700191bc6b8f2352e658069c4ee4d35fa4f919c2546220f177
MD5 d8d7d195c2d777cbd80a8afdde102c8f
BLAKE2b-256 89ca38748f41a226f554cc592962dd0f2fe2ae3dc0fb7a069ca69a96bad03fa7

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a0a3c36c5042ff3333509c125cbb54f91e204b8b1d9c2674d52a22984a2c44a
MD5 00374324b90cc03d2b0b1956f5a0c252
BLAKE2b-256 a520f6fc32f7241e33362bfee890278cef5802a3b96b8aad7ac63108cdb5d1f3

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73eb74227d66d2bb00a927812095ff6a9833edf498792c49d531c186b67c263a
MD5 b87b3ec9dea6b8eb5b3e2ac7a11a0ff4
BLAKE2b-256 6badcdb184710451c5c7ec8bb8322aee7ae2362906c77d894db7fe1b9587eb1f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a712a508d0d5429d5de2a78cc767ddab08f0c802a50562c6b29b38a4ac10cd6b
MD5 4bb229595477e1cf5218f4fa92bd5104
BLAKE2b-256 3a4aecfb0e5d73b8c64c51886110ffe8528a0442f2e26a4330d00cca6dabf3d7

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c27367859eebfbe77096fef01e61965e9339012bdfe18a4ee9a2de6d70aac772
MD5 6915c7de689be67f45b73653dd684ab9
BLAKE2b-256 147b5b461e97807c0c166154658fbff3306befa47747d78bd0e288910d7e921f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e253677dd9d4556b76cb58800f6e188cf80c7ed6bebcc1eaa2bc952495f6652e
MD5 158e8855e323aec0d5d80cb1626b094e
BLAKE2b-256 a28eed60eee5710de81bb2122a7575374a484d799707f9ddf6d1a8faa90a2be2

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99e147a49b78e350f04596b49355bf6b6734ec993bc65d81c17ec3dd683b600b
MD5 bbceb28adaa9175b4a83c98b518253fb
BLAKE2b-256 9e649de697f4078c0e4cb4dd08be7f2a0f26ae8e7a85d104c577eb1c75d15692

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffff61a0d6050cd599813775ffaf2a41844acd853612ad0c75791c30a66c18ca
MD5 c14234abb1f93fcaac9110abda2589bc
BLAKE2b-256 5f0370b141c02755b0813d5e99cc7b04da2da4876b61af267cf95740ba279ed8

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 675251db023f76ec2bae39aaddb22f8997a57fe87bfd90a84ffd051d819d9f91
MD5 dece3dbc7b869f34032eedde94acffba
BLAKE2b-256 5a130eab516d84d901f2ba9080d73f8413c0b66007239204a3c2a9ca1d59fe95

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18be1bd25e3642cd7d2175d3572dba00286ae87aade9b12cfdfa3d9a8e2a02c5
MD5 b00c4f0ee24977f5508476389845bd78
BLAKE2b-256 af2c999928775d29f6b490e14b3502088749ddc83a9ed4b4b8d4c21a6d0a797d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47ef7abdac427fb0392613473d77c1370fc07ed4d7be9d3eb068b0a7d2082a2c
MD5 816cacf5271ba0a70734ad29cd31304c
BLAKE2b-256 15dad918c077729b8f9e058438cc544fedd75358765129a484597789a78a4956

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e8847d31161eb14dad585b3a77cc4318b41d465d363dc810ac6011ab087c6e3
MD5 d96d127e336489b2b6d4915cfdf142e5
BLAKE2b-256 1235c525685aae41aef6504feeb9eadb865fd2d0dc65dcc7f09c934206d2659a

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00d96cb42db7eafcf6c668faefb7b3e9b0b14ffa5b04a7d26235b8d5866bb887
MD5 0e1ad00dd2e6cfd85db750995a1201ad
BLAKE2b-256 40d39a648ebcce23d0234c79b33beba39342e663e8dc50f313c5c1db0ccabef3

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33ab8cddd36ba5033f4d0dbefb2c4bb821fc08bc74a07b2aa0f664d21e4dcc58
MD5 9c2f28d369997a802cecfd164edf518f
BLAKE2b-256 74a53c5d755ba6da0c98562cc7629c6e12c6d63e102d87a9e2ddb439b33e3a65

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35f3ecc98a5eddff8cd4e28adc7255c8b9145dabf178ee524e00fb8485394bb3
MD5 857cb4a353287658431872883eb15631
BLAKE2b-256 cc3553c11f04e6f7f1709b9c68af887852c0a4ac4632b75d8e4565b70c0210e4

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04982c5059d21fb504a29765bcf1817b809ef4b26f9e08bd876a7bbe9d7b0527
MD5 e575c7bf24eb543f2964bc347c70f584
BLAKE2b-256 51ef9c9e51e6b78cb6f6f1e459d99f89d291c3635117a61e0b03c6eac8e168ee

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 517ff22444be49fc9336dbe1eb1c139fed51b0939688676f65cacddc6d04a39b
MD5 4a26875c85640d1cf617f521039b3fad
BLAKE2b-256 ca78c8b00d9f0325f87eb384b5d413848890516ed012b0b7d565206031847b5e

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e63c3b25e0863c92eeab07504613d175c6baa63fddcb620580d282765048af76
MD5 ef01d6741ee560f97377367b2ae10c11
BLAKE2b-256 91ec5f6a924b3e737e676ffa4eb220ecfc5e97b1e42ab3645f057fa71848fe4f

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b873a77e5057a244f00d08e1be8adfc7c5328c7957b49ccff12a99b53fd4a5d8
MD5 368dea1316c60843c3b27459dbdee7c4
BLAKE2b-256 024b90792395883ee5890f1aedfdda98590be0e61e00c16573c9d6266f45a001

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd5341695a0ac4b02a9fbbe430a27a00ff382311aae1eef370197d6a8cd9500c
MD5 d57ee2ac1d51d42ea2c0630d75e0a46e
BLAKE2b-256 3a17849818ffa99ba6f00b66a03869bf6f6247e2625d2ae46e2184b5ec5ab2d1

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c993cc730a55e8eacda548b81b8ea5cccc0fa49e10c4636862b3ba550b7e389a
MD5 ba7485bff797e20099d1eea879ef4dd7
BLAKE2b-256 40d2305f9f22f9c14b0b4dc8d4ee9e929b1a6e4b7611236d9252baa81b0d1663

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e6671781ad9bf044601a5b9e46a47fcda7295dc8cdf8b5e9976f8035b5c1444
MD5 7563a6a5425716c855be84638919a936
BLAKE2b-256 d523580ba14fcaaf5f60ca9cb7674c0909609f081ca8f490d0be69e71c5a3711

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 216eb4cfbc5a26374afac6082e32a5afaa604aa5401df486075a209ab3863c02
MD5 2474149850b31babbe04642789e5338b
BLAKE2b-256 692613afaab13f6f6ddcd4da977ec7ffd0959926197ea9a64971e309d4398852

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0658ac141c40f10f5e4f2c56f163da054cc0d135861cae38470546f66e0508e9
MD5 8db0af086ac93491d204cd5b94ccd141
BLAKE2b-256 53231b8b75968e6448e65ab2825b6372476a2e1b36284d495624bc1fc153f4f2

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f44c7c708354e98723471c9fdc66c5c9b7850c1783ba3202697d94e8e2fb3d45
MD5 09d277b76eb7fb1c50e1d160ceb06927
BLAKE2b-256 fd9150dc647e2a61626f42834e9522053740f595dd9cf9ff64aeaff5336e41c0

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e2c3bf82e0895bfe6be2361decb27313cebf550aecca5e3adab978165516b67
MD5 00441e9c82b55fea85d5dff806391629
BLAKE2b-256 002ef41ddc51572c25945c5f84007407df355498e69ae5d81f900bb0cf2c0ab0

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6dbb04988b1a7831d5f086b9264c485bd8e9a4bbbc45c8fc0b9ac7f1f43b4fa1
MD5 a8212b0d22b769e4a040141a70a9b1db
BLAKE2b-256 966da0e6e945326b82a864c0953a07af57b8ce2612d1b621029fe9d46c481d82

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9f65a5146a5b01536882fea22cc3f25b50701a31b2db3fee98135852ec97bc8
MD5 bf43d6768d5319b30366bfda62e1e2ad
BLAKE2b-256 48f9540cd2422c0060af37cba98da011286f60a1893775856ad34edf970343dc

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 717c16bbee2a00cca7eeb28852ecb49a9ee2ef093e4283c24c930570a3304e6e
MD5 0694283638b4f6d747a3a3c95cb5ee62
BLAKE2b-256 b875d8c6c5de09d736c78d8e0a873cd9c93d2a63fb6e682e554d31e50d9aadf5

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83fc12fab3c6639c5e70e33b55c393ae7e972c2dda933f79fad1fe839a73e9ab
MD5 fce7af66f4322f7007e184ea21da5575
BLAKE2b-256 44be773fbc0c6ab1ffeaf3ebb768de5b3b230a18609685d6c00d6aa092592ce5

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0669f1056d2e87d408091e4a8ff65ae6c2533c8c53af66e1a1141695572ebb2b
MD5 42421b20b5686f0a185c35f10f67a239
BLAKE2b-256 82f89a50570bef7460b0acc09f363753afcd1cf16e1c3dd71cbeb6cc5928b3d7

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27387de67a2c83f7dbd3c904c6ff354dce6a6ede5fc089c3b9f408f15deec50a
MD5 54f5d8c6f1189b2fe439b0cc5afae8f0
BLAKE2b-256 7f6d2d19bb96197de4afed2fa48d4b10b531c0c15cfb8bd6873ffed5e4459478

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c20a7b6ef07b5d32c69a9932b341754908bb4710c8f99259f355166a7ea2426
MD5 6ac0dfd92690485551c5ff5679fee545
BLAKE2b-256 544e9095bcb69898b5cac3d21eb5ba9233f1c84acd632f8b4ed4c95e40d3c46e

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c1f9e747e24600698097302e3c5766efbed04d695ec3110065b8edd92af952d1
MD5 db08d2905501d2e1e77a698d04087733
BLAKE2b-256 46c936f102e361ac6e3bb3fe2041cd91843829a44dd37efbc5d83eab45b91442

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 16a1b78a23015eb1c4c8b3f675751447c06ec548d1fbbd213acdb2c78d72ac09
MD5 ef7827623d8b607f4386f48e6349ae74
BLAKE2b-256 582c1ec2cdb4201352f58c1b80f33fc815031d83771cef2e42e3bc6945e85465

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9250a563e5c24c724be13182dd0d46d39ee48d12a0d955db20dff521f998f0fe
MD5 70501a3e8e88254eea4f3c3007239ed2
BLAKE2b-256 3e590dd7f9b0be17284f3d5ecee7f8c315a1ec14e2cd8cf32da96d6d05bedc24

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc82a283ad111c8907a87ccba1aa61ae78544fa781d7648a9811bd0dc719af9b
MD5 38ca42e512b585a401170214c19ff97a
BLAKE2b-256 a775f3d8ad1ff204e60773f8a9622fd73fd77391878e3d2d02f20ed2b6fb0f6a

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4058af42d287863f340382a3b62dfa8734cd4255414800ad18f31f70b69e22e9
MD5 0f0fa9871f8490f7a86e5bc9e25d3c75
BLAKE2b-256 4757574a6b04bfff04997385c849868fcce1d0290722783501fbe2608966560d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d0fe738c19028af8dba1cd121f9743108316115d1a27c52aaed1fa5a0973a98
MD5 871c90bf50e9a0030e01e60433ba699e
BLAKE2b-256 cb920cc003d7f97bb28999074981cea0b3640abc8f895f5569d7aa1e40987140

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e63f509d53a4c3c7d141d6dae1734af0b564e76941c41e65dc757d2842cfc346
MD5 d493b75ffd8b2a795aea67fee5c1d19d
BLAKE2b-256 3c57fc24bb35c0aa5ae1104419aebaf5a7f3b89984077dc573cf78e4052f4ee2

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55f72eb5cb1c7444fce5aeebdea5ae6ddd401008bf74a7688a9be1da6bcc12b2
MD5 29ad13d040173eb63905dba2719cb36e
BLAKE2b-256 8dd6a83a0ebaa59f380e7a972166fc2233e438ee01e1d07e18db151d192f9318

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 441052c213dcbcd213d7a7d0c0c0d38d33c94950b8cec7087a8893a6765494b6
MD5 b953c9cff6ea7ca3f702b012366dd716
BLAKE2b-256 7c2bee620664dd273cc5a41b75e118a5c3104a1b80cf12942b83723ef7e5803d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6dbac2ba205523fe44bec6ac3c8b071f71e2e38d239362d165fd74928c24f72
MD5 455c56047a18ee7df2170856f273ee2b
BLAKE2b-256 600c02e792a51a434a29dc375395d59c317be9328ff0d72fd809a9eda8e7e18b

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 155db6d9a8e1f4089b86fba00bbbed5b138f9e49f311f62a9fcb123e68b7d227
MD5 d34154b0ac5fa54095f3ca5f016addb9
BLAKE2b-256 ca24ec42e356732cfc6c2270be2b250bf8752fff46173a2e6345ae711d41ede5

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64bf9110e9098505b5f38d9ef64fa95ee46f5082150bc420d5679ecc82dd2b1f
MD5 42b0492cf896c56bdf289e28fa84518f
BLAKE2b-256 4a6fd6446e27e005658f3e83df018309032ddf785df4990bfdfafda696618a8e

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf5ba87c1310bb7f5068eba04f08acead84b8803e9fe720292e6b9a9cffcb235
MD5 f157ae77deee0cc142db6e49e5ba5f35
BLAKE2b-256 8c50529f7234288080c0e6cf48c407fe42e058c2b617bf09881a63be45eb7bf9

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4f9c460f0b7e8ba0a558ac2315cab185b62969aaa0a00994e759b2e089a186bd
MD5 4ab2f52e013c10b4e07c67cb8f962d22
BLAKE2b-256 dd27b9bf19453cc53d7f9ca297360e1466d357faf2e3f5ea5a3b124fdb427f59

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e02f62c69511e2e53922c49b4b1bdccf5d393384c2c175bee8eef6be0d263854
MD5 965293c87b8ece7769a798254d0beeb1
BLAKE2b-256 6b8e95c676f4554fa1ef5a87ae528a742ad2582d0f34f348faecbe9e601d3579

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27503af872927ef30c2740956b97ebc5a6787963b12c532c9308dbb6cb39a4eb
MD5 b3f4239a0741cb3d85f60ea650bf906c
BLAKE2b-256 1e4401bfb8684d48410ac82b8b63913ec13625ffed7c4d97aa2466eac91af6bb

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12579881bfe6c9bcef1a98397190ea96decec61c03aee99c3ac4462e15bbafdb
MD5 1a63964f4af1e2033454044e94f4df7f
BLAKE2b-256 f611bcb0cf56d5e1a5c94542eafbff88eb3d54f3c1cec934a9be112d3baa9f2a

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cf6d9eb22dffab471bf38d51793d661edd4b23b0e73974ae38058c759119c66
MD5 09c6b4e002e19301b1ae5d8eedfbe75b
BLAKE2b-256 a7a996632226de93a0baa1b6c94921934eacea637034903fd1975d81235b9c0d

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a30f6872f7788bbac5f6fa96d6830647b173e8332d056c6b69da8ef126d11cb2
MD5 7f4326530a25f49db817b71f902e96bb
BLAKE2b-256 e14d73744b4d88ed9fb696beb21ab1a7c220bcc38d6f475d1d61a48ce2a5baa2

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab2430a6367c3ff75568a975151b9d1f45068475f119b7ab3cb83b556d5ad024
MD5 edc138e103c460113a4a522b1ecd72f8
BLAKE2b-256 e6e0b044c0179d05eed0f1fd6be54e0c3d9c9f3a1e6640ed7bd9b5da63c0184c

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6177b8a9418f520b31e78916f48c9117259d76f2c0976a1517204f1493bec6bd
MD5 ba02b2b29579b2f39582b1c16228bad6
BLAKE2b-256 9972ea3c2b833e10db11164312e86cb6f7c70ab22171025850a8464d94ee4406

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 618d718b8c46adbf62d1624c6ba655392fbd6c1846c623bc52f8175e96ba3718
MD5 a32f22531692e0681f7f980151fedc47
BLAKE2b-256 3c95177099b681fa0b725e621fece375ffff4310163c82951a9f0f844d93ece7

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