Skip to main content

This module provides functionality to generate images and movies from fractals. It has three main building blocks. One for generating fractal images, one for animation and one for finding interesting focus points.

Project description

Cinefractal

License Python Built with

Cinefractal is a Python library for generating static and animated escape-time fractals. The number crunching is written in Rust (via PyO3 and maturin) and parallelised with rayon, while the public API is plain Python that returns NumPy arrays ready to hand off to Pillow or MoviePy.

The complete documentation can be found on github pages.

The library has three main building blocks:

  1. Iteration field interface — generates an iteration field or a colorized image of a fractal from a handful of parameters.
  2. Animation system — a key-frame animation system that drives the iteration field interface over time, ready to render to MP4 with MoviePy.
  3. Focal (autofocus) system — searches for interesting parts of a fractal using a variance-based heuristic; the points it finds can steer the animation.

Gallery

Mandelbrot Julia Burning Ship Tricorn Celtic
Mandelbrot Julia Burning Ship Tricorn Celtic

Installation

pip install cinefractal

Cinefractal requires Python 3.8+ and pulls in NumPy automatically. The bundled examples additionally use, depending on what they do:

pip install pillow        # save/show images
pip install plotly pandas # visualize a raw iteration field
pip install moviepy       # render MP4 movies

Quick start

Render the classic Mandelbrot image to a file:

from PIL import Image
from cinefractal import IterationFieldInterface, ColorSystem

ifi = IterationFieldInterface()
ifi.set_numpy_extension(1024, 1280)        # rows (height), columns (width)
ifi.set_maximum_iterations(1000)
ifi.set_center_point(-1.0, 0.0)
ifi.set_extension(1.2)                      # smaller extension = deeper zoom
ifi.set_colorization_information(ColorSystem.cyclical(3.0), False)
ifi.set_colorization_log_strength(0.5)

color_field = ifi.get_color_field()         # numpy (rows, cols, 3) uint8
Image.fromarray(color_field).save("mandelbrot.png")

The three building blocks

Iteration field interface

IterationFieldInterface is the entry point for single images. It supports five escape-time fractals:

Fractal Notes
Mandelbrot the classic set
Julia parametrised by a seed value (set_fractal_seed_value)
Burning Ship
Tricorn the "Mandelbar"
Celtic

All of them take an integer exponent (>= 2) used in the iteration formula.

The field is configured through small setter methods, each with a sensible default:

Parameter Setter Default
Image size (rows, columns) set_numpy_extension 1024 × 768
Fractal type set_fractal_type Mandelbrot
Exponent set_fractal_exponent 2
Julia seed value set_fractal_seed_value 0, 0
Maximum iterations set_maximum_iterations 1000
Extension (half-width of the view; smaller = more zoom) set_extension 1.5
Center point set_center_point 0, 0

You can then query the result in three forms:

  • get_discrete_iteration_field() → 2-D uint16 array (iterations until escape)
  • get_continuous_iteration_field() → 2-D float32 array (smoothed)
  • get_color_field() → 3-D uint8 array (rows, cols, 3), ready for Pillow

Colorization offers several base color schemes — turbo, viridis, magma, plasma, inferno, cool, and cyclical(repetition_factor) — plus an optional logarithmic strength that boosts the resolution of low iteration counts:

from cinefractal import IterationFieldInterface, ColorSystem

ifi = IterationFieldInterface()
ifi.set_colorization_information(ColorSystem.viridis(), False)  # False = continuous
ifi.set_colorization_log_strength(0.5)

Animation system

The animation system is key-frame based and drives an IterationFieldInterface over time. You build the animation with an AnimationRecorder, freeze it into an immutable AnimationPlayer, then ask the player to apply the animated state for a given time before reading the color field.

from cinefractal import AnimationRecorder, IterationFieldInterface, FractalType, ColorSystem

anim = AnimationRecorder(exponent=2, log_strength=2.0, max_iterations=1000)
anim.set_keyframe_fractal_seed_value(0.0, -0.8, 0.156)  # constant Julia seed
anim.set_keyframe_extension(6.0, 1e-4)                  # zoom in over 6 s
player = anim.get_animation_player()

ifi = IterationFieldInterface()
ifi.set_fractal_type(FractalType.julia())
ifi.set_colorization_information(ColorSystem.inferno(), False)

player.apply_animation(3.0, ifi)        # state at t = 3 s
frame = ifi.get_color_field()           # render that frame

Key frames exist for the exponent, Julia seed, render center point, extension (zoom, interpolated in logarithmic space), maximum iterations, and color log strength. Combined with MoviePy's VideoClip, this renders straight to MP4 — see julia_zoom_movie.py.

Focal (autofocus) system

The focal system scatters candidate points across a search region and keeps the most interesting ones, judged by the local variance of the iteration count. FocalSystemInterface runs the (parallel) search and returns an immutable FocalPointResult, which can hand the points back either unordered (with their scores) or as an ordered path ready to drive an animation.

from cinefractal import FocalSystemInterface, FractalType, PathGenerationCriterion

focus = FocalSystemInterface(max_iterations=300)
focus.set_fractal_type(FractalType.julia())
focus.set_fractal_seed_value(-0.8, 0.156)
focus.set_extension(2.0)                 # search radius
focus.set_evaluation_extension(1e-4)     # render extension the points are judged at

result = focus.create_collection_of_points(5)
path = result.get_path_from_start_point_with_distance(
    PathGenerationCriterion.short_path(), -1.5, 0.0
)   # list of (real, imag, cumulative_distance)

Note that the search extension (where candidates are scattered) is decoupled from the evaluation extension (the extension you will actually render at; smaller = deeper zoom). The cumulative distance returned by get_path_from_start_point_with_distance is handy for timing a constant-speed camera travel — see julia_autofocus_movie.py.

Examples

All examples live in cinefractal/python/:

  • iterationfield.py — query a raw iteration field and visualize it with plotly.
  • mandelbrot.py — render a Mandelbrot image and save it to a file.
  • julia_zoom_movie.py — a pre-scripted Julia zoom/pan rendered to MP4 with MoviePy.
  • julia_autofocus_movie.py — autofocus picks interesting points and a movie tours them.

Building from source

The project is a Cargo workspace; the Python package is the cinefractal crate. From cinefractal/:

# 1. (Re)generate the type stub cinefractal.pyi from the Rust docstrings
cargo run --bin stub_gen

# 2. Build and install the extension module into the current environment
maturin develop --release

To build the HTML documentation (Sphinx), from cinefractal/docs/:

./make.bat html        # Windows
# or: make html        # Linux/macOS

Project structure

This repository is a Rust workspace with three crates:

  • fractal_core — the core fractal, animation, and focal-point engine (pure Rust).
  • fractal_viz — a small native macroquad demo used to test the core without Python.
  • cinefractal — the PyO3/maturin bindings that expose the engine to Python.

License

Licensed under the MIT License. Copyright (c) 2026 Christoph Lürig.

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

cinefractal-0.1.1.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

cinefractal-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cinefractal-0.1.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (548.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (721.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl (759.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (788.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (684.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (535.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (667.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (505.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cinefractal-0.1.1-cp314-cp314-win_arm64.whl (309.8 kB view details)

Uploaded CPython 3.14Windows ARM64

cinefractal-0.1.1-cp314-cp314-win_amd64.whl (326.0 kB view details)

Uploaded CPython 3.14Windows x86-64

cinefractal-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (720.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cinefractal-0.1.1-cp314-cp314-musllinux_1_2_i686.whl (758.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cinefractal-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (789.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cinefractal-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (684.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cinefractal-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cinefractal-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (535.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cinefractal-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cinefractal-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (548.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

cinefractal-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cinefractal-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cinefractal-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (448.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cinefractal-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl (460.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (721.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (759.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (789.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (685.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (535.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (667.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cinefractal-0.1.1-cp313-cp313-win_arm64.whl (309.5 kB view details)

Uploaded CPython 3.13Windows ARM64

cinefractal-0.1.1-cp313-cp313-win_amd64.whl (325.5 kB view details)

Uploaded CPython 3.13Windows x86-64

cinefractal-0.1.1-cp313-cp313-win32.whl (305.5 kB view details)

Uploaded CPython 3.13Windows x86

cinefractal-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (720.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cinefractal-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (758.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cinefractal-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (789.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cinefractal-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (684.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cinefractal-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cinefractal-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (535.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cinefractal-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (664.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cinefractal-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (548.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

cinefractal-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (512.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cinefractal-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (506.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cinefractal-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (448.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cinefractal-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (459.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cinefractal-0.1.1.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1.tar.gz
Algorithm Hash digest
SHA256 edb5191a0574afdabaee88c7e8c05f211a07a1474fb28f4a385d29d844cfa52b
MD5 a03db95e872c66be11f3de91d5530678
BLAKE2b-256 1e9f83c5f8ee3066c9a2487add843c1d6bb1334f7bb77ba78ba18cda19c6c8e5

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 529.7 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 587a3a527bf9b26dab21afa974c7fb46bdd8d49bc75885f90c3af39ee4518adc
MD5 1d29e6d3d810f3009860ec8f295f5191
BLAKE2b-256 b7bc06ee2a821cf9b38a5be832ba4861cc6d2042ddf76b822560b9e20608ac50

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 548.6 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6a3ce8fe26bec59037bd6b385c32941c839d90412ea6a8cbe6a00a7469c70e5
MD5 663cbe2ff4ce774572dfa3a2a9c68330
BLAKE2b-256 2bd849bb791a5fbd75b0c8852726bab886cfdf6ece2bb5c4a83e180be9a05cae

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 721.6 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cecf8bdc49bb6cdbff06d0de9c325ff842cb8e6d16fdc74a52dda3fa46fc241d
MD5 10b573353112348351eb7fb4c2acea23
BLAKE2b-256 22c54ae9eab5e3a80e43eb5f0f931a5110afabab623b28c7a5c3132cb1adda8f

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 759.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0dccd64b258b9fa684d9fce9e1ac699d816bd0ab3855960161cfbd151ada9cc
MD5 aadd41c12575c157db869341fba4cf96
BLAKE2b-256 c6bf39cb48bf97131a8f69f8207fae3ac0987b1f31c97c9ef1bbcec74638ca30

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 788.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a37e3f22645d54609be85e9e7fbedfcc344c2e0ad90c5c2d6fb60af32ffeb5dd
MD5 f90a4f6f8f1eeb914e09986eae99e841
BLAKE2b-256 20d65c0cd0c2cdf82ec20907236a25aab30189c120a0231e5babe89870807f7f

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 684.1 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd0f4f8c97b5190f30ec4bdb6311be8f42e6d06dfbd749c5b5ccced8beba8a92
MD5 1fb942af15c5023536555ef07258ed86
BLAKE2b-256 48c830b6aa7bdf5a3c815a8d8837211ba0c2784b7af73e96144a895be55b5ddc

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f7f7ff209af64a76b3064dbbcf6ad00a6eb5f049fd735c550c4d99cc5cad9e0
MD5 f76e67d063eba707fc960d8e98e936ed
BLAKE2b-256 f6d22e72a2f105f74f20c89597aac2b2daf81695b795992e0fdaadad08a30d16

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 667.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84677375186539e593b8490869a7c9aeef3915f84a27aac6588c4cb12eacf450
MD5 dad377ec9173392870523841ca5865f1
BLAKE2b-256 cc36d441fbbb603d512f991eed2853ce67611c698eab61b8e3f3f29782a0b742

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 512.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae2d8995415f7475e0c925d486b4b6f27e65f4cd1e37b5cfc463324a47c0272d
MD5 d2c0a0c4bcbb78c7d3cce1ed8454b035
BLAKE2b-256 0b0cc3de433fd65dee6b377bfc8e27db7198f009bface9138c85cca679ee52be

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 505.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b01793e3bedfd0de3bc5e7a8f53a688beeb62b7f74aaf5fd9c78ca02b5a6178
MD5 437928013f8c9db88dfc9147e429b348
BLAKE2b-256 9c8164fdc4f7d6b9b07820a35a7e5e0987d3e7f0a7661e4815ad57e56bda9ec2

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 309.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 510789e2a2214c94be2b6fd488a10167fea15606db7f0a18b7a7de3efa779bc9
MD5 756a6c5c13d64e4d51b599acc562d09b
BLAKE2b-256 222e3971bbe0440bdeeebb6bb63fd76782cbd91f95a638f89d3d842e6a180089

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 326.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 28601ef9e152d54594c14ac92412d99678bc03520c9393d71b4bc824e7b4ed12
MD5 7d6055dd5bbc0c56ef2d4a384bf3afe9
BLAKE2b-256 08a2405cce806a6921f5a058297b6c8f431ff196609b514db6e49c556b9bdea3

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.3 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 16fbd6e4095d0a3504a9faf7cc5d96d9726527dddb3e97e06df9ff43a0881744
MD5 7bba2caf78fe191e9c2b24c761085002
BLAKE2b-256 169fe61de8571027bffe17643d35d02d136cae16d4f8bbe191d079c602e2a4fc

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 758.3 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8a3f91d2085d9ecdf5ff793e6fd1d6aa3ec62e604bd7394933f289dbcea2620c
MD5 62071a09372fd39e3d1628b658b47dcc
BLAKE2b-256 e27a738020858d50f2a2655be93ea616a6e3e54392e7d34807c5773859302690

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 789.6 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ae5f09912102f6b09d074581c70608c1497793aaf8ee2e55dc920bd622a46c0
MD5 eca6eafc9176220e0a0887887a017a5c
BLAKE2b-256 915a271deaf5c57c7069b1d7181b391dd339f2983fa4b388fec88d6d992f6e59

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 684.5 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 339a872f6b8323fdc96706bb374d688d05224002c35a4870f1a54a6452cd4b47
MD5 64fafefc3b5b92c0a2d7f26c2dd844e4
BLAKE2b-256 2080a0715406c04eb36047c215867dcd52ae92266842f138563eb089b9720bce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 529.8 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7979f2f9cec5f6aa20fdc99b8b17676603be25ebe51ed701cc64b846406a047
MD5 10dfd1cffde3b408d68f49dc6848f78e
BLAKE2b-256 1aec3d22faad6bbe010f9014e2419adc1dce8cb51c399c42d35161005147fcbb

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e1e50b417f462459613a83e47a8841084b041038a2dc0bcfe91c35e9837099f
MD5 3ce37e783bf12faf435ec6b2ccc3ec33
BLAKE2b-256 7739325aea2eeaca3adf1b2fef9230e7f1a7c0cef496f6481857bf98af55ff8e

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 664.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e484b30433e9bb4d8a52ab02256b7acac9832c03a4b8f7e363c6fdb0e45e4ca
MD5 de4f8d9eeef54c9280181e39479a4942
BLAKE2b-256 41a23d4d8b01341fc08fe989bd6b6662b3524420aa6dcfd4702085dd17a5fa0d

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 548.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7833ffef6ea5e52ad8606862919527427a2aea8b27265a1b70a4fa56362843e
MD5 e6e2f16a6cc83f2cc46f4be418c5da58
BLAKE2b-256 6f01bba022147e3ed1ec3185772fb1cfe4597cafa74c6b9c58e51bf56beed006

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 512.7 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a958c8388fcdc3aa17c89770feb45fcc676c340bce4ab51470a7f5b5a9293b47
MD5 280256bac6601e98e4731c3a5ebe2877
BLAKE2b-256 32be2bfd7606119cf268890978c84cc916b603830c8f70afad3128c305f9aa6c

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 506.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c89bfdb4aed5dd7c65efde8f85a7956cf020478a64284b71ad8efcf97e117c9
MD5 76c37f6065bd898824d034093bddc0de
BLAKE2b-256 e795d42502ed9c70ed6140c453a7b8d10ef4648fbb262829ad3e148058a397f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 448.4 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea68d62a36e71d99af0f05294f30e1940005d735212d8a53a14bd8927cc3b424
MD5 cbfafc4f809aa30de17d0fdb3797a15d
BLAKE2b-256 5096f5332b607fc08b3e329f3391ccf7094f5619d4c2eed8120c92ba7539b657

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 460.2 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 45bdc60d71654839da3d3779e4b899475dd3ee33d100081f3112f6a537e78485
MD5 72f34335c009df868f3054a78a6e2e72
BLAKE2b-256 17ed91cb16d58beb85df971a89d6ece6fdc5a35b27018cc498c097e24e051a64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 721.9 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94401a369168d04124e5b10b227874d0a6805c5e76e5f9d057c704232ff8f085
MD5 b40ad0986d3a536c4fc01223b8100228
BLAKE2b-256 7e59de0fa7c1674d1f211bc4fbad9c2993d1db6f545243b57b3f70956d509589

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 759.4 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76bf2149f79b73a8111903cb46ffc793fd2ad11c762aef8eb3d2aa640307364a
MD5 53f7a15401cc39b59db2f4cdb66432c2
BLAKE2b-256 d6d8cb29f31418519aa4d126390a723ef8370273e914296abfa898d665805f81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 789.5 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5be0bb6501774bb20c536a6607014416ad7462422c6ec5e5562960f2fba2ade
MD5 75d5e3ed2f9ad651235eb6705aa0d0d4
BLAKE2b-256 1446375abdfb9a6ee52dc396697e507082cc1f8e0d9a65605b562026baafa6b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 685.5 kB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d62f3e8853f892d1c02c6847cd16a3760662dd7c1d579f6ca3cc462a14ac03b
MD5 41e77dcac302f1d0ac7d8205d61d0c28
BLAKE2b-256 010a67333c29193b32bd2f9bd125e9fb94972527d038222ef12de9296c2ddb2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.6 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09c51a7625e9c61026c9f43d5171b54f89cbc1791374ad251a16907769c50150
MD5 8f24756324d06a5e186d56fef1a66181
BLAKE2b-256 38173046dcc3b96aebae0921feb4ca51c1cc399e8d7e132413692f9cf97b2000

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 667.3 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6e3020f973461220db09734e4572b0c89b55dabfaf41c6656669425b0e1adb8
MD5 756001eb0e9508c96fe72e19e7e4f422
BLAKE2b-256 62e411fad11ad487665e8c49dbf982701d049a66cf557418f68cfcd07c044aab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 512.6 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 feb63e32bcb53650c56b277b59a2b4e7fee4860c9a268957cd6c5edf405e0b38
MD5 3553e24c365d63699a5b83154903cbd1
BLAKE2b-256 60973b1e81a6574cfcde119c15512043d2c5ac0eae70786cf8efa336d7c73be5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 506.9 kB
  • Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e4cc5f928442fa46a6dabe15e1952ea3be4c776d31cf2870d6596050b58dcf4
MD5 adf8fbdb1c04ddc7541eb7f93630b6d2
BLAKE2b-256 650fce6378355473016046c471a553dc33aefe5c10a97ad72eaa91d88b1d4c62

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 309.5 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2508b8e21fb8707ddbbf7508ff649a442dbb7c98bf6f9df9628907c498a11a92
MD5 ff942154202308ae5b97b48ac850d3b8
BLAKE2b-256 0ebc7bbac5442eb6ea0c4d32d8e93673a69f991d8511f514d1fb7af350e641bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 325.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 81c94b42bf864e07767a6e365158fd34d56b5730a85e15e404d64337ecf6849d
MD5 415b6822f2f6c0235de2496a447c7cde
BLAKE2b-256 b82e62195cb805270ac485a880e0f61347c7183c1d492e4626739ac654dc4b1b

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 305.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 de09f9b43b21d718f57367a335db19f0e0c5f04dda6c6a0d9d4d548ee2c78750
MD5 ade54e49ab9092d523177e36e083a786
BLAKE2b-256 f9d58483a0aa84f9707ee5c4211949d84212fb64e8dcc254bda9ba6b7ca5989b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 720.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b452aea20412d6317f7d7d67fbbabde1580b0279af9f62622b14037e789d815b
MD5 c90bff2b8a2e60ee15a346b240cf38ca
BLAKE2b-256 783c09a9f0afc8d2035038db5f42a34ff1f33a289bee7c29bfc75e25a5e3b8fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 758.2 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de842bd7fc6788eb40de6bd231a0e299c1437c31204f673561e856465926360e
MD5 69e0d9135938d71659f2c6281d9901f3
BLAKE2b-256 86d93436eaf99dbf761bcb7e3259b6d519a2ebf8ed32c63eaac34f3fac66f775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 789.5 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e150063a3aa6fe3a0dd4fa16794b1889802c5ae8bb791e4b87d51c2695699ab6
MD5 e12577ea3dd0fa9ba7d108c47bb5cce0
BLAKE2b-256 8c07187c7520abb0133d2b9f738240181dd1390423df912b5bbc5fc5c1ace4e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 684.3 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3100c6dad31626035a8446cc82473f55443f6924de94280004eaf3c5b960075d
MD5 9fe0f132b63de23e35857090570873d6
BLAKE2b-256 555b07831d794d139ceba4f88c5850cbce865400ca0a51458564ce4190ce54cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 529.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccf27e4c0218dc8ec9959e22330d981ab19051634e78093b3b832646f7459d5e
MD5 96c67b9961b10c5feb227f7de9cd848d
BLAKE2b-256 2761e808b20e4e095b83ea2b3a14aff4929db7c4f6c3ff06b30335759db4b9f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 535.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2271731734b7af0ad28a9c63d1aba8c34113c4a7fa96a4f9a30b755db3bf2820
MD5 46528d2042639fb6e2d840a1e339e323
BLAKE2b-256 c50aa764881ab81b9f9ee96b89f6f4871e7738941c683146fda9a29d34448d19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 664.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 687864d0fd98df59e11cdaad7940ba223ab2702a1e58ec82bd442b9d8f07e709
MD5 66a5579a1420465f8895978588650ab6
BLAKE2b-256 4ca176ed0e85f97364cdb2c00bd41c954c1f6dc72eed60c55f57d7d3a39e73a4

See more details on using hashes here.

File details

Details for the file cinefractal-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 548.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c684cf98691e4dfae66920d4b0187dadce6b6f983b633316d2d4abbb27f6f38
MD5 8fabf17eb284866c70e19d5cb4f08bdc
BLAKE2b-256 1ad881ee8f773a55fc1bbb2b760b0eb54dae767dbaabee12e2fc8e2a565f44b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 512.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8c6508153089dee27c0379152f3fab7c74662cd5ffeeea8f77e05c521d51ea6
MD5 fd85d4a8f6a7560c8729b6c709767b58
BLAKE2b-256 42cb03702457faa93befa758d7c35060468cd99a88ab14d46c7685b5245fe88d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 506.1 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd930758bb20a24a8b025b245eb25766f4086e75b13f3f90e876f043347ae2d7
MD5 b9f2957c2d9b6885b2d3d60699c57f43
BLAKE2b-256 0806dad843f4e8690768335781f28a810decd8c66aaf413827c2a78b59ab88d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 448.4 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f6a4c3b74c82ec3a798dacd60923861ca0202604108d03a1eeb09934cd86e01
MD5 780bee6d314fba86a95c43b9e1fad94c
BLAKE2b-256 208a851dec9da5a70ce808ac00fe7afb9e5996262e434d6bed56fbff18ea4c92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cinefractal-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 459.8 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.19 {"installer":{"name":"uv","version":"0.11.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for cinefractal-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ba07ce3d5a2b0cca0649ab994eae2befe50c3e64e3f14106d50ab47f72b5257
MD5 f883efb9f504e26231a776946c3a055b
BLAKE2b-256 9c9a805602e808fbdb914bfce7464d728b4da0a4328a78566d1162abce4f131f

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