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.1.tar.gz (21.5 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (446.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (473.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (550.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (397.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.1-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.1-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.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (446.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (455.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.1-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.1-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.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-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.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (473.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (550.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (455.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.1-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.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-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.1-cp314-cp314-win32.whl (128.4 kB view details)

Uploaded CPython 3.14Windows x86

circle_of_confusion-0.1.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

circle_of_confusion-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (445.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.1-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.1-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.1-cp313-cp313t-musllinux_1_2_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (313.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

circle_of_confusion-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (445.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (285.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-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.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (291.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

circle_of_confusion-0.1.1-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.1-cp312-cp312-win_amd64.whl (132.0 kB view details)

Uploaded CPython 3.12Windows x86-64

circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (445.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (472.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (549.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (235.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circle_of_confusion-0.1.1-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.1-cp311-cp311-win_amd64.whl (132.9 kB view details)

Uploaded CPython 3.11Windows x86-64

circle_of_confusion-0.1.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (473.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

circle_of_confusion-0.1.1-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.1-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.1-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.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

circle_of_confusion-0.1.1-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.1-cp310-cp310-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.10Windows x86-64

circle_of_confusion-0.1.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (473.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

circle_of_confusion-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (550.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.1-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.1-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.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-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.1-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.1-cp39-cp39-win_amd64.whl (133.3 kB view details)

Uploaded CPython 3.9Windows x86-64

circle_of_confusion-0.1.1-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.1-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.1-cp39-cp39-musllinux_1_2_armv7l.whl (550.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (456.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (278.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (395.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.1-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.1-cp38-cp38-musllinux_1_2_x86_64.whl (447.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (293.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for circle_of_confusion-0.1.1.tar.gz
Algorithm Hash digest
SHA256 6c98ed3892efe1a0e7d22588aaa3c7d1dff673609f54e8e879bdad5374bc1f14
MD5 0e9f78ac3c34093ba61ee8578ab98688
BLAKE2b-256 e09a44da6ae0a057639060993d563c3e13b65debf455c5c776859cdc45651695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d95f4eb4f73cf2bd13c9f587e7640af842a8e906c9b99b731c20350a9e4b353
MD5 158efd262f5e0f3d89415fbc844e1dfe
BLAKE2b-256 ef4ae74c1b867856bbbdd1eb32293e68599b227e96bab16dd8c6c22f7bd1c3e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8822842e58d0fa72f00b94dc728b407b5f9efafa8c7ada1791ef6e4f678683bd
MD5 571dfda1ec9f38e4c08b4af1ea2d30e3
BLAKE2b-256 fdabcaa5d1ae38daafbbd533feda93b37fa56f5e7fa1bd29c06fe91fcc59cf52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab9f8faf662c594bec2711251752528669e88169e122dee7677e01d0acda32a8
MD5 ded03779de21c4d8c615b5bac37a99ce
BLAKE2b-256 05e71af6f89ab8dfcd8dd67f4c82867a2af27c28af6cafaceda2e7efa8d97cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33459590d7054962075bb0cceda95b4136a66a5f6e1fafcb225b5e4a067570d6
MD5 6cb4fd6e8f000671c59d01e9997f4a7a
BLAKE2b-256 17b7f2ccd1c968d1a0427e681e1a2edf34d4587e30495ae1a1be97e381b6d644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f104116f90d5d9ddbba01dbb1b0a645c7facdba67af8b963b550e04bc2ac807f
MD5 09b8a2f348b4aae1de45243b84330004
BLAKE2b-256 9bcc3572bcf381de51bc47e32846c0d660c6ffd0abd4a05f6844100f3af6d825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08d2db022f007f2314c6a6f5a6aec7e0db527105a8e1a624bc1928fba8eb34dd
MD5 640fe2223f5e9310745541dd6ff8f3d3
BLAKE2b-256 f7a6da5f298bd6d0bc20e77d0120817fc5d32b4ee622019ed56346740e8e8770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fdf8dea1cd8117b62cd53e1de6048781b854f7413e2416706c68bd330c2cc7c
MD5 8502241411ccef0bacacf44e1aa59b84
BLAKE2b-256 05c2bcb8ff6142cceee82e37153a246e72cfc370c8cec3be75a48a87a4758064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 012d13dd4f1c377312e291a9268972adcdc97bed75d227493b220ac9c2cbacd6
MD5 de2f333b8fc16d4cac7c9805ae456ae9
BLAKE2b-256 7de12fe46f00e2f862eb1c0957bbea3366e5fb7a279753bf9cd1fb851c7b8e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f6802e1b2bb1d8f45f2e31fc9143e12b32f5925e6cd1733e23e792286a6a880
MD5 808ccb1fe1f0ea52a5d561f9afbcc5d9
BLAKE2b-256 44400f6998972cf558ce3cee13a93a88ef8a539073c98029cc2ac9ed77e887ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84cedaa5945b9eca23f527ef6eb74f01582c6a7c84dea5a25c9831b53529360e
MD5 6fe8a890abd0030a6a97e3e2f453006e
BLAKE2b-256 aaa2c5f92f9bcb096bf87285dc6a399e48995ca95b7563610b15437360b02eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 635c71702171fa4da366e5f40d02d7d75685b2a5f315768e680b44266c559e5a
MD5 f202229aac2aa4b4cb40210325be3a15
BLAKE2b-256 2dd6c8664ca21babc0792558380899b13d63dc39df3c521769f854fab7255d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9a20545332415c2351fcedabb8b5bfd0b6876875ad585146a62affe74a85c83e
MD5 4822b2b6ee479fe19939f11dd3061bec
BLAKE2b-256 50f51b872823612d856530ea734fd0c1a51e449c3bd0e06467251d53b3385a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b3dab7659d6acf3d64aa5b919ec226a9b60c64d1f8c0d760497406bc3c83990d
MD5 af3859c7b3566d1c2cb21c9f6ca1e5be
BLAKE2b-256 f11a4bfb4b198dca4f2bf72e70fb73fc6ed421b3f29c5a3e98a16d486f309342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03a6dcce0fc96b9e1cf27c086ab7008dc3f8d12f9c84c5123132d93e7ba6d17d
MD5 6f486f1da389591d22f262ca68bacd79
BLAKE2b-256 ee60610ee4053817d746ea30217bb80d06bd3c9ad3b0e4130c43f2d5d8da3066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1df2321a6e94818e58021d17f082bcfa577450b3c1f495aba8f5ea3eb34cbe4a
MD5 760f2704cc55c6e0186ebc9c3418cda2
BLAKE2b-256 01c85950167491eb2c3c64ac66077dff8ed09447a2dc87345f9cf9378bcb7ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bab40b0de0eacc096e6632ba62793eda862f58f53713ca0cbeb30005b9c92ec9
MD5 f7e537d52116490a734dfa34d8c4f807
BLAKE2b-256 c44edf686bc6ba3904493c8f907f3e8d345c7cf66c8fe33b7ae050cba824f6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0386d09220e51e4f44c28c8e357a213757a6c8d966cabbdaf2ccb56444d603f2
MD5 fa00dad077aecf9c8dd4d2a139a40eb9
BLAKE2b-256 27f7cca172e1ba85684c469aa8fc4bdf57f65b56ab7608ea64bf04995ab33299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20731b7d595e540f0fb56b7a16ab7dd403add9f70a17bd6c4461bde1b44acb9d
MD5 240e4565fe28a6e3a3598108e9e5495d
BLAKE2b-256 2bf8da3f71dadba3d027d74cd9a6f637f74ea0d15a4709848651e4cefa5ccb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89ddcaaa4da307cb8d3837acfba83bdcbb4bb426a205c67609da2020bac94d69
MD5 84eb99d361cb7974d1ed414472b05987
BLAKE2b-256 23603fc50d7a77283380a9280eb9fa8a0c6d9e453ef8a648dbc02731cb9ff200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 707ee4b2abec7f4961e0acc262676b45d863fea3b08c75914665e2c3b8e01500
MD5 6a3c2f9d1d4f82a1e036acf8b432ac5f
BLAKE2b-256 f42bfd1a01e2758bdbfed1141cd41fd3b6222ff37228941375500de28cf56197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52d50d8723eee4d8494997a36becb7e49aaef3f57fb0a575e5c0193ed319aad1
MD5 68090102af6374f6ba7fb6ec04c9cc10
BLAKE2b-256 92092b719c880f10b2c82973ded6fc20964fd219bf6d942bf71c0aebd1f5db06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b6bdd39ee0d21098e1dbe0f831a62a8a094a2b7540904a0f06b55758a6353b1
MD5 0d3e51f1249d578b3226b4f6f6db6296
BLAKE2b-256 65e1a07ca487a55e887851850ce9d69afa127cb77088b0e6f18ad22b2646d2f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad6e45449de3c9681bacb31147289e8953c90184bd838bcaaae5fcba47318128
MD5 7b3c17ced800dff853b3f89e74039bb0
BLAKE2b-256 8e6280dc2c61766691b94fea2e46bef783f49099c039864c2c868f74db654422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 133a47a2b757156b6c4b2512df7ad0086addf089421cf8057f1588532b88c05e
MD5 c3cd75fb76737dce683589ff64329ef9
BLAKE2b-256 5e8d40a3bc4283b55869e0d4f9e3f244fbe14d8addd1460c05ba0dbfb8630362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ec370d14997c56a5edf909e612a321e5646034850abe9b407c4aace899fc92e
MD5 cdf63b5ab8fce3120d8928ba7d212853
BLAKE2b-256 b9549be8551d2f343365f24e895a4ee34c3eb96cc789d4dbbc50f1916d59b340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e097861f29cb36b3a450382c34513ecf2d9354887d4304285ee1f5cc085998bd
MD5 bb10ba480c52433e05b8476f8ead7ccb
BLAKE2b-256 ef9695f5638b1743cba25959cea1d1d761e6a68733b9b7135a8d5086975fc3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 56ba1935d863026cc2f37a7f4f49be949284e049a32ff258f1ffe0150074ec6a
MD5 c0982a54a056b2b293a21c8583c2058a
BLAKE2b-256 09ec738a6c3859041e65e826d9ee8e24601248fd8ac0dce5bd9d2758db59bbea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ce926fa162cb84e5f069763ee97a00537e820b01dda73de52b941ce1825309c
MD5 b4a7e5496b76c75955fb1ffa6975901f
BLAKE2b-256 5ffc5298e4b48a8af34955f0e0daad288354d44d8e555aedf613beda74b8fe0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f5e94c9582347ad70aa6ec3e3f5220b444ff19e53f04af0dbc0563a30aa3881
MD5 6604cdb6cae5467f7c34d78043669b3c
BLAKE2b-256 4eafa8b280e6457c426df9dcc8ca0dbf44c34add79ef79a494042a7ca01a9d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8cb8a069c10083917c0ff78b69b5ae50e7b58bece53368a82b6283a145508ab
MD5 466dc3458f35dd77f59b7f5f45e543d4
BLAKE2b-256 c042c76bed798419223d398c29eeeb6ee3f35c9418667d2c599fefc12e97528d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 919936150ac0b7642766a7cb015b2d47b632eca1144a9fbac06f64effb7e61aa
MD5 7ee445839f24c5736c69840b41f82251
BLAKE2b-256 4c919c3598b352b653c5c1a4052808f1df5d6a25307cb335ff3855e08a7fd705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b420de0d31084e18796f5063070d73125f3db79483ab2df691354491157483e8
MD5 80a60e2abe41c7fdeebab03ebe4db029
BLAKE2b-256 84bcae5d146da8a76321d85e89485826c254c2f989104a971ff2d7fbd5759534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 02aae81acbbaa3ac883da57a8c93e7b7f204ccba6d0bdeaa19635415453eed5c
MD5 81b08567743826841dae481109a69ada
BLAKE2b-256 eb6e4408853637e98559f7cb8191eddae94aef14908f95bf9c171565c71bdd45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70ae34f45402cf6954165f313adc459ef33701b9c608e6efa4395cbf0c0f1c3a
MD5 1bb1f78ca257fd760296ae3e0c94dc44
BLAKE2b-256 1ae7fc70c84f96169abb12b6b0df1f6b9c5d54cb0ceb277527f23f982867c5bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bebce212e27e315f2839c54f75e34c7a3afeffa5dfff9237f7a8d5673a13f1ac
MD5 16358af2ef66f1095ce1c48a41e55a18
BLAKE2b-256 447b84430323655c6392d1aa9f4283705a49a2341d4522892ec0594de420e01f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e1348392c4797377a22c32a41ecc741425969037e6ec1144406660f33dd91eb
MD5 02fdd011800209415960582a9a715993
BLAKE2b-256 6dcf30d85a7511345260c5d9ff9dd1151fabafde17b7e41123c9b146be868f4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba26089782625e1a25e3550891f7ee82cc20a6e60c664ac00ddc3bcc41190932
MD5 94bc8b5236ed434c4bda9c03b5bd6053
BLAKE2b-256 ce33ecb0d6973083f589a69132f42db19bd74b7f4f73c8046848a73e3cbf5226

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dfe00b1ab3ad3b4413c28e0ce343b3e47a85d11f51b568df50e9726af54991b
MD5 90b1322d8c7fccee8f5d79a998811f76
BLAKE2b-256 4b9fc73995fcc8a6fe330c9a94669f87d3a0d05e7cd8be625b37facbf0a7b71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2e347b8fa0feaf1604b34485f5822cf71948972db667678ebff5e21afb874380
MD5 b1182827791fa93f9447548cb6601dbe
BLAKE2b-256 81181b1e2d1ff445de6a79deb4236cbf004ad12098746a6e0294dd8436b0f8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 274084bebb41772fa3675e91eb36828e0f67731572e430fee9743667c5dcb938
MD5 3302eb71002d5643507585b9ceccc3cf
BLAKE2b-256 503f6927105cb11ca7650d40d52079871d8ef4b15dba26424d703105730a2719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5aeeec607e792e4c1ee6c2d16b44653d6731b50319aef70a4f6022c9a9dd3099
MD5 4d85ba40cf65398c9b66dd792b5184b5
BLAKE2b-256 dc79472ee5f7b52175c57497d848a7216832500f81810d11e2bfac52e8621808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e0e052e45874f496e3588748fcc8782a3bf350f320116ccc0b3b2654a50f4d4f
MD5 426d2d54bb94125cfbd83024b04c636a
BLAKE2b-256 85dc330c1b1aed35d91f60cd5693077833580e2a47d860913c9ef058c20d5955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0cce2bc952682292b4893d394921875d5f67450839ba046363f787e098860387
MD5 0caa99e59af349ab19a6587764da1c10
BLAKE2b-256 e2ddc2bddc5ed2824ac974a7fb8fe8cad439e72927599b787bf4ab6ff2437511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b73e84911998a3deb5cc1c0f895260256acc46918bda67ef038340f1aec8ac4f
MD5 4ef475afd4ebc34093d850b70b0caa2b
BLAKE2b-256 f347b12a97f99af4d8be762dea9b235155dbe6213a74fdfa773a851cc0af7bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c14b9aae7153faa09753f0a33a0f52ff70b64f4fe413d7a820c7253f2d2687fe
MD5 1e7363f0f102c75b86919d56635ed9d1
BLAKE2b-256 98bc7406d17ab804d55ea3919d29ee603dc989b6ba9a0e4b743e81ab7f98b370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a46d36066ae1d3b3c826f21f077239b10d127bd016ddda4317773d3c351c0ae
MD5 b3f5c326273bb2c231d4cc52c56c080d
BLAKE2b-256 fd887f93d6e5aff6ea2dfcc4eaa890735893eeddf7bbbeffd861d6a62370143f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9210934d292b7f009cbed6837964c88f70c73a08e232239e93481c89ca0c8126
MD5 a21cbb776d8e0ef70c64767295fdb8c3
BLAKE2b-256 a284d6b84695c76d76c49cd56c45ad8723d3fec78dd245aba0cbca7ae34cf170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f9dcb3834d4eb627b436603c6614d0c1d6df7b3b9a481b57cef4dac53b8063d
MD5 608e60cf3621cb56e58ebf1c92c393f5
BLAKE2b-256 cb5cf07d67ab8041358afeba4bd737e0b911967d0a4d4550b78bf44b1894d3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb968354ebf2231e1c5590846403d06a0a404cdb8be1732a2bc223006ecb0746
MD5 b2266061ba3fb6d9f837988aaf7b971f
BLAKE2b-256 33a0504854db127f0159ee68fa7764edc680c776bd1daaae89917cd95e8807ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 989627bb275b92d3645b29a8cb3fbf9c1b9cf866370d7487c47619b079730d65
MD5 667bb64538adc319a48a87d7a1205bfe
BLAKE2b-256 9fe5c9bb14fc54e790d6ada7a3c49619cb231a2b630aaa3a88823dbfbc9fb5c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 810ab389986e50a7dd061619c6100b0c925406c08abc5c8a44686fab90abf377
MD5 d318337cc70edff3df7a619cd5854840
BLAKE2b-256 30f3ec39e595d9959082e1811ef6372b475b119bbc6b281dac32970bf2b21e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3300e973dcfa58a1f083a996f97f0b955684ae64f4f0d01d1dd097cd97e5d9a6
MD5 5c134e59bcfc370d27f7e223dd8e3a3f
BLAKE2b-256 8f55f06c7d9273b9b772cb21496c75656b2e96f6ce01656329ffefad8beff2bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6913e57e06a1024148cf40074cd8446733002d30b40ad3a7eda7291b3305a2df
MD5 84d3c11b40560e9cc3b23f5fd8337b2f
BLAKE2b-256 bf3fcf700f839a1f2f5a04a3b90fe7e8fcd2dac2aed74662b3995fa810d39501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0c58b917a384c87fa1801f57f059ae7fde505081d499f5a26b82e7c5ff7c1f8
MD5 6a9f2ca5805c7f5b86e0d8389cd7654d
BLAKE2b-256 ccf4e75191258a72f7ebe6abdc9128db3834ba57380461d7ae4b1fe9a36d5767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c2581aed443a84182a71ecc3410b626b4a19462f6eea988ecb164167ec3485b
MD5 21e3bdb67fd9f67fcc47f185b6ad4c0f
BLAKE2b-256 8973a3f4079a0f3dbb7e78ab5118e42153d95d38278589d2f7c6aea406f103c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70088f07816444ba94394bb6ab1d4aa72450991969c4db3d3cf85cc0ab1faa55
MD5 5b7c8a663450c4e692116f0c4c1c0d0b
BLAKE2b-256 f94e338fd6b391060d07c16f4b481c0c0f04db035ff24c21f84c0eaf8e4b7419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4acce0947e766b26f0709fbb0b1ebd97f3425afd64febc1782b2619a41396d2d
MD5 7e77529218a8334fd4dada14a5c7ba56
BLAKE2b-256 ad7e4c08b1eef4eb1a16fd0f1f8ffed470d67ba5d2b9debe17bf0e241f70500a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b98f25e4beb35cd0edc69dec03221f3a9ae0e94ed4e548cc086150aeae0bbfe3
MD5 15fcb5e623669c3d7bb6d5fad07595f0
BLAKE2b-256 798c63f2881c4dca39ce7d73f2de912ec64411412768fc82319baba970998313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bdd60f4bf033ebb73ee9b2b953f9767e1c65ffd2adeab621026937f5837ff677
MD5 b389628869993844ce562d63d66b0a6a
BLAKE2b-256 d93dba1cbea655fcb10380a00f900941d3937dc091c94be4b29f99efe1c478e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 229eba05be9d22e7450d9ba7120a48261e781664c591d295e82e0c0facc30948
MD5 04a785f07eb47b240687ef9c76efdad3
BLAKE2b-256 eb7fae2595e7d090843f1e39293d3918b96e71ea508b2b4ac718d10a683a1375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0e565e6d19364b5709cea2c861b0fcf67f2b232847ea7203bcdfa3acae3e1e9
MD5 b09bfc326f806a2142dd9bd5fad0712a
BLAKE2b-256 884f4e8494658b85e74c9fd868cc3a6134fe52b557d0f66eedcc721b84e25b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe4444a373f87370d8007d91c208c4b02f0ad7bb4e750afc54b8805626b9bae7
MD5 151d4024c105f6c05c1ef82038986678
BLAKE2b-256 a4af860d3c5ac6c6554f00c4d85fc2beaee04eb221494617513da44c6b9c3fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55417cf2f2cf90b66245e679b282f257b29dd1826cd93c78156def48a9be8b9e
MD5 e302ea4eb357da3e9e98917ee05872d9
BLAKE2b-256 4226c0104c721314172b19bea6c06dc722b3c5b2744a129c7c7ad5f025a47b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbc215aaed33139d6bc366337fa109719a065151470a05dcd1c8e0d4abbc2855
MD5 938afd1cd0d90f095b044a9e3e608ad1
BLAKE2b-256 441d11d11c2225ee0f552d37a199f2311a7488da21f04667e4c2834127ad0308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 324ba94609fe2bb754b5c2d714092dd9cafbeacc014151b1d3bf67d6d0c1828b
MD5 b12038def16134c86783d6c58f872db8
BLAKE2b-256 4a743e253cef5e33eb8d58484aff9fb6ef1946674d51590e3d06510e0f94e74e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8aed54880640d55656c1750fb0da9a473d0ef8f1b355b153269b2801be4aa981
MD5 e93ed9d2830fea76da68b099d334d410
BLAKE2b-256 4c1f52ea88ce6b8d14f4bc882436baed7001cb33755634ce34ca416d3998c18b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 113e3aad391f3e1420e45f4acad29a273c32865e3a98f4c49df655ca00e298c0
MD5 0c4855d007c18006dce73e879337ce25
BLAKE2b-256 3ffcf1c197dc4abef04aab2ef14381bae8e7d16d66b069edfc4cf0cf137704b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b5dc16fe95f92af915cd9d447d5281741993d80daa70059c673992438e15d03
MD5 0c303399e3683afa195acb5799f67d26
BLAKE2b-256 76d66739b5080cf6d1b72692833e1a3e6fa556ad53417d6a755f064cff36a9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad49c8184f6bf528cade986c026bae668a70e7d9f5113f5c8b3033f9d2d5e766
MD5 5f2a56ba5a6faae8b012ec1772eff454
BLAKE2b-256 49edd4d1b12161dc76c493c58562d202cc6b1d4015071c6fec10a4a7ac56fa2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33fab42839956c93435cc7ee3b4253b54c00e9a141e118d536d604fb5f8f53f6
MD5 da83217d21a27729fb32ce9b2644c058
BLAKE2b-256 29cbaefdc35871301cced19f9bdeacf0eee6d739d6c2c800042fb07ca12255a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f5dfa46d4cfa258fa93c0b25df44e6e2f9a5096ff362514fc05260a3d5da274
MD5 dd167ec8c321868f8d5f236cda87dfd6
BLAKE2b-256 55d4dfe504caaa1de5a427e060ed9f29a4a5a1fa4c93400ba26999ed3533c3f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b373d3904220a120f4053f308fb84ab98b2fa035802aa26bcb13a3d65d27c9a0
MD5 81fe2810774e2a4c943beed89859fef6
BLAKE2b-256 1f4d6dbc4618e3aa00b5946c9e54529db57634a7091e585c0616ca4f77407143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9f8b3718e6bf03e0f6d139fd19cb579b31bb7f4717c86284a646c07347c1448
MD5 df5fec185e1f166c1866a689e31b539e
BLAKE2b-256 a8f450b562888f078e477c764ad0c83edb27fa5e427544b1e97ddf2efae391aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33ce13e7f68d441ad44a44edb62c03fd270be66fa4934f824c909f9ad5ed24a0
MD5 d66d2524e3bf08cb8e7c6a1d570084d7
BLAKE2b-256 7de89adcbffc2e3b86b4acd073a8ca9c52d4de4aa68438bfbbf611cc3aa88558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74a9be7d936bfe1c63af306a887600c8f87972a54952f6ca87de23f7cbfd038c
MD5 13a5198ac71f1267f13f680ef0b924e6
BLAKE2b-256 495bc921b809547189d7630686be2837f8951eef93c8aff8001b44624def9a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed95c6b6dcf227966460646bcccc584b0003148011f6c881e1b42ce1d670fbc3
MD5 0628f90da420b6af2a7e94ef42c8ed7d
BLAKE2b-256 103bdff2ef4000e797d066f4741254d50dcceeaaaef316fb4ae6c0fdee298f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 157d018557755b05f664e70458eed2ceaf577ecbf21af0fb6454b504fc90c39e
MD5 acb844b0cd1ebcfe13343f30398ae45d
BLAKE2b-256 dc9a535107dd59ee937343a6c053b8f04b0a7cfe23f36198bad228837e319483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6da04ce9b23dbafd9ea7f07b88bab67698ade1f25b980e48df3e85d8ebd2b1d2
MD5 d67b4328f8ae3a888607fbb9ce202390
BLAKE2b-256 85f0b0f34253dcfa9ba18e99cdf9deddbfaadf628ead6f031a0ad4919c9ba389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9bf0fdb2772241471041e6796b6205ae4eb08dea291accff5322e389a97223ff
MD5 24fde9133cd8c670ba4c40e2d7ef4a78
BLAKE2b-256 a87904d3d3453d01e812029e6fc63b8475b9ab050fef241380ddc0a651bec2be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 549e854967c2dd509dbc03e81db46d174785df280a10fbf22f3c94f8c04af8c1
MD5 b1e51bdb0eac59bd3d78491d2a37d287
BLAKE2b-256 42a5456e9223d3e0544b934ebb340905771ccd1cf53b9b585039bf7662fff9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e0863ba6e775531fed0a19309ac3c112ee8ada406a8624c6421b4deb122dcb6
MD5 d0b967a1b7ef1dc2e145b48410797864
BLAKE2b-256 d2da65fd78fe6b7cb7027c5608a9be490728ac3abd0aa9628489db1578e31bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e519690f84042ffeadc56bb77c54abebc63ffee27cfbbf10c265aaa61cfdf0a
MD5 b02f73d5dfeabd0be66e22180e3be801
BLAKE2b-256 f29cfe9972808931913fbe008840021f20d7aad28f2050d722b2e931567afff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb8694fbb0f6d5c636ce0418920788c4fff9dc900cd86a2516c85b42f73c6e77
MD5 6109fb4be646b764229c5ce3fafed6e6
BLAKE2b-256 232c98b6962708f87ec94d999e6f4be4a891292fcac269521eb7ed60d1f2f26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0c02cfb9cb3d391b8016d373390853684aae057a6188bec25cad24d78e9cbb12
MD5 e5b84604bb1794eb8649b2c7cb5e2dbe
BLAKE2b-256 3be29438abfd1bc8dcb957b8ca1c94b33e5649d2c0c5f6bcaf88407e19e5e978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1d14bb9368f695ae7d8edbb6ab591e81aa3d05932a116e3546f9eabf6f54b2e
MD5 db2bbed7b5f9ed2d31f4ee84cccde557
BLAKE2b-256 873a0ae7b19bfa540c5eb90f9425810feba4d965234527347140541819993daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba3026aec16803981238ab19605178db0ca3e1eddb98fb87f05daf22d1c9fae5
MD5 dead17245f5fad84643354a2550f465d
BLAKE2b-256 bfa325b0e95bcd495659958ce48ec73d0e4811b65a406e57eaf3e583e4bca882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e20877d7e386381e1117ac67bca26f37e45c923e35479a2800de8c389ef1b54a
MD5 1a3428962c1beb1821ab4897464e04eb
BLAKE2b-256 9f64c1b71a79574226e77ec19cb3da3585c8e239c3464a2d136fba9fcbc83515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ae0783501b022a66deda2b510e8744174c4864c78282f5becfd8186858e26d7
MD5 297236af12e4e969363d522a564be3da
BLAKE2b-256 185674217d0a8de0c73c8c98861562d073dcbf2ec7ee8998ac4c05f5155c2d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e0f87215c81b4c9d6bd9e8caaf4b27b47780580210f965c6bf9d2313f2868e0c
MD5 d2bbb2f70dddca77e69100a5af9df871
BLAKE2b-256 ada33cd219a65354b88e446c0f84ba070c586c8389d87ec5bbb50eab782ab7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de751eee46d8129a6e187fbcc1194f624dc2187456f2170143a2336b10af980a
MD5 ccd7a879750cce1e189c761d34389ef1
BLAKE2b-256 a97fae0b4ba0d77d78fec5d1e0d034155c28602c99c5168191d33bdffbbf5e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9ad98d42ac3ca556ff731759a20485e8cf683470f011e302dbb4b9742cd88ca
MD5 deed127ac184518f3dd1c39cefb949e5
BLAKE2b-256 964fe2814ef2d28709181064c892c382d9cedee9b0b2a80d1c848708c034f193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 996bad167ab0d9f48621bc84febc3bdd6eb4d806fc16f0584c3249d707d1d980
MD5 086f092fed36d6b36ae8457702e8454c
BLAKE2b-256 dba8bbb4262bfc568c991e2f973db68dae1acd9c2c4e900141992f298460417b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23fbc92e7973d09878563d54f73438675d3ed98f0912477050bca2875f421f6f
MD5 41c16eadf46e2c8c2a5ddb6bb7a7433a
BLAKE2b-256 fbe313c4124a5818861e6bf4c72a9a1fa0e2054d48055e1492a53d53f683da5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 065055cf74a9890d0747becb6dd0529ee7256d558fdf8b19662e69b98c3a3df2
MD5 c919382fae0a0b9c183a5d3a45657be5
BLAKE2b-256 80489022600e5e8315f40c884241299d1ad2b043561da204c40f54371781475a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96e659ecc7c3770ad91e9b16e6a611082f88bb848a0cc1c777f8ca377f448029
MD5 b015e20573028f07c42a8c149ea9c9d3
BLAKE2b-256 ad44d297d31943674840ffd055a4b3a16b45eaa3a43cb4089ec25f843c6f2cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69a47666bba2d9e8e70ac80887eec6f24170468123def85f5b1763ab7f6a212d
MD5 ff7e589886ccebae4950faab14dc4790
BLAKE2b-256 ff2608c8b8df262e2be4b123ca82113e61707eaac9b08748200a69840ac2e4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcfaf8f84c8faed7c4a81e514bcc18929284c9da6208a2d8a85d7be2cddb8177
MD5 12c9d0bebd9b540d0dd16fe2f8c716f5
BLAKE2b-256 3e3eee03e25e37e796cc01888193639a08cc6fee3a573eca70f97949d794db1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3bbc6606b57319f2a2689403f64c1f167750219ab07a9d31ef17d3f0d4f631f
MD5 a182ed2c98a80fd074a4b7934187e2b2
BLAKE2b-256 e081fb4659c3e26cfddbe5287d7e3c27b311eb3398d1b5c20ab51e4e15b424ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6948e3d764b90c4eb2c05d8f61e3261a1b729d426f82c8f4fb8faeecc718fbd2
MD5 ec467fc7682b21ec4cf0ef049e07e764
BLAKE2b-256 89fbfe9f9c7e04c4c0a334a1ba06a6f1e35d806712a804ff39853ffb7062e287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62e964bc4d7a5d37ca6f2c534783ec1ec302dcf5379ef0e821ebb42ff463a879
MD5 bc33630c14d6f36da8d5bdcc516c3dce
BLAKE2b-256 c1bf8938af042534ec8037c4ee910159dc060191ccdd475157c9c3d320b250bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 457446ed8f56729a24936137848aced2d56a966d9d6cfba0f33c1a3714fc0011
MD5 f3927365f18e689ef4f76de57b548482
BLAKE2b-256 3bc734b24a496da4084024c425559f1f1eb268054c3d4b16a86888531b3fe37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a1ebad9bef03861e4af87688f17152b303a2397708d6ea9963f6c9c4094e533
MD5 954435450a1fd8e9f7c00d850d2d0241
BLAKE2b-256 fc7e3aadf568fd1cc89e79c074804b7ed361a948e8a388d7cbeed4a5c3b6d673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 859d963f7227f26faf6727de9bf53852b525c56d073cc0050baf4bfcb5bd2266
MD5 19a48ee797f64f4749cfaf6b3989a9fc
BLAKE2b-256 75e89458f2255a26975b29dff9f89f837eb93643033856f0ba47bb2c70ff84b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a739db6ced89522367fa3218813b2e12c402ab0fdf2ce8692f6ded9b10fe44ce
MD5 495da395961cd33f7744521933978153
BLAKE2b-256 8c47c4d871fe74e81d26ae4bedbeacc5d1f5b9ed18289aa31d356e54892974fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f1b52df527e44c888f7073530666690c2e75947c709b94267f5b0bf00a3c03c9
MD5 390fd0b506588331c41677969b4d3752
BLAKE2b-256 bfbaac9b5f9495d855912ce41c0ff276bf8966ab9e32e17970aff18cc2ee3a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5645883d0e00af21f9aa678a1760c2680d3c5a58d0926336a6f89c0e842dc918
MD5 99c14df3260e8d10f1631bf9ffb64f9b
BLAKE2b-256 6e49ad89102a5907753a7b7260f5bc47518216c41ec6816a5ef9094cf88ed0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6f1abeece43415f998656037cc372e3a8e0c3a0ce141f00fd50a341b48d2a92
MD5 f61f956eb8d78c3f21c8dd07b10450a6
BLAKE2b-256 c3e9318750f4d95ebb24984261257b22dbcc2598f9bae314adb33ec92323b7ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33a4aae1c536835f670498e6eeb09112942f1c584c4792b1073863d1b645b7d9
MD5 5e5c3d8d106bcc9b44ab59d6eb00d2e1
BLAKE2b-256 fa9970f0fe9fedc6543dcfea93d619401a16205ca64473da7b001f81e3ccac5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53f0965a0edef6c980042b5954a300c5179633f724eb026ca56b03ccdc1e7efc
MD5 b1ac2bae53c3c4ecb4e20d61a7a2e213
BLAKE2b-256 1ed830475599b217f974da494f9c60008475ef8f566846f9b985d4b263f59d5e

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