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

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (490.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (565.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (471.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (313.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (462.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (490.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (565.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (471.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (462.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (491.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (565.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (471.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp314-cp314-win_amd64.whl (152.7 kB view details)

Uploaded CPython 3.14Windows x86-64

circle_of_confusion-0.1.4-cp314-cp314-win32.whl (146.4 kB view details)

Uploaded CPython 3.14Windows x86

circle_of_confusion-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (313.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (256.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl (462.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl (491.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl (566.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl (471.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp313-cp313-win_amd64.whl (152.3 kB view details)

Uploaded CPython 3.13Windows x86-64

circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl (461.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_i686.whl (491.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl (565.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl (471.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (313.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (255.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

circle_of_confusion-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (265.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

circle_of_confusion-0.1.4-cp312-cp312-win_amd64.whl (152.2 kB view details)

Uploaded CPython 3.12Windows x86-64

circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (461.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_i686.whl (490.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl (565.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (471.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (301.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (289.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (312.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (255.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

circle_of_confusion-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (265.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

circle_of_confusion-0.1.4-cp311-cp311-win_amd64.whl (152.5 kB view details)

Uploaded CPython 3.11Windows x86-64

circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (462.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_i686.whl (491.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl (565.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (471.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (313.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (258.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

circle_of_confusion-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (267.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

circle_of_confusion-0.1.4-cp310-cp310-win_amd64.whl (152.5 kB view details)

Uploaded CPython 3.10Windows x86-64

circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (462.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_i686.whl (492.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl (566.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (471.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (302.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (313.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-cp39-cp39-win_amd64.whl (152.3 kB view details)

Uploaded CPython 3.9Windows x86-64

circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_i686.whl (492.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl (567.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl (471.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (295.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (303.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (314.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (462.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_i686.whl (492.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl (567.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl (471.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (296.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (303.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (290.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (314.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: circle_of_confusion-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 3345ad30d7c3a2fee01a1379126f35742e62528ea912144df7bd24112d24508c
MD5 974dbbf3ce83d774d399d0cc788a71a1
BLAKE2b-256 d246374a897f0c991c68fb044a3c091a5be3ec94b98674db6e5f3f770ab6975c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94457a6913ff35356c9be4a28e1161772715fc7ec5c9626014c16eacc3d301cc
MD5 777766b5c32e5a455aa6351125ffb0b4
BLAKE2b-256 5d9554463fc79617773700fa2d9762b1c5f9ee8df4bd91326f6ec7d746d08bbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0437a23682a381b36f4a58b78401563822e95c1f54573751755b1cf63f301034
MD5 072d84f53e27396f2cb0deb9e93a6aa9
BLAKE2b-256 4921f0c6238d146a679b937a5004b9e7dab9a03a3191a95f386acd62b777a46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bef0d579b3d605e6272f3919666ab9d311862b26680740d2b62fe5905848c06a
MD5 be43400fbc88cd28b150e445f03a4135
BLAKE2b-256 7167e77b5ce8cf2558759aed0a753d21af34b142c91ea13a8b149019352eca07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d542d3182cbd5bd03c1a9e5c4d01744667fb44e4b51171f7059d77c9e08f3d6a
MD5 98d2f1c359490cfd3ef49d3824b1d542
BLAKE2b-256 21fa1a6abe2b3dfd111a57c660150c1c7c6d7f3cf1fac7ea3f4bfb9c2f658a00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 948d751493451276d321b119eabe03f62a891d13e7eadad3e3ab3b4922a3d644
MD5 98882587f05f8330461c7a5e5084b2d8
BLAKE2b-256 1d408735b13183ac33ad6d4d8520eeb2469649b5bf793d294d3ae5fefb2516c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25521bf30bfc9fe47e3461f794dc4c8d6697c0a6b8c0dd350c8565788f2cce82
MD5 621f020a79b0f1de49fa832ee72582d0
BLAKE2b-256 af929078071f933fcd1eb81cae134407f81ea0b570f0ee6d2e238638240adda1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cdcee7d07a74a4ba52022fb89efe44e3ab2b82338bcbc652aef54e5ffb3f8de7
MD5 3a01bbc54a1ffdfa1c73df07b2f96de2
BLAKE2b-256 a489dd8a43b57d186df1d3c2c7c0b354682e8677fa172aab75a186467c5f339f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52a4b83d466c993571ad8f56a388cddae7a25b52379e6d7c066fa787a6dbc5b2
MD5 c39b8b045b089fb35205e269c930cd50
BLAKE2b-256 44978d6eb0efacd4674a39819468bfae526226f5de6cad61229395006633762e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 095f0f25b5b4ac8d5d1ec4200185adb35c70dec7e2c571f0a0b192fffe37454c
MD5 5147c5a5dac83b6255447770ed088a81
BLAKE2b-256 c3f589862cba392e47f2d582a32cddfab208607a419a9bc488f236cdc2cd32c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c8f56d0242b2d7f3c21245b814bde28c5d6ab6976f25149fa9b320773e10cf0
MD5 2b68ac2fa938fbb7940d8c1885af433d
BLAKE2b-256 0aef30fe715823934ee957a05417b5e56251928a2da00c6af07b80405e672961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67c6b9b738c5c5dfdeb104e1cd33a8bb55a577ef2c9090b4231dcc7c458d572e
MD5 ea4552c8e1d486e85646e76f0d22f7b8
BLAKE2b-256 a2873faf634d697806caba5dd8f082615d8197bf06a0052343d829b299ba5c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f7de9d966965bbb2f2672b525e4ccb931a397a1562155787e2bf6199a836db9
MD5 13392a35f3c3fb84587c24415e019e1c
BLAKE2b-256 25a422a265e85769007e267630858b908dabe5d02ff0600894e17fe2e762f977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db24290b9993d9c3baca2dfc959e92a26c9ef923f66207f850e9559c08c2d142
MD5 fe4a1c707f557f9c8cdeaba39780fbc3
BLAKE2b-256 45dfed88e9f1451cff42c0c9fb8eaac8a1d11dc282ab6613a5535eb47bb14cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbc39a36c2e1032e5cae8f007004eaa86e216bbd4abeb0e224c6df59043dfafb
MD5 8a70a3980ecc2f6f88fa71df2ad94d98
BLAKE2b-256 cb273d4185a19db38345745c8a4c7720bb62b97d00acb489fbbd61593cb2e1b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d7090ddd8d626034270653da06839c531a40f4af242c7a0639227a2ea35df16
MD5 8869112d5b4950022a4dc540baf8e5cb
BLAKE2b-256 3337f953fa0612cdf3f64dc78790bc96192b834ecb69e4eda1a48e9e40e92b2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 433d90039516e43a858a958643ae9b0010f221acecad37edf75955d6e51390f7
MD5 4c7a0941b17eb3894e1428d81dcda927
BLAKE2b-256 aab85c9fafdd97bb8dc737933769718950c6f128b7f24d83e7dbd6cf5d89902f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56ee83809896e692f820f55812653617fe681a4d9b79bee0cbdabcafa034beb1
MD5 e5c5bd131d3f3aead6cb6941a85b38bf
BLAKE2b-256 f3e4456be443296ac65f5c5c33ec461ca5caec7f6690ee278ac54e502cd23b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62db4f26e6b77f2b87f98b7080c89a6954aa1da16e6aa1aa78fe205b16703f25
MD5 37e4393510104a43404a6cda7ac159c5
BLAKE2b-256 f579e278de14d3f575897d50d59dad97294da6eee2d2013d5ca8cbd527761196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 783ade84cbbe3f083efc55c3a651a1dd605217bf1c2f57d294906e61aed826b6
MD5 94dcd699b7103f235e8c3d1766ca446c
BLAKE2b-256 557a2c8441a23b6859ab679daa8279a56f50611b1290fa9856fcace1d699005b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ff641ac9ec792e3e0f675df98c23fd1437d065aeb95b532eedc7ab5eacbb7e7
MD5 1da482bdc07e1869931be550b70e188a
BLAKE2b-256 4105f19d93c4b43e5367bf3bcb74ce8bd244dc3ec8405f153c069902989cc6a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b1048d88437c04126c00505b09cd6272968b864ea33b4528336f8a7d3e43014
MD5 7ef0d9ddf6a5e5573353f5c2c858a4dc
BLAKE2b-256 f6683af981ee5bd885551a9fa18acfca48b3c7612f0f94b3ff2ce519d9312c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24e9e59c8ce6622b4b73567654028c52860abcbf73b0ce92311e552fe48f1724
MD5 2749c5d48805e6dd9b0f6d43fb730285
BLAKE2b-256 b2ae09146e9c33d524da83a2772421a6faa78764aa52fcd7381677437e3ad335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5398894caa309c9fc8f61fec2a262df02266a0a394a9f446611b435b64901955
MD5 4983978bf2a6a87a23dba5dd4d2498f3
BLAKE2b-256 0774a8aae294e234e3a6ddafe858b26f8e1a74f02355fa421157b938eefdae09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c8b4726a7c7188aeb1bdc790f507db371649f2dbb9819402aecfe9493418380
MD5 00ed34f6c8c92fdc20c6bf67bf058bc0
BLAKE2b-256 1d3cae7d07d5c1bf41265580cec32d921bca0003644061ac8ae64fadbcb9b1a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7df9c6d4864f20dadc83ebf79761651381626a7b23da1c6669510a4df42bab98
MD5 c3d94a843b0b3aa30f22a11743e63368
BLAKE2b-256 558a6ba2940841817b3cf6cdd340e22be3a8b85e261be74d9b817a3fb0638148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5a84e575383dc2b802b788a72ec330c2a339be78ee5b8c69cb66bb70b76bef9
MD5 fa466b8ca956b5651f9b171946027b56
BLAKE2b-256 95a810f50a162764b6f002fb7d6761351cdd64ec6910dc340a3016dc8a08ba5c

See more details on using hashes here.

File details

Details for the file circle_of_confusion-0.1.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f04d06400da634c8e46c04d5b9ba8c8a695af121bff5dbc1ab4191391c074e3
MD5 db2c531994952abd886ae46a92a720ae
BLAKE2b-256 dd9b3ad078cb978915d3f5e7d4f8dcbb956651f6595c1623076e270e05eabd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1f0834a4c9ea13728407a5120d936835041fe857fd2c73e12850379f8fff5bfc
MD5 be3f8d0cb3802896d6490a5bb3e5cf5c
BLAKE2b-256 dc01b1c92fe4d31cd1769efe1b1ebb6b5585f4466d475a5ddbc496b665eab729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1d2403cd2d2de49ef5a6e05f1cfa496415bc0ebdfe7498c2ae02f0b8e40eb07
MD5 3ce2fa849dbbd9b3564a9ace3d1b00f2
BLAKE2b-256 1d8e3256e9661bf9d933b1a345370890e38df5b1b6bae01e6a0d59c7f22b2b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c4ba267f3733047d8dd75467e13d587062f8f553b566e46ee424a217e1fd872
MD5 e24b5ad3cd704f488a6b5721733c9e42
BLAKE2b-256 d57d6569c54f7e7ea86325d72ffa65a02ef40c8ed7de25f2df41431f91bbbeac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf1e20ab71385bba004ea6a8d3d361c6cb7b9e3746df6fb4b7009861346f763f
MD5 f83899304fc52c3dc9141e6cf7f8a48f
BLAKE2b-256 e7d1f53805c79695acf51ef4a1022cc70d02263219308907503a136aa3af58d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 805ffa5b2bb2b5f9451f22d3accf8dc32b68bd6c6279ebcbab4ba8fa465a422e
MD5 812e494b440e644deec6da5e2541c275
BLAKE2b-256 3281a95001661dd91a5673b13bbb14c9831ddf54a712908e81cccc478feab229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02823f5bd927db2582c3004dbbdc74e7cbdefd6e4f51dbc07566599ad6dd05bf
MD5 654a7de03a276f94781ded77a23a6d4a
BLAKE2b-256 78dec48009346cbde3ae83c88e3822535d5825070ff2f8e2329772e9f0f82216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cae3ac995abfc0d0c279c592c899e9bd9b19b28fc48328699b89209f7f69eaa9
MD5 0ed9dcf7eeab6afd976a3e7ac0126e63
BLAKE2b-256 23aab269e7d6f237f8c177dcbed0ec2a345a3f17c8d798ffd2590b99a2b1aeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83e417958d6262c08ef5d063a438fc7c355907a5928436ffe5d65d9233f0006b
MD5 e2a197060f55e2315a4a1eed574f911c
BLAKE2b-256 5425308c9742e6bf7dc59e4fe330d8cbe1c3fa8fbfe3c1dd588edcf94e6500e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 764bc571d83f9211450dbac486e73f622690ee9c3ce006faf9acfb9c95c75a4b
MD5 4895c784af2df669ce23d875c9b4d059
BLAKE2b-256 8095574d2876b212ea6f9c2e403b580a2928c49cd1c97fd0a28a144095480a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20bd65751bedba76d5cd9bfa2decf53fbbefe59e00a838f84beb53aad562a5a4
MD5 ae6fcada4de2f54ddd358560045dea4a
BLAKE2b-256 958a561359e700ca4c0a9a97eaa2ff7e817979b683cb47574bdf2359e0d34cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 110ee47e768f51ef0c8c114a441bd0b956113b1f72519f056783d758733a4827
MD5 0b6169f53c6ca08b07abbe7ffcabd9b5
BLAKE2b-256 fb64853267120f7adf9d3194a2670bc72361b0934c49fc4695be3ac6f4da8fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8df586eedb6ba0a79e123ad5a9680ef1c4ba56d56b897b46e2ecf07cda4232fa
MD5 16a665a6645236544692e358e977a27c
BLAKE2b-256 c50601b86e02758d5000e2d007e0f0369523b263516a049f1cd86292706a37fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 944fc71cc7751e2ce72b1fb6371ac53e91f3f66a069f753cf16f9e2065a85ec2
MD5 b2359aa275efc1ab56d520c2b2b9b0ac
BLAKE2b-256 bf56887eb4d1e1f9bca4e9241042e67cf99a2d8a42616cc811349b34c829eee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d28cb87133d91837ec646e81b2a90fe63b4325feeb334a23c17e8487b3e6a98f
MD5 979311102e420357d2901dbc8198977c
BLAKE2b-256 485cb7859c90058d4883e005761e3d289e8fa984411385b4df458633e47c0b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9947b123efe6bf011854e6cae16063d51b57dce84004eaebc1f39a1f9cce051
MD5 4280675e2980625e114f895846d74e76
BLAKE2b-256 a4e3ec604e51fe46b3cc5c7addfe1eea8014ef2c2b66efbd674e8cb6b8f81e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be5b700ec12399186867e742b53bfb112d1e1752baf1bfa5bb94fbe23fe98188
MD5 83b09036fb5a956e7007ea659ec68e30
BLAKE2b-256 8dff683aa7f0b054638baeed69a9ae4412c1d1f92c625e9813896a4e5f498eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1c62f3f61beb712496a26fb6a87658fb469ef3fe1f3fe03519549706425787c
MD5 916871c0e12ccc0349279a24e1670908
BLAKE2b-256 585c857830cc8b8b60997b3d32b2f7993eaa926e01f1c0b77511705ce8c0348e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ed0c04d5c4dbc1c4d81003f8a95e5286c1e8dab36c0a3fabdadbf22ceb1d042
MD5 303f6d147e7337cba8b387fa99ff4717
BLAKE2b-256 bb86fe3ef037dcc4b2789f088012e074a11b4f66de3bef1475f8da2672d736e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9773969e9836afb745e22eb280ac055da9de50557f0ee1bdd6c2e2f110be169a
MD5 3e415ec0d9c9a76250fd380733e20686
BLAKE2b-256 9f020ff59ce970a75eef2f945c5eacfbd3e6b783fcb8abcdc3048a6b0bfd25b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3daddc0682167de67e4c1bad3618d134e90f7c5ac60f104ea9a408c1d46d46be
MD5 8f7387b6da28c4c67c4081d2ae3e74d9
BLAKE2b-256 e54a4111c967124300b17c9cda17f242866ea318faf9bd1582908aeacf39cfbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fd2fc0503f1a49f780eebb3514d344fd706ff3e180f367b0b9b98d070ff6194
MD5 8a185c3bda340c9bd402ddd6a9b81d27
BLAKE2b-256 346e902e3a53716a6c13f2adeac77cc2d35976141cc3dc81c8b39122def21c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94b7367fd1f1eb691e2a21c8b7fa9494dcdfdc3a585e8ed0467b1ef396923078
MD5 c6eeb52e8c35709f039c5082a24764d0
BLAKE2b-256 becb51837e4243e557500ff0b58c7c8b0f37b6c0e5aaa80feed25bc0a6b0e024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c417cfd3047233175159c7d2c069ff5bce43cd701b9dc01fb85a8456cbbed3a
MD5 8a857c9019ea1a40d72379f7c9ee4e80
BLAKE2b-256 96edcec0029c111ea12cf6c5f878ec0d5508a5fe78f9d0ec5747a4335a26c1fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbfba8d9b0bba46a8d325192790f1c31c76a0dfd0e50a20786afbd581e26cb6d
MD5 29eca683b79fe960c959f57db9583a1a
BLAKE2b-256 b5859effae99611c9694cdd978d0d3d17059a18ae89601821c3cbb6e15d40ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 668c7eafe0ee132277acb6e0e93265ed5dc58fe25b55a130d3413442b83413e6
MD5 f290558761b6faa1eb3aae3a309d22da
BLAKE2b-256 938abeade52a6bcf09c57260201f3046a87086cd7d6cf6f4943195c1507574a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bcbb4155eb0c9e8c3f6f7f7a7db588ab591711dd9a6e69d0361d78bf85d841f7
MD5 78fb8e798e9420a636e11694e09fb62e
BLAKE2b-256 d4f06b3e5d5a14caf9798660d1b1cf9ce232f432a48f9c98328e075ff23de428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90008f6f058189206244b4a5bc7dc9877052411ded6ccdeff54d8806b65d8e3c
MD5 804b1b6cd52a28abcbd50236fccd0dee
BLAKE2b-256 e0664f39e6e3c368bc57c2ace4d64884b03e19dd88c981d2b46ccd8fc07ad08c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b154acc5aad3512b24623fd062241b394e5dc4a67c4decc3d20c3cc91bfada8c
MD5 174a59ccb7c4a60e44d6a2368faf5097
BLAKE2b-256 2b0518fcd94a7fcaefa3d259e0f1e4602ee21814ee4ab73e856d0d4cbb1f8816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11d48bcb36d09f459af5ab1ddda6fd298d2ec92a1f7708a284166a8a2a3b493a
MD5 6fe4c5bd762e0ec19709b6f04e0907f1
BLAKE2b-256 f5644a427d3bfbd457c68ae90e6ede0bb0e7debeaa11ebcf122e62d20702c950

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83285615f5f550a33eacfb395982866d56eec172f5677d1525bd73ab33a21c3f
MD5 998b60097281fc453dd234b04bcd96b7
BLAKE2b-256 57f15a3cf5558953a3d776b15670ea5e7122c8bb625e274f31228158ce4d4c4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96798b86e79c0803bee3010451d6ed73f7db30dc17539eff9360272a48ce2de0
MD5 9109c40cd252e6cfaa3d84d3eca288ae
BLAKE2b-256 228e8bae5bd23212381b3f804c4c9c0f43732f7be7f663f2d865798c599d4b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb0a257bd3aa59f367b379640b0b85de2037300918044b932295a74bd4bd8446
MD5 abc8b488a9a038fe885c1652d7717528
BLAKE2b-256 6cd0141349c16652f96e02d842ad6861026485c76d54289cf2ac0d921da1e5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a2f9ddca63e3197e0a82ec8cedfa0b24c4f8450af98658210f43c28242e7df3
MD5 11b0385998f190cab966cb139c55aeb6
BLAKE2b-256 8f60c91470e33e992ad993f3b80ef5fc8dc1b22e1302d90024e4470a335c7725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a38c9cacca910b033698bba873b2b0c59b017cb13f8bc296ec8a9e507e626ec0
MD5 fd6c347a4259988e10eb8b12d21ec6fd
BLAKE2b-256 3265abc379533d34e0c9b15b5a115db2be0db7da1a5bcb7f5b201e4069dc24be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d0b4af687fedf2016c9fb923172ba54a35ae08b3c4a9e2b14451b70df7f8450
MD5 93aaa1d42ea5c7e605c074aede32f23a
BLAKE2b-256 24173f73406a350d7858c999a7c69e85f3561b819c8ae200473c2f3960f72cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d176c77a251f4754525406de14bc695272f7b9745856825f87cb5c862f70513c
MD5 291ff42296040ef3dc54fbc7b666d95b
BLAKE2b-256 e22d3cdad4043f4c5458e7de99f4f62d9907cc2a8c686f63a85484bef65badfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 661100b77109c3b2f03c32290bad5427abf78354048b2bbf52e525a88800323b
MD5 8c332f432c0992d227f5c9b033922adf
BLAKE2b-256 529beb3f24b975efde8d2ec674665565d369eec8315865475250883eab9ab7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84c980887b44c35c7b336d338b16e34a8ba083164b428ed06072a2c8b5027816
MD5 5c1164dc25b0f82ac31624f6a970f157
BLAKE2b-256 514b9670751403992b2000062d3e2451b4a50c322531b9132009fa0c6f19e9a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bbec797e688fe07da109a3a7103eb2f471e81415cb288c490f92e2f123d38368
MD5 aac2d6e6a14600a6977f1191409e90a3
BLAKE2b-256 02d0c11f54a0ebe2acfed26478788ebb08f359a5a3ea87baed3451f15136451b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d4711927e7fdee22736250865a8c68108760be8303c63cd69651635b3ff71dd
MD5 89bf62224d5274f9dac45b71f84ac81b
BLAKE2b-256 c3fdcc823218d06e7f5747aaa1c19ea7ded62d8a81efd7dc1e4d5cbaf972751d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 454914b7471c8e66348169f6eb978e22cfe516710f673e4a07cc27dbec5efa1d
MD5 82f95185aed970d234a15344b6354e83
BLAKE2b-256 472205759f7d155dd6454a26244c1f889d95012d0ede326bb2be8053b61ccb39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 819a116018b529b884e5ccafec1e30cc60a679e8c6d25e464c1249e8d198dc9c
MD5 ae9ea950fd873e34e0ad87935cd79f3d
BLAKE2b-256 b372eaac7a8bf4bd8b30c4573a4b01d93f7c309b44d5009f7495d3f07bd41e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79f4e82e9c94214f88b213162d415425e5ba627e48c8b9fef95dead3558ff505
MD5 967c3279a056512b6239412bba2a6d27
BLAKE2b-256 f745191986035dee6e9696f0cbd14af04fd4e169efce4b2e10e97e50205e89f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e10c29bb9f2b4ef62d8778418ff38fcd30ddd000690b978ebc44cd021ab9501d
MD5 94bf3b25b28c36f1031b88b06e16b41a
BLAKE2b-256 4dfea7df3cef0e05418db0246e22c8749de1f643e8d3e7002cd274e502c43daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44ee2868424add3a35798a66bf53cac79621188e2a9310989f39ba13dd51aa99
MD5 f8024ce2efa5b304fba97657147e0789
BLAKE2b-256 02e91947e57d1d2a70812624a3f5b79f95f5f9d9bf9bd145a9fb711c5675ad94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ef880f748147a018ef36119d94f78beab8ebb7596bd828a51ca662a30ab1c32
MD5 e7328b2799bb838863ea92df237e9512
BLAKE2b-256 f1f0fcb8df86d7071995030becf4dda8d8b2029deadf1d09861704b10f3d8039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c2621ec4834604f2990b485dddf3a1d0e6c9915839e59aa68b5d406a4068787
MD5 3f4731fe394d7e5a13a683155b6185c1
BLAKE2b-256 d906d1e1fe22adc6c7016d29e522466a8e147f78deb01750a8ce1f32e910f40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1bd5315aaba06dba93a458f12b14e97770a2c67e6f5658b2bd13c1944b7a6c0
MD5 4568568920a016af83d08abde7c74de1
BLAKE2b-256 935af4db82948d2e69624586607f791950e8e656a0bccfc2a6a2398321c69909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9f5320f9acb930fd79c2bf918661e830221ea43393aea9e34b4693b9dfa7749
MD5 8ef9a486c866be4c9832acb1edf361a7
BLAKE2b-256 f8c64c709f43c883911e7844e48111262d4857629073d81fdaeb1bc80dc2484e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 febabd5ee08edc11f661e6fbadec2e98eeed78e7a79e902e6ad1f4e6af1c0ac5
MD5 e441cee57e75d65292d932cdb27c693b
BLAKE2b-256 40b73e9beed4cdebf17872ffdd9dfd09ada6334f2b18dd465acc7d747bc2568c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ed19b9a5c283191cc5050ca5d5ebe0dab844026a0fdeb46bf49f7898346f165
MD5 faf5f92dc7ba7dcecb11edf2225d95b3
BLAKE2b-256 8c1fb7b26446e4ba7e407248dc5deb680789328dec53ccd91b2388c2d999742f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e256265d90506f197294d7904fc3e1ed1ce6f04397797da75d2e09516a34b33d
MD5 3cd4ad6ab3f350378ef55e5ea8ec32a1
BLAKE2b-256 2d91c701e34061c33776f1e097b28e99703fa4b53ba2114778ecf1067376f325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d5fb1a5d6bd7fddf0b9eac42ebc4879816ea3ad0f90a06719e1a6e736ef5f5e
MD5 b1e619c578fbfc5ea310814d30223482
BLAKE2b-256 86c19f44303fcacd0f56d4af0574b17dcf8f12c382cc76a88a25ec3babe64941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c45449ce92b9e13fd137b35054f38058f04904e184bb5bc0d87be50cc801244f
MD5 1cdef9f15f4287e627353004fe903d7b
BLAKE2b-256 6749fb203ea868e648f6de08b4527a564086ad10b9dad32fe78f57550a874b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a607e7836e49108cbe6d7b414186c6e05701464e2c741773f90597edcc2f3cd
MD5 230d502ba58cfd0c330c0dd32592cdc1
BLAKE2b-256 6f2264fa656422ff4fb8c3428b09645be7beb1be194aaeaa62a1a03af0edfab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2634c540459e6ec213f90d05191f23436755615191b1a3adbe86ba5cc33afc8
MD5 36d4f0b523fb73630a4d97226407f6eb
BLAKE2b-256 a2ca62468affa8731312fe1579512565e303217079f9b7a25d5dae697cacd14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fedb9a4251458ed7ba77df687685b92cf6fb8608d3e6d3104595bce0855e9bff
MD5 71d09c07810d3dfeff6e43ac7cd9003a
BLAKE2b-256 398689b40837446fa6edd45e63bfdf8a067a0282bc8c6d896ca60be00e4eb174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d1aa0b3b2e609fac298570fa48eca05415d44a6134d07514ff470f868f5aaaa
MD5 5cbeeca75993252a5e047ac9277ac5f2
BLAKE2b-256 78615b7906ea2cd6a9105673f34c8b90c87aa18c4af58e97ab5940643427cf18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 986314c984c09f61125305eb1d4e1bf92ccc10ef420f48e92d50dce355799a12
MD5 b519b69d0d0afefbe4b207014bf744d4
BLAKE2b-256 20fa2025fb95fd28b490565f75dc04e0332a81093d246b3077da93efe04a0c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a26f84ca78d6a73b365df63e304313e2a7d2f1176e71cf082e007f975e188856
MD5 fbe996f8949c127b7252746ddffb88e2
BLAKE2b-256 61e51ae495ccbbeb8954312ea059d7bf7a86b522590b84297c2be6a8ec2dc9f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a686747896245d9a754ab35d1bb3ad91db814d364b235d2f26e2ee896a3fde8c
MD5 74858c03de48c1d6a7eaac14007aa671
BLAKE2b-256 0a6d36c33e5561d9589aca3ac09906ed6ebe2952e46ad15965b39e0b22332079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53947f7b641437a1f1b801731c81ccd7f5735076b2a77d9807a3fe7051117826
MD5 ee72bafc9508e39d68cc1c380a5915f6
BLAKE2b-256 1ff8de5e3120f2eb94474c98e73f8e0a9168d9efdbbae90f47cb54d62fafd12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0887e7a9ce4d380bc93c85fdbf29dc6174858f92996f2125a8884a268818bc19
MD5 8dd4068e69d4a9b83bd43885a11197d4
BLAKE2b-256 e3210285a3a075e80ae202b9139c4c558ca1db04f69be7224675337e5b273511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3004236df388f378489d57d54ac1437bfcf2841b7f220e3b870ae39ecde52e1
MD5 f14fcdc83dc5f9217df7ecaa33a0b378
BLAKE2b-256 480f31a1bd9beb17485a179bc7cc70fb64711c2cf906c249829a80facaaa0488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa7ad1d0ad4988224e7ff07a4286dd2148ce98369b26c6ed5c6f86186dd7d819
MD5 279e5e37a14229c8147da2d1686ab74a
BLAKE2b-256 9a7415185304ab2b5259a31a4fcec577962d05a7187d0c1c3479b2cc90385c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a4b1d0917146eac2c4d0f0b0da2b8a10a50d65e58770d4283e7428bc5dc3245c
MD5 95cf066e9a4f9364ffd4f11231faa92d
BLAKE2b-256 5cf7e871bc40cb314842751f0d423438b21fa5bfa64bf0392fb9063e0e90f698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 075ca905487af9bc44721ea38b3862854a0f3fafaa20741bf0944d3c3bc7c978
MD5 8453929a0c013ab4728ce6b78eaf02ab
BLAKE2b-256 da435155a0a5524760b5fa7f1c35fc1215c61861a0c5a766c41eb69836969f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff8eae5975cec1d01210c1736ea33c9a7378d7f0c6e131a0a6eb311cb7fdb0f6
MD5 e70ce74bb18fd847a421bec6753dddbe
BLAKE2b-256 bb6436de101698ed7b0a647db6be5d3056545f723d5b724e9919f18695e9647f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42cb1fe8be53569641e4c516eb85d0c670e88d2f910e483414871146f26c80ff
MD5 9df81061b4246f8232c863ebd0466e92
BLAKE2b-256 4418ae74a3c5bfe0ce6eeedd8f378db13ac31705eeb77122eb33a09c44779749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe37dc5796bf9da7eaf2dda63f3abfe5cc87ac2bca8ef339635668bd3481ae77
MD5 d27007388bce98a3899400164a58ff06
BLAKE2b-256 7bf4ef14dd21beeed1285a06e755c0dadae4ff6a6f2dcec3abcaf9e0eb7600e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4819762f036dff55f146123a1207e8cc807970e05a1014dfed53a4184e407d84
MD5 af29c23f8ec8828925ed69151480d57b
BLAKE2b-256 8f7e6604c8a2ec0805684343b195b8b1299eb3925f52892dceaa69c457101fca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 220b9342546a78ecd2cde90dd0281db012e4017f45bcfbcd4f74b25047d784e5
MD5 6d043417b08f5a48be6df0af469d0e79
BLAKE2b-256 153228794704e909e353895462a666588ef372ed82cd1ad1fa02e8621a489f79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fea0f68149985ac41a935739f33f2929f1bd76bd972c67cd1db9c652b8047004
MD5 2d255371f39e01f8d50c8b185b7a643a
BLAKE2b-256 4a3529000560f385cc0caa6d50c930679fdf15de41e91e870cfb3c5e834fc593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55effd8141a0d0ce8b2604818ad0034931c0d3f7302dfae8e83c6242df98bc98
MD5 af758904490483d228f0a198c82c85d1
BLAKE2b-256 736b2aa406d6304a17d018f505834f2057d5b36083e4c724f030612c4c5d8877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a847e07664b5bf923fdaaa98d98fd28eb898f567a58cdcfcdb92638364acb82a
MD5 d4f6b58862f57ca5feeb5f2602a2ea50
BLAKE2b-256 9842a5358eb0ec12cc5502cc7cc8237d23bfe3e23d8a29ce20956d42ccacc142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03261a87bcd163c7fd9ff147b91e6be2c9773e7a035ad44b6617022a8bf778d7
MD5 8f29b5e39ef6bab441b8bbe32d097126
BLAKE2b-256 d8c6b30e448850cd87e70d4e01a4b189e758f77d3ec294d206387502ed9aa3a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6859b3a29d5a9276e20d539c354be896ea6557ba5ba53a5ca948739b793b81bf
MD5 4390b9a8bef2c0452b1d8c1ecf6d2ddf
BLAKE2b-256 e9a5f9c8c51fb0643553e753b358d90380ef7dc072b6301387ce906c8f679469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24355811adfdf48bf277acd5083cf77d37f52e98acb04224b3921528cb7d7019
MD5 e1b258ce815c18096f13acd59235cab8
BLAKE2b-256 a3acbcf6efe678baa0e283c1521d9b72e4f2feddde77d7a427a0f003b5a2d7cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f8a2274073f97dd169d04bfda0dbc6e28466ccfcbf387969a14894f1da78078
MD5 05960491667485a081aa6f56c3471140
BLAKE2b-256 4cd7ce618a1b9a49f6fc4b001bd8d5d259d938ec76291477f08ad2042d38b625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6aa00acf8a7bdcd56ebfce0f6b7b50e73f86fac32d747bc0f3d891666ad57f22
MD5 38360ba4776df391c8097b99c031d109
BLAKE2b-256 53a5d0ff2c8c1904e184502679af1a2d01a34131b34bba9552d59bff801b5ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de99bba5ef8ee8ddbfd60a91d9058f7d7a96838319970fbd05f011bb9d4181f6
MD5 b48a432a15127337bfb135cc34116ec3
BLAKE2b-256 427ff57b4223f3dd9ccb99f351d9496e4189d396e70ef86401f6a81dfcb367de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9929498b445c0276dd355108eaa5dc1dff6a5c6f9a8a54eaeef55b2d11cadaae
MD5 bdcbcd0bcb0fe1e61d5a377d105d5638
BLAKE2b-256 d3452f4ed185e78b1e5b98458356e3a6ca7c6fcfeab6b53488472313feb6b6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for circle_of_confusion-0.1.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc9caa3e0c9bd9adc16b3f695bc75b79d61966e360d526965b5eac4035d3d15e
MD5 ae53fd27544dc87c4ef614fc8fca2f74
BLAKE2b-256 42e63fa4927c26aa8944cbfb8d1c7aed1a76b3bf7704d333214766805363698c

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