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.3.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.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (446.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (550.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-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.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (397.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (286.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.3-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.3-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.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (473.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (550.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (397.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.3-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.3-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.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (473.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (455.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-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.3-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.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86

circle_of_confusion-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (292.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (235.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

circle_of_confusion-0.1.3-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.3-cp313-cp313t-musllinux_1_2_i686.whl (471.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

circle_of_confusion-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl (549.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl (453.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-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.3-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.3-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.3-cp313-cp313-win_amd64.whl (131.9 kB view details)

Uploaded CPython 3.13Windows x86-64

circle_of_confusion-0.1.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (472.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

circle_of_confusion-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl (549.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl (454.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-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.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.3-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.3-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.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (291.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

circle_of_confusion-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (246.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

circle_of_confusion-0.1.3-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.3-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.3-cp312-cp312-musllinux_1_2_armv7l.whl (549.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-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.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (394.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.3-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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (273.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (291.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (235.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circle_of_confusion-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (246.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

circle_of_confusion-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl (446.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.3-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.3-cp311-cp311-musllinux_1_2_armv7l.whl (550.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl (454.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.3-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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (292.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (235.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

circle_of_confusion-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl (446.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.3-cp310-cp310-musllinux_1_2_i686.whl (473.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

circle_of_confusion-0.1.3-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.3-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.3-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.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (398.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.3-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.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (293.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

circle_of_confusion-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl (447.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp38-cp38-musllinux_1_2_x86_64.whl (447.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.3-cp38-cp38-musllinux_1_2_i686.whl (473.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

circle_of_confusion-0.1.3-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.3-cp38-cp38-musllinux_1_2_aarch64.whl (455.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.3-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.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.3-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.3-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.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (293.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: circle_of_confusion-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 bc13759fa0992a88c731e02417f369d1c1407ab33b8835928c1ae365dbd32030
MD5 907e0b3b0eae792bbb8eb153bbbc98e3
BLAKE2b-256 f4f35b931855e3eb948298417ff84ab0fdf0a8a8c6486088142e08b199ce4119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a0e075670a290de0e424b35cf01094410bb9e029f3b8599523215bea7786043
MD5 a39a0c5d2db3f2e1eccf9165895f323a
BLAKE2b-256 c379082709e979ce2d8c398e07903e4eb4bc27fb4d1c245b8d379167c325f022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51f2053ab14517c875fa241a4a7494c51327f76a2c6deca4314a9a3fadb7a5b0
MD5 689b7614fe1e5f325fe4f59ef1a362b0
BLAKE2b-256 a392dd295570b565c0017626ab28830a75e41697c8e96b8397fec94040f34ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bb3f403c8299e01fab7846dbf92eec76bfb9d9410b58c2b8f5ba459e84565d2
MD5 fccfc9a44140d2b437706fa718459f06
BLAKE2b-256 ef53679b373a9d251b854c22ef2362e50b64f2a926352cf3d440721e13a1fda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 244a0c42a7ec62e23396d14e2b6589bf34cac4675482bb71d8b65c16b2318fbc
MD5 b6d4b67c8342dfc4f14c071b5ed56e1e
BLAKE2b-256 27e81d73d3ec397c1575a68f221cd5138bf64e4476d32c17c21e569ddd688266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c411605fdb105dfed90067f7b0b4e6207cb358280542416ec9c7fca9ef35586
MD5 9928ca2a91b81577f400483b405e9d72
BLAKE2b-256 fb9d7c5926a0d4b22d27f31680a858f10de21d764c684c8b81404a6f870c9091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 39e3775a70b7d5dfbca66ef92615b426115c8e9bd7d6545dd48ed1bf959739d5
MD5 557fac8261f6712b646672999a9959c3
BLAKE2b-256 8d6aa295004a8c469dccf2baf26097a13df5c28f4c4ed653876d2c4cc3c2ac2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3110e34851a6c280cc4518ee3a8737b532a1bb3bb0a394bb10e20032aaffd7a
MD5 17ef88bcb103197c63a29024832a6f91
BLAKE2b-256 a7c6849f57038c1183c7e1a4b875af9bb063fd52bb6e500a326b1a5a169c8215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b84eb8813f6aa518b396e00b979ddf21d88ff776a9937b5e91735df8f283c1c1
MD5 e6a130c1b842b40c05abe0c201670887
BLAKE2b-256 2544c034d8b6bc34ce49045cc3891682cb18818da94b91f8d6150565c5c9c491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3fe9053b72c37c715970b63328b65fb25dd587ea88e30df6b4ee025e8b8be91
MD5 dbe5fb4a940d01398a120841e26b30f1
BLAKE2b-256 ef2d4554f10a65c3f39cbfb911c4fb0cf8aaf9625b6654deeb86b95d9747fd37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c4a3e8c115c8e763af2732369ea50e3b7f21801f35b8a284475782ff29f0163
MD5 64a642972f7683e7cc0ee92c2b295b2c
BLAKE2b-256 4c85de6cbd69e562b86109a4710783a1876b41bad294fe960d4c41f1347849f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 61165ded27187ba9b5bc3cc2c4e09e1b85dafa9b58ac3fa21d7570ec55a694c1
MD5 22809d8708a76dda4339a01ce2acd7f0
BLAKE2b-256 97dca222ffad15a08a47ec4099b950934ce5c9dbb820e6204274cbf9d2b7ab39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d873eb86256a9874b9aebf9555b5d72f5f0474d58b8c92a8899318636a8810da
MD5 4d7345a2d0a59da7484605d09508b6fe
BLAKE2b-256 a3a7eb03a19c8b6fcc14deb3196a117ea7e1120f87ff142772923a5b95ba0776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ac8f2019129443c3efbd0f7c3beaaa3240992d5f60d2803e30e30bfc2c7dae2
MD5 d5137f7763301440f698e411f5a31ea6
BLAKE2b-256 94fd51ceab8bc420a08e222fed5bfa7438e0c7edc3aa2c01785c6aefc4a1fe3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00118a3c11b152b9173fc9a307f0f4624a3407c9966e4baa2e24a85ee3e52b58
MD5 96e7b400951b3e60e5e40cb994096fbb
BLAKE2b-256 25bdbf53fe2d63d8d8d58cbc5a1fb00cda382d7f7406cc1e51b844dcaf943200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f98c16937103fa317744ae2ecfff1bd37f91f979de301f26c492cc18aa181479
MD5 5a645ee0b26063d32c75183006491b22
BLAKE2b-256 212dbb3884c6e40060b2ad1b8d9d7389e44dbf53525d5cf53f32cda0230e4429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12a6a73b4fa0896cd66d2996efe18abb9e3adb487f548525105e736b57cfc95f
MD5 b4c09a7a17c319d4084f21d1711d6e3d
BLAKE2b-256 f5f5411651f935f554ecbc4bd5b7beec726aa6fe7199c1e0871aa9ec65cc3fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6c452241a2fb9715234fc77d5833253f9f274e97384234bc57a73096813f0a4
MD5 b2eeba65ac37d20657a7f5f8cf5f304d
BLAKE2b-256 fcc7602934b12ccb4566ffd8fb77143d732553b803ca9ac0a8a45fc17f506f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2302be7842803be827bbc7a61d6e18eee4a745f66a6bf69c9b9c7483c03dd49
MD5 1178d9001d6f043c18fbe46974ab0b8f
BLAKE2b-256 f3400bda507eb344217dd034221577b0081b54c065f0e12e2ba394de4e91f231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1186bc342022b477d2ac17f40bc6a2d09faf02d9f94c730bc6788790ca2ada
MD5 a2284e3e6b9f0ebe9831ead38a27dcf5
BLAKE2b-256 3fcd73fb29649fb7c6ccf86b098fe122127a406fb5c03918d4ab0c0cd800c7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 afe4132067d189a3bfd9bcaa576ac77f50bbfd0658be8b13ff8702f3f658518b
MD5 90e8eafc33c39a758d5a6b5967fb9ec1
BLAKE2b-256 a6ccb712337f6c9f1537ca5c7126d409e69b10bb28b491b1a471b19bff1c08ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33a26a0de4a3f3b7a57f5a1eabcae983748f3c2546a17fc9d260f06c396aa6e1
MD5 1eb5e01051adb041dd52fd7902c63e4a
BLAKE2b-256 72e28e5a44c62cb3880b93f60c94c33d724e8fd3f63478ae807902078e6b3e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 385ad98e6c54c4cc8228579c427e8e677f14935cf88138c995724002475d1d4d
MD5 1e82b55f94086b4e9ec84bdfd1c20898
BLAKE2b-256 df31d85bfc2a603b85366aa971414e8b5614b5fff56f31c7b8e4aaddbaa46bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2093819326d31e3fda67069f5bb106a9add6ec010e85a1b2cf62e26d3682f344
MD5 d903157ab53dd2b76977ee7918b63023
BLAKE2b-256 a9c23e0d99618b7e390eb31129edc686b354e5cd6740d2cb713b56f50085bf89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f596fed63b35c15d48f704417eb7c654d2c8fe14c7585c2613600d001d88037
MD5 bd62e2689b928b9dedc8aaf38e0fabcb
BLAKE2b-256 e0655ca1e05f470bb5fd10411b49e025609e92347964f6f23112c60d55fc6502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e164f25438cec52081879880e678d0e0f3301f4be8a787ccb508ee70d7f58c9
MD5 e27a659e6b61b9f43da6c9c6dd1d35fa
BLAKE2b-256 6ae1155a2b16cc92ccaa7d8931e9c0797d7fa01685aa0fdc90cde70c75a7317b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bc71d7ada92dd3f90db14689f4738fa3be1a661b4cad28bcf4edf3020c2fffb
MD5 57fd659308d58773e80ac09f88ef01d2
BLAKE2b-256 7ab1333e8d7f8a056b0c2d2dec0be5018de3556b77c0a89d82e15178e8196c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0b7f6959528d6bab66c9dba37e2a2d1ee4855edf145c2ace415dde5bfefcf101
MD5 90cdac4ad2adf99f311a02a08aa41aa5
BLAKE2b-256 4b10356a550ad20427e94f904cae7809b672dd94d8df3b22ab05825d5c8ffa33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74eaef01e5bb22c3f34dc61dc0ad7f464b63b7207b01f3ecac937cb24e334282
MD5 12ff5e2932015ef3c94df4336b418b15
BLAKE2b-256 0cccb95e1171f6108e3881b41ad703a25a664eff025a02d609f09602987b3747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a13ee4ec0c7dfa58e841b449f12db404c5d0612ea91b324e7ceb29fe2990ddc
MD5 55707b444f810bf6ec03830b8ebe71d8
BLAKE2b-256 b7afedbcbef3af0f183a871f88bb1c859edeb13ebec109971dd8ee6bb9594e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 834b42da8f045edf6df6b1baddeabe83811888cd160446abf77ce69db679e6f8
MD5 95d9f402df13baf8a6ba98ca6378e58d
BLAKE2b-256 d6918d8c8fc86433ac3b644c96ad67edd490a3728fe5b925ce023e09749d8bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ca39d2c86099d7021596abf8600c0c01e53b977ed8e0eb13bab848a0a2258c3
MD5 ab57b97873ddedd82f9e25cc4242ae7b
BLAKE2b-256 5be23b167a94e0de1bc0650c428a554b11ddc24f551941487a8b658b3e695bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d932c2c00c4c6e2e98672cf9be307f6ed360aee647c101ca9cf8f7393ffa04d
MD5 6bdff23ded71a3810206981d3f5b4238
BLAKE2b-256 e2da740f878880b064118d45dc745048f7f1542d4bc9bd416568d5b86c4f5920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 344e904bf8fad8fe283dcb7062c4836c859e731af88f615fd0ca56ca51c485ab
MD5 4ccae5697ce91a853d3e8047b515ee93
BLAKE2b-256 91e1178069165e463051e7d14ea158bbc303a9cabfab871c96e01a9ea72f7610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 790fa03e92fcb423fa8a4520f4d90c527d1937fd5b9c81e753baf7eb46e42c12
MD5 d530a6039f21c4a6a1138b8181c7e631
BLAKE2b-256 d6d6b9ec398906d9e8c566524884b37e74fc80e6c809696b62c8fd8bc437b1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06d4ee79ee1ef8fd223bfa5ebadfb5a2c85b27d14dd0e63284097f640ef027fb
MD5 dee5b029b7b94eefe7c7d587d3043742
BLAKE2b-256 08bf590fe2befea3b56d743320c289228115b9d00217f61c7bccd2b1a6f20a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8a43ba7ac18719f01165345903da9bbe954fbea7ce79718a2b345d86d3d158d
MD5 f909a6e645bfceced1c5253d5b7d13b0
BLAKE2b-256 ba3b945d6868fcb90227ee4acc311d42e5cc1bc91acb7df46f3bc30a0a21f993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd35f03e5d1f4604b09649c7d54fd6fdd77be74090289e6501a990e914a89123
MD5 da440d1d0f170427a8cc4a5b346efe17
BLAKE2b-256 9b6fb62bda14560c401193d952f8193fa6726d179b5d7572ed8b11062f633eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fd823345cb79d820b9a611d4b03ac0c5dcb013ab91bcb162cc8ec2c7e35cd72
MD5 6b8e8edd9a9b0402d6f167b66d663589
BLAKE2b-256 e9da2853670b943d0102afec0615d13065bb6d3a40129cab96666d03be1d0044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3127b3bf453995b5a4b8dfdd302f2635cd5b9a200dfc7656a46765ac35be9c14
MD5 50eb1285594892f9f9a96adc3771fd20
BLAKE2b-256 991bfbb41b5e196eab4a20a2c2398b42ff94754030d99b8b2daec5e0de0f4f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08ad1ae30a527828f413226a1ca2a350dc725b29485dfcbfa1169854a58353ff
MD5 c3627f9c1f684c438f22665aa8afe601
BLAKE2b-256 df932b802f99d94fedf5fcedc1208b4f957cb841fc8ea5a95a7bce3e07e55220

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4a248cd0896b63a980351d746933df2bd22e38f4844e73e21a9177351dbe496
MD5 1612dc212dfc9b7743208e7d982f7bb1
BLAKE2b-256 e1ca1d36d0472842dfce22e2978304392633e5d561f06faf148da4827bfd8d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 91c99dd7a6ad9a65ff856beb5c4d75089ab3d51e8b4657c18d1c6aabc15230c8
MD5 3631a045a3cd90189926cbeb0f0ded4c
BLAKE2b-256 c30173d798e48f93a48c7731df674715c090c7e6b74eb7d0ce0f8c0894a3a6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e425206ed53b831121c912467b4b86e97fdb80a072a264e2508d884dd65e869
MD5 3212dadf7e9b16186ed31066bb4aad31
BLAKE2b-256 118d6af901590c609a32913415343f2b6ae5d27848c7c8f0e447a6725bd3ec7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdaae1fa0fc2fb250f901fe35aad5008f5ecd78e5f7d8aeb08d8c26e7fda2345
MD5 9c054703ad47481f0fc710cc70da5b65
BLAKE2b-256 a5c8cdacac69ea2328f68b1340a3959337b6f76c28259b611d11b52c785ddb11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60f5bdca6cf4e034ab7c10842684dd9d7c5ce9c8dd221c7cf549cba8b307cb30
MD5 9a62d9d0f9bd180df512528da9b70582
BLAKE2b-256 6b180c51f892d023c5b8de4c60ad580bc66b784f35d6c03828f7dca691b91d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9380240dde315334b6029e06826ab9f5959a51111c92dfe67bc8edf1b68fc417
MD5 a2015b869c17615c5b91c67001118835
BLAKE2b-256 41eb6056fe4999a000571181ff22251e4e9e3aefe0dde88a0cfda5c746019f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdca363a54e6ac0ff1472f174815409a480f8435e146424ebc412932f226ac0c
MD5 5c4f5b66d191a50eb2481fa4b4da7822
BLAKE2b-256 560f0d86bc225eadcd1f741c7c8aced3abd1af4d662725ca89a24d18cc96b85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4922d4405f77fafe20deec5a8a78d43044f9cf454a5ed391d89632e4c2e2a713
MD5 b2025839cd31b0f08b200cf85b8e6cd5
BLAKE2b-256 22207b57ffd7486a105b22585b1f694d16b9d8d383fbf78bdfe7d19de9784b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a3aec40cb2a465215ebf66f61d2ac12927d8d45d65c875b94e612dcb554123d
MD5 c305b0937b6fc16d8c79ee3d04ebf3c5
BLAKE2b-256 9a7ebd2fd7b6d648d02ae1daf020698cc4761b3744857184abc17de0d2515e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5113295cf254f3abe8fa015e1d38ed4de6a7de18012ec9a84cbfeeb7658c6204
MD5 3b55afec7776177da93b12125eebbbf6
BLAKE2b-256 5cb9fb7ba6d5d95788755dc024f85ac1cac703fea14b2e8561864c551ba67017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e52736db258f99052900d06481c04d03b9fc004c9d051ed64efe62dc71b9ab6
MD5 0933c75373822a65714c96d22a9e0328
BLAKE2b-256 6cd8b47bbdb688131a9079a9dfb8e577e4c1f3edfd9a7c2afe2b5a6a87d6711d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5dc88f102367f469b369d16cdaae2d9c6e9d41aa54f5f7b0a7247f97a5c3c565
MD5 34471fa1d3c010b6827a25030b908365
BLAKE2b-256 acf14de7512246e184c255655225624a28c9f0e9ee51ad885e32228437f64c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89b2763fcc2a3aa3c0f5683dc0c9878827b56f83d115cf53cc4ca4aa6b7e3c6b
MD5 73c67512fc1beb15dc8f0e6b44d6fb0a
BLAKE2b-256 54ea494ddf474c8d43e730f63e21efcb794dbf9a1e42e5dd5b88b3e76767371f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fcb0e51a4dfcf0e85bf7f901c2946a837bbcaaf3bf76f1aa61a02f4bf32ea8ba
MD5 37cbdbd53a9c5808b807c349baed9ccb
BLAKE2b-256 e1255c6a82db84ff0018807e1dab65ecec75f8c6a25d3d15ff5e5e789d4255a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2729bdf98bada366494c3a11ce31798b96503baad2e4e02866ac355c0b199cd
MD5 b1151be147650c172b3ac3be3e9c1f57
BLAKE2b-256 bbebb19bc0c19847897214bfe73d89a3d48e195dac0727aa6710bc02e9552da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 199b00bdaf47da6a63ac393f8bc782ddd1fcbdbb452b27bbd35c4cb7f3fd2419
MD5 58f9b402c1b9616426d237bc1c9c2592
BLAKE2b-256 2466015b1163e48db8b50eee64055ca2f44c17b12c170099d635b9c249303fd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a33239f32add1434940835bd42019966794969a52deb464f5d1c30565260887b
MD5 02872d6b9cdf15152ce8aef29fcfe556
BLAKE2b-256 70527a720ce64570b71cb792ca9397350452d8089887306e1de8596556848bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5ea31dfcc36a1d7107b14b023fbf2d25807a2d17476d049b5c35bfcf3e39006
MD5 d510ec5aeb7b85367a205f68ad45e47b
BLAKE2b-256 1aef2cd074ffda434bf650a7d5c571dafef1a5f9d8835c7a8df72019551c4e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1788c8f3cb7be162b7c1ea053ca743ac380b4e6faf1402cd102bb5786b0d3dda
MD5 95ef48dad7e3e93a30ab99ae8f5a46a0
BLAKE2b-256 ce2cfd2875d0f18204cbdf29cc3e015de417efe9defd025749d1e8bda4377be1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08003c57dd858f4d0a75c6f366b71b44da595668f917b4f4af4ef01b1849f58e
MD5 41e8c99456c852bf77702fa907683ee4
BLAKE2b-256 c10bb95cbf654d521c17dd8f6d64d69fab4313d48ff3b99f53ac6443d8ac71a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 954233d3177179de227a4f67a32694d69453a4a2265a20d3a4029dbc735cae98
MD5 83fcfea2efd9022e823a77f3d3838ccc
BLAKE2b-256 231237c596a017c27833e57f911b6bd847f5de10b144229ead4ce2f395622831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49cdacf5ced07e4946c566342bcc455f276ef586715f1bc93d300abb04ac8690
MD5 fb4668953ab475067c00fe1efe510bac
BLAKE2b-256 40d3a55f9f4bc0402b2bd6a9ef3e8a0bf2d68a6c24e8faef36c4602b26a40b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 331bc90782ad4e67360ae87e157e21d5cc7ceea07bb30ec3b383dbea5e4db19c
MD5 a2fd9fc745a5d181523a3f6c0685bbcd
BLAKE2b-256 2d49476830f793c294e1133a4f39f2188f74e17c2f68d68e2379f8d2c392b7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b79756334c2101fb4b9786618bb277f8c8d0e8215e5f55ab2322e86d80afd49d
MD5 2dc3d711444dc09f7b060d2109846628
BLAKE2b-256 61746b207d510403a76c1005c21db048c1e49e3af777e0a87e23872798daf966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ca21e1742b0ba34bdeb9a6bc4e224e6a587e95fa02758755c19fcc97b1282ac
MD5 5fe040462d030b5ca2804dcf48fb4c5b
BLAKE2b-256 a1c62834763b2897f8b3e6d12178dd6fd6ddb3afa6839f49e4648450a13eb177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6e66876b9cbd56d3318eb661c6bcedff90611db61d3c0bc091a7b5ff5e8953f
MD5 411db59cfc4895279bb1ea7e5ac9efe8
BLAKE2b-256 ba23390bf55db626a64b8e6f1cea6ddc1ef2042faf65a4e96bd1480df5056c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b9504bbcb0a3039adc2b480a2bed711a9db8bb78f24666dd08383c181e91421
MD5 261c1208058643ea3a0f7b162e132a4e
BLAKE2b-256 f09c92bff3cbfe062b407cf5040d1642f976443373fc6c0df165498f8816adb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bced3262f7b7b2c3e0f2d75a9e1783ca902d88238fdb0f30eb2f3bc6819b8bc4
MD5 43424b498acbbb94a0426d240eaf7650
BLAKE2b-256 ca50dec4f716e95bc1995fcc0840dc43b7f15c6ec5efa1382377e553b6602dbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e096a1a547967c11fa7ba10782882b72f60ad06a630a870ad499929e5e62c9c
MD5 dc6497fac56a368bb912b30381b4b444
BLAKE2b-256 be900b31e1365ae542ccd38df124d777c52a612256f26ae7d620c88a9304a759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c83b41d61a5454b95df147948e2f5a89cc7adbb74c03d5c4087f1bf4c063995e
MD5 4b5c3cb783c0a345b1faea70b79650ea
BLAKE2b-256 3f0c338d0a1df61296ba699839ccaf3e1e0a583249e182101a714e41495aa9b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9edbb78dd36007121871b8082767f2962a00d3b52039770d91f6a1c916e40ef5
MD5 f02756b56858d9c149521b4824a49ff3
BLAKE2b-256 31b50c55a4215532e4c7a815e0136aac75b48d3dbb7ba67589e707a3ae8d70dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25241d034a884fa66b822e0bf5bfd7c8c5baa5a79a95a8d29c34176817bc6e1f
MD5 2d0a6c72f97b97a0f0eab5ddf0d3a852
BLAKE2b-256 78a9c960e43301d6d7c96c490ea294185ed0e61e682a6f1033ee2efed00e865f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a117e31160db7811fa73659c1e509855d9d8b75b199ff6d9a6c42e750ae086ad
MD5 a297e3f5c32ca2783cf674d50108c153
BLAKE2b-256 65ca90f1875902edb654163d36056dba6e00e8ff0ccf997e63e0444e7459c7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aaad1f82156e90d522867b964a0fe7e761244e228e441bbf99da1c0fcfc408e
MD5 a321e241ed0f1ffc7d40c58eeb18fafa
BLAKE2b-256 863830126a82e4f8c698d175a317ad6a207e2b16d552c8f590c570b7fbb8ea5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc07d845bd0febf811fe4df8b83af77cfbb89815b6bd063af19a8d239e6d24ca
MD5 154e790f4f806defac393c4f27c749ca
BLAKE2b-256 634251288da3105104ba4b92b12838cf2c636f899781da46f200d89025aa5db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8369a0e725935e9840711e92a5ea13603125846ab486d46cc28d271d51dcef9e
MD5 2bfe6c2635362e4ef6cc902bdedb85b3
BLAKE2b-256 6f7e9b890655bfe7b05c0241ca188ab0dd5d7467d01aeb74fb1abe2d2e5de8c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ceca744b3953698af259ead019d3497ce90aa1631dbe44e7ff020957680e9ff
MD5 84c98d707d922775e986038b34fd9340
BLAKE2b-256 5ae77155207d4169c9bfaa0e6976c30dd41fd6e167fca672cda2bdc26843991c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f31161214c0e73c87a097e7df10517823ec05550e172a05e89b7c8778ce174e
MD5 983557efd851b19f060e3aa260e6648a
BLAKE2b-256 fa4df10ea717c7069a2c0c23543a739209dc668eebe7dd94157491c9f044ec12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4f6b6d85c96ec54f6c955ac7114332ff7ead7939e504aef0b9bc621ae5049f6
MD5 e936b75d5ce5545392e5c8f371ece99b
BLAKE2b-256 397a107bd913e8b9920257b39798b9263cfa5a558ad6af8a020e5b28e78b8afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fb9fd90a5de8658cf81802872ed682d75803c691d565655e0a42b7aa20ea913
MD5 4c58fe6d58ff33d0b779f557a2318d2d
BLAKE2b-256 eba371d8f7d9bc65afe272ba0b48c9cc05e82877265c0733c8c6ee4ea53fb6c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d564c4e7627df2446c3888788a90ca824fd7fa2043346e08fbddf34220e0257e
MD5 574289df1b2315d35cc37866fe8a656f
BLAKE2b-256 0dcf954eba059d1c6c5faf14b3a9a074f258f214bf5df5c1c24c1317fa591f5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 39729b3fa745e12856b6c5bdd958c2c0089c3cbe90ab1af79daf7f9cac82ca81
MD5 e6b3acb32c707fb8531a51d3839992b3
BLAKE2b-256 e26de8c24c8c8db2c5762045537ef471496ccc79d63fe69cf3a4270e938733bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8488586011827137e08cee864a81b50279528ba2b91285a95f2e60e56ac05b53
MD5 a18ceccc121729e101d0c96c5a2cb8d4
BLAKE2b-256 d1ed4bcfb5fba01e706b0481ab0830bf4f6673a745fca4594f476dbf70bd6d36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2fb9e1b45309e3969c2a056a229fcc08f56583278ee2926ffbeb9f31164b9e0
MD5 b6db0091dc7f4b852d86ceb349188222
BLAKE2b-256 e5b5c27f7f3b97991c712c19213721f8d2a1e1082670e7fbfab8125c7a6ae49a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c400a126399081114ca84c8229680f616b8897797fddcce0fa766f51e99051c
MD5 ef73b7e95f01ebbf2a9dc258988908f4
BLAKE2b-256 9caa69d60a0ffef2cac8823d4d5263012b60804fb2544f075b51ffcc69e02a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cc5fca584992c1fff3c86e24db941129faad1d2e7f926025d6e00d21f6ab94a
MD5 d51b14db311d2f20ef45d5f89375dca3
BLAKE2b-256 5048782160b33097ae838526abeb73dcaeab4e557901b87cb4d48260920a9897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be1c0685301256f8d60729a831e4ef1484de36062e389aad63d15cb27b12d882
MD5 1ef966ce455231f6e94389334738550c
BLAKE2b-256 a226b902d12901000a4cc5885fcf68fa25d5e733093d182de1b7da8a46828f85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 208ca59afaf5db8a456beca89ae0abaeac00852b92e92a769d2a1bd2bb3f0b1c
MD5 746cafda6635a99e3a61905f3954dffa
BLAKE2b-256 b92cefc35546f16477c56fd72bef749f682dd9a2baf898058f980b988d6db2a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8ecb0918c89629ffadf76392847c9f842afd3ac67f76bc6ae869385f88f2bca1
MD5 9678d8fa349dc27d44c56ffd8d6a3868
BLAKE2b-256 98c9c834bb6409da7b9dc72147cba78b8807fc505675d4573257c6966ea91439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 929d1bdd692f07049da9d389b57ec04066165768f1d10037902f02e62be291e8
MD5 85e86d355de1eb83772683eaeda58ef5
BLAKE2b-256 4e84638ad0aa689cdb3613cc05b7e1aae3ff0c4f915409b7a4aacee3b3c5565a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9293b9eede895d4716a04dbdcda6bccde52f3c1f0d2aa3dc4078d1092813cfe4
MD5 de77591a6e7ca137b314858ea9b4bbd1
BLAKE2b-256 5633301dde857bdfdb041e8efd98624032341960367c306fb168e7baef3d7e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c40e19656125311eee43baa24688a1cdf7da9809f59d295c1c1bbc7bb942420
MD5 6e55801d56e8a6f1e7d1680afe05d36d
BLAKE2b-256 efa32e18fac76d407a218f0fcfe73817b4c9be589b7f3551912e69f57ebc63b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d6c5d7e97dd5c855f06e1bb933e93f1f71623b01ac4a9268fa659967cb1718e
MD5 db18fb3eb0b4f2c14302f3f91cc0c333
BLAKE2b-256 1fdf27206dfd565a4b7c212fabba92f6132759f81c2d712b352eab4004c4a86f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4281a273e7d11890296fc10d49fe94f96f41108ffb1ee1049802a5b175f37350
MD5 4597ba1624d4412786d15fec1a4dd37b
BLAKE2b-256 0ceaa9d2c8216a749f85709626c201c93b8ccd5d24ac3f50f86d72233ef62bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31613a233ed4c9db4e2e6df957c3e374098a45454cdfd234ea66a4e980d5d3b5
MD5 1490117fe25bf31cc0a0918032384346
BLAKE2b-256 32a4aa89a37624504ef1c8bd475f4b05b8400e0c12fd0b19278c7a6f65b0a224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af175c5d129c6c96250dfec1628340c2bb264fa72eed9b2ce7d797eb93b5ab8b
MD5 960b704cf82a05a54e7b2df695b38c2c
BLAKE2b-256 6ff15dc7a0d60ba5eceae64d387c17b21028a52b1f4d3339a71880d21c02df35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69f39321adb747033067ff1509aa0b428b27875946dba05f9c9bf529f5055c4b
MD5 e4108d7f90af4ad43f11dee873e15761
BLAKE2b-256 293adb0e3a98012667d44d7cf42fb6b9f3eca8b02f9a9e4294a8de8df85c6f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f268ddaadd8134742b1f8bf0490c205e485d04ef2d38796998b0138dc4ff389
MD5 9e01aca5ca306f8730a55ff1bd22a28c
BLAKE2b-256 1416d52237ab90c95fe65340837df20f9d350070cc3d49f2bb4fc58e11415fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa2e43f01fb33c331b237f52b8b0297f2a94bd7b68897ae936b303a7d3bc8fe4
MD5 e230dee673dfa36b3db0d019abad0e46
BLAKE2b-256 48be7d2817d97d7383f2398e6bc2cd899bd8e2bdce1ab36c78adae94853b25e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c0bec7e2c4fd6cbb2ca3facd6084f3dc49239952bb9738aa733beab74da319a
MD5 efc30841e19283a87522bc826317d0ae
BLAKE2b-256 acf24163ffcde6134127294fa593cf9b2a95d18b70f9829e1ecee4316f6f7ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64e02dcc4dddf65191453dca6bf1ab41866554d352dbacd3b5e886a04835ed9a
MD5 be26abcc3e7d206c012222f467266024
BLAKE2b-256 d37149edd37acbd2c4c19c7ad73dabea8a2dbdcd540526935dfd8ab8ed792561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 899cf2f69503ec5f2ccee6be1352dec6d6f085062127be1db872736495dc5b00
MD5 71eda76e740357358bbb26b9de481ca6
BLAKE2b-256 9f643f7edb2dbb7c95bd0951afbb64b94daaa1adfd4ce314d4df0eb958850723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1452376dd52dbc09ff4858d54240092ab6560fff34b25ad272959935750b76e7
MD5 9ac257db6b2b768a8353045749a763da
BLAKE2b-256 4bea903ef29ee26106089b3b7daa74cc9a302c84ff1911e380b819daac9d6819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7561c6916e074cb197623b8d82eb99bb3e827d13e7e58573f88698c53292e094
MD5 2fa58f0e458d1fef43db9bf2a5a5213a
BLAKE2b-256 7adc2107d76d0550f7bdafc8442c4e1784cf1f30e24c5e465fc6fce3e8645ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8d33ede9d5421daa360c94a2e32665fb3f2b1d22b24b24caaa14a7890f682cd
MD5 ddcd27d8c9da8597c61a399bcee153ee
BLAKE2b-256 14b293666c3502cf0363c67c0fd47e4a617a052986498776075d68de376c6c0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef2b2e494ce0407a9e0f25b34b1e2e7d681a9ad914a4f13d522789ac433d9d07
MD5 0da9f92ab39c5449cd5ca8380e64aff9
BLAKE2b-256 00d6b438a9f3595fe88b0d91f425638fd1ebc9e5a37215e909fb7e248b1589e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 904ce602a29f100f16dfccbe4caf0c136db4ef1013ca5a59d7c38945a7fedbbf
MD5 fab0c571dc24c43088ba4908a275b2b5
BLAKE2b-256 66934004f6305779e9b94064d7fe41e2ac4a06d50ddf58ff1dadf7cbe404296f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 391389d4c8c0c9c4fa57fcc0c9161e7a369a53476fbdf0a6109567e456a4e8d0
MD5 df1217934dfbaafd423997ccdb4ae80c
BLAKE2b-256 da14161c7054e6e93a31afa787a2b0fe7f196ae69d152b3f83f8512911015d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8036c8905752312cb1c797df123ff139748de7bf7fe82080fd7eaf2c86b8a1a
MD5 2d07f281691d9e5aa86785c03d9cd1e8
BLAKE2b-256 c31e52221c615c9ae824d70541ac16a8a1bb5f24f0978e662bbd8b32eca809a0

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