Skip to main content

A nanobind API for apngasm, a tool/library for APNG assembly/disassembly.

Project description

apngasm-python

A nanobind API for apngasm, a tool/library for APNG assembly/disassembly.

apngasm is originally a CLI program for quickly assembling PNG images into animated PNG (APNG). It also supports creating compressed APNG.

apngasm-python is a binding for apngasm using nanobind, allowing you to use apngasm without calling it using commands.

With this module, you can even create APNG using images inside memory (No need to write them out as file and call apngasm! This is about 2 times faster from testing.)

A similar python module is https://github.com/eight04/pyAPNG , which handles APNG files with python natively and does not support compression.

For convenience, prebuilt library is packaged with this module, so you need not download apngasm.

Documentations: https://apngasm-python.readthedocs.io/en/latest/

Install

pip install apngasm-python

Optionally, you can also install Pillow and numpy

pip install Pillow numpy

Example usage

The recommended usage is to from apngasm_python.apngasm import APNGAsmBinder, see example/example_binder.py

from apngasm_python.apngasm import APNGAsmBinder
import numpy as np
from PIL import Image
import os

apngasm = APNGAsmBinder()

# From file
for file_name in sorted(os.listdir('frames')):
    # To adjust frame duration, set delay_num and delay_den
    # The frame duration will be (delay_num / delay_den) seconds
    apngasm.add_frame_from_file(file_path=os.path.join('frames', file_name), delay_num=100, delay_den=1000)
    
# Default value of loops is 0, which is infinite looping of APNG animation
# This sets the APNG animation to loop for 3 times before stopping
apngasm.set_loops(3)
apng.assemble('result-from-file.apng')
apngasm.reset()

# From Pillow
for file_name in sorted(os.listdir('frames')):
    image = Image.open(os.path.join('frames', file_name)).convert('RGBA')
    frame = apngasm.add_frame_from_pillow(image, delay_num=50, delay_den=1000)
apngasm.assemble('result-from-pillow.apng')
apngasm.reset()

# Disassemble and get pillow image of one frame
# You can use with statement to avoid calling reset()
with APNGAsmBinder() as apng:
    frames = apng.disassemble_as_pillow('input/ball.apng')
    frame = frames[0]
    frame.save('output/ball0.png')

# Disassemble all APNG into PNGs
apngasm.save_pngs('output')

Alternatively, you can reduce overhead and do advanced tasks by calling methods directly, see example/example_direct.py

from apngasm_python._apngasm_python import APNGAsm, APNGFrame, create_frame_from_rgb, create_frame_from_rgba
import numpy as np
from PIL import Image
import os

apngasm = APNGAsm()

# From file
for file_name in sorted(os.listdir('frames')):
    # To adjust frame duration, set delay_num and delay_den
    # The frame duration will be (delay_num / delay_den) seconds
    apngasm.add_frame_from_file(file_path=os.path.join('frames', file_name), delay_num=100, delay_den=1000)
    
# Default value of loops is 0, which is infinite looping of APNG animation
# This sets the APNG animation to loop for 3 times before stopping
apngasm.set_loops(3)
apng.assemble('result-from-file.apng')

# From Pillow
apngasm.reset()
for file_name in sorted(os.listdir('frames')):
    image = Image.open(os.path.join('frames', file_name)).convert('RGBA')
    frame = create_frame_from_rgba(np.array(image), image.width, image.height)
    frame.delay_num = 50
    frame.delay_den = 1000
    apngasm.add_frame(frame)
apngasm.assemble('result-from-pillow.apng')

# Disassemble and get pillow image of one frame
apngasm.reset()
frames = apngasm.disassemble('input/ball.apng')
frame = frames[0]
im = Image.frombytes(mode, (frame.width, frame.height), frame.pixels)
im.save('output/ball0.png')

# Disassemble all APNG into PNGs
apngasm.save_pngs('output')

The methods are based on apngasm.h and apngframe.h

You can get more info about the binding from src/apngasm_python.cpp, or by...

from apngasm_python import _apngasm_python
help(_apngasm_python)

Building from source

git clone https://github.com/laggykiller/apngasm-python.git
cd apngasm-python
git submodule update --init --recursive

# To build wheel
python3 -m build .

# To install directly
pip3 install .

To cross-compile, please set environment variables:

# Choose only one

# On Windows (cmd, not PowerShell)
set APNGASM_COMPILE_TARGET=x86_64
set APNGASM_COMPILE_TARGET=x86
set APNGASM_COMPILE_TARGET=armv8

# On *nix
export APNGASM_COMPILE_TARGET=x64
export APNGASM_COMPILE_TARGET=x86
export APNGASM_COMPILE_TARGET=armv8
export APNGASM_COMPILE_TARGET=ppc64le
export APNGASM_COMPILE_TARGET=s390x

Credits

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

apngasm_python-1.2.1.tar.gz (663.6 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.2.1-pp310-pypy310_pp73-win_amd64.whl (358.9 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (488.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (419.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.1-pp39-pypy39_pp73-win_amd64.whl (358.9 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (488.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (419.4 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.1-pp38-pypy38_pp73-win_amd64.whl (358.4 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (487.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (418.6 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.2.1-cp312-abi3-win_arm64.whl (330.6 kB view details)

Uploaded CPython 3.12+ Windows ARM64

apngasm_python-1.2.1-cp312-abi3-win_amd64.whl (359.0 kB view details)

Uploaded CPython 3.12+ Windows x86-64

apngasm_python-1.2.1-cp312-abi3-win32.whl (321.3 kB view details)

Uploaded CPython 3.12+ Windows x86

apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_x86_64.whl (598.7 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ x86-64

apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_s390x.whl (583.9 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ s390x

apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_ppc64le.whl (700.8 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_i686.whl (609.0 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ i686

apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_aarch64.whl (589.1 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ARM64

apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.7 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (434.2 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ s390x

apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (545.9 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (487.5 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.6 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-cp312-abi3-macosx_11_0_universal2.whl (766.0 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.2.1-cp312-abi3-macosx_11_0_arm64.whl (377.6 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

apngasm_python-1.2.1-cp312-abi3-macosx_10_15_x86_64.whl (418.1 kB view details)

Uploaded CPython 3.12+ macOS 10.15+ x86-64

apngasm_python-1.2.1-cp311-cp311-win_arm64.whl (333.0 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.2.1-cp311-cp311-win_amd64.whl (361.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.2.1-cp311-cp311-win32.whl (323.0 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (602.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_s390x.whl (587.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl (705.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_i686.whl (612.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl (592.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (550.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (491.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-cp311-cp311-macosx_11_0_universal2.whl (772.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.2.1-cp311-cp311-macosx_11_0_arm64.whl (380.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl (421.6 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.2.1-cp310-cp310-win_arm64.whl (333.3 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.2.1-cp310-cp310-win_amd64.whl (361.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.2.1-cp310-cp310-win32.whl (323.5 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_s390x.whl (587.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl (706.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_i686.whl (612.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl (592.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (550.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (491.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-cp310-cp310-macosx_11_0_universal2.whl (772.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.2.1-cp310-cp310-macosx_11_0_arm64.whl (380.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl (421.8 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.2.1-cp39-cp39-win_arm64.whl (333.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.2.1-cp39-cp39-win_amd64.whl (362.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.2.1-cp39-cp39-win32.whl (323.9 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (602.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_s390x.whl (587.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl (706.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_i686.whl (612.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl (592.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (550.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (491.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (449.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-cp39-cp39-macosx_11_0_universal2.whl (772.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.2.1-cp39-cp39-macosx_11_0_arm64.whl (380.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl (421.9 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.2.1-cp38-cp38-win_amd64.whl (362.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.2.1-cp38-cp38-win32.whl (323.9 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (602.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_s390x.whl (587.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl (706.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_i686.whl (612.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl (592.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (550.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (491.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.2.1-cp38-cp38-macosx_11_0_universal2.whl (772.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ universal2 (ARM64, x86-64)

apngasm_python-1.2.1-cp38-cp38-macosx_11_0_arm64.whl (380.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl (421.7 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

Details for the file apngasm_python-1.2.1.tar.gz.

File metadata

  • Download URL: apngasm_python-1.2.1.tar.gz
  • Upload date:
  • Size: 663.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for apngasm_python-1.2.1.tar.gz
Algorithm Hash digest
SHA256 34d0d8be47de6322ff3d7d4232c17a0f6cf7af46f0575480f0d3205fa0f6e5c6
MD5 0587e9038a13f99b2bf696418b168dea
BLAKE2b-256 36fd473232f4cd4334ae3ce0458569906273f41145ad41d64e86e9a087ee07ea

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dd957a4879721fb44bd35a148f1f31d79aff8a5f3b404357c709462d9ce0fb3a
MD5 cee33fc4e4a707650a07e09f7ea4ac4a
BLAKE2b-256 e81c36b83576148323ead8c0fba1b0428d57b0d065ed8cf7a5665eada641009f

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a331475650feb4856a4c82e8322274862d4f6969f27798f34dc381d5c5c46f3d
MD5 c66bd5b23d03ef9daec61e5734f34eec
BLAKE2b-256 d0cdfe9fb96fa4f215561c2be8e4141a84be65c515fda2aa1d4254ad68004fbc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6caa7d0c91da1b81c80d06724dfd64f736c64d59f41f5b5a18c70e558d634fea
MD5 3d136d736969280f32280a043239cdae
BLAKE2b-256 0893f9184fc16901b2a0afd9a66bb250218b4197a74a4c9a4f8bcd3ba24d9b30

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b12a19e59d29538093cc25d653d7cb75312e6c3f02bd9d1fffc02f001bcaf44f
MD5 b1119f416cca524fcdb26d89a9c65903
BLAKE2b-256 f3faa60818a82a803083c72e844f1078fb9746c66a5cf10389e91130f133924c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b327366b7ec21ca717e427214e969394ef8bd172694c91f0a34af9afce089e0c
MD5 4063a2fcf0fed84bde6203c0aeb15d75
BLAKE2b-256 6537d73cc327a306789ee9ce686164c83398d23663c0159a6f19c2f8962cc099

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 64697393d22ed2bda4b91c3dcd6039b40aea431c4afcad31a7ce2d6ea942da29
MD5 6ef698f3e737b21c69c5375af3396554
BLAKE2b-256 0c14c5e7560bf788ec7a7dcbd378ff6b3536c1ce96fe027103a152af8e2b5468

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea170cf29ace1ceb11c9f2a8240357cf343e303cc30ca9fab7cf3004d675b65d
MD5 e833d9f16ddde14df454eb941dbb4ad5
BLAKE2b-256 04cec43db1eac04159a555f9c58cc16d9381be53092ddfa3559f531809dedb34

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf4428beb16fa4ecd23e1a48aa0d4f273863aa9a13d54efd86ceed57b1fb340c
MD5 ac7dc11d2abef1258fd05cc4575d8f6a
BLAKE2b-256 0bbda3f26e8bb85f8b7d49282da37ca4b663a5de2aec9f774f44263b25c3b2cd

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4fa71607637b14ab3150a672a7dac93520418e50c39e7ce7eed1120c498c27d
MD5 3ca07d41362f3a45d6e9cb68c042c15e
BLAKE2b-256 a114382e90a1c8a6d02518e6d3b7939c73fc3b87d3017d61ee07c5deef2b0db8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6b16fe3c6b7a91cb5d5e55b5a427d785fafd41eda7e2fcda3b1aa2740b3b57f5
MD5 6b86a92d3f0a317e678b15dac2dbdd4c
BLAKE2b-256 b4565c4846c42e7caa561d93d677b9a3c6a9833e16d4f039add6cea1769e0c67

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a5b05082ff357d53492007bbbf146d94279685006dfd52ef8e354fe5c3cca8db
MD5 d4e8230441654e85b7c3fdbef45de518
BLAKE2b-256 9bc38452bb7936a9e14887e623e078ceeb8e0d02de4d6623a5dd3e1bd6187fdc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44f293c0e0bac522c0e092c59b56d03a0def57e10bb069f2557695a3bbea5cd3
MD5 78a8eed0e80df37e1ac1e34adeac65a7
BLAKE2b-256 b54fdf4c18b39d5c34aa9e6cf5721deab7ad05fc8b68ea441c8399817e241505

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 16c5431cac5902d2ddc4f6ae72aab9bee36f4ef1e9f54dae397956c82239e045
MD5 28d42bb4215ddf0210cbb6f799e112c1
BLAKE2b-256 61d9b48d525b585785523a7a143ef26dfb21e574fac2b4bac31b7a765be615db

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21b8babcbde04e6fd56304c648ce8da424025d0a943e6d4dc04aa406e112246e
MD5 8c4c92eb44d4e73be7c5aa640924d034
BLAKE2b-256 7edbea1252ac9febaa624439f6fc87281e5cc82f8f4c73bf22c3702d4b391787

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b15b57af175be78c9ac8f455632f021916097a33635449ab90f76514977c8cff
MD5 6eb3073a9022a666fd59d7e6928fd5e7
BLAKE2b-256 647d007616124321e310573a8a926aa0960d83c4371432e49f41d60550859213

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 d8e41ef314a173e4e830061b3437efdb54113e83b02de3fef9162c7831241024
MD5 a2ad0dd33424800d608e26de2452b672
BLAKE2b-256 150aa169555af16dc3534ab06c32c9c48636fb63d4cdfe18f24f4de6cee14ed4

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 40ce3c189e86099b2ee36075bce10d86e0d62df990163e92b0e3ce85f0efb5fc
MD5 53e297fb1354e4965c42e2be686ee4ae
BLAKE2b-256 37a37a081928382719fa7079c2f78c44bcfcfc908ec78eaf827ff2a7e5b23eb3

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 3b2e3368b1639a59233566984f985dddc026e16bc96424236b7e3217baf54cad
MD5 25c4cc7d27791f6d8a4d36fa81c5dc53
BLAKE2b-256 1edfde724204b9c757870b09e830ed4253a83dc97468f082cd8fcc86f7c0a455

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe9f48695263afe4a6089d0b4378430cebab89879cc92a2694c1a25310c3b636
MD5 22a058910d37ac52c06270c6999824d5
BLAKE2b-256 a5290809f135785808dab0410cfd3efd8d0cd0ea132a6a2e052aff23117a8605

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 79b84df181e8b06567a1169aa2a767c939c22d11688f47ae74ad2ee0a8509eee
MD5 dad6ae7d85bc16a9984063cca8206c9f
BLAKE2b-256 40de7c67775530255d6c900c65da6d4573df327a14605be5b01fa89fa8b085f1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 4372cd06408cab4031be2b8a7c032b72a7a95d385c42eeb95886a8a78f614086
MD5 4b5edde6168d5f63222d9c551da6d8a3
BLAKE2b-256 e47f8d85ecc91549866a614177945da7c4b0e247bf9c8308d0ee41ae3eedcf05

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5d2b3f90265b3a768e853237c61a778a72545bd1e8d8c5c5613b179a4c6bb3ab
MD5 58d43be938344d34d40d6ba319ed8115
BLAKE2b-256 437f23d6fffa60a825f236792167a461de5d9a48fd635a2d7ef1b520513f8663

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40248de9599eee6b917a2036f176892dd3de02f16166f972f3b522067b287647
MD5 a8ea2672b30b3f27d2ad0989f9524498
BLAKE2b-256 d847d96c0d58b77762ed945c7467a8fb780cf9da2a531d0bb3782656a61c4d82

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 893646c743f451369a19886f17a3c66ad0bcf24f676ae16f13775abc3017b46b
MD5 f1bb29a1b2385fa1ee3a11781e6fe400
BLAKE2b-256 d80e2cacb33be6cf76b36a3829de2a86e65c5c10004f21f7d2f6ff7acfdc86dc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ec037fa9319cd5ac598ad27ea250f75f14707f268996b45caa216090d699e729
MD5 d0d9c5f5b348b2569c057971ede35b17
BLAKE2b-256 24cb75888f85f765de8bfe03e4d5f4059298a990ab407093dacdf70e478a7eb3

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5fd18283d68b96caa78d6f3c48ac0565b1ca9348c009aa0848f83e363316fb0a
MD5 3d5132c798f7b26be65eea539ca19c70
BLAKE2b-256 716e2fbb6aa1ddd6f720fc88de878ade78051abfbdc433b0d8624874fdd80d08

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6be357845ce051b0c3625f51292687c839d1375e3480454d40cabf022aa20b14
MD5 1ba447d5cc4c3883878a571018ca6e1d
BLAKE2b-256 a781be4a0417ca0fb3149850648da786a69521399a20a0726ab49afb4cfae2a5

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9d61a43900f9fc9900bc09e85dc379da9f8631ea169a9cb8ca3bf54ee5551a7
MD5 401d8160a1ebe32d3a9dd8fc9e586278
BLAKE2b-256 2b5c1abad9c12f9b8f1bb34077c4eca6c5b0a135d68d5b3dd3f748128e0bbb15

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 69c68a85e2f10f62685246595ac6c5de43c8dfd6ebd44dd2916729a23b4be553
MD5 f3815a60632b52611dafb0476957423a
BLAKE2b-256 4e31c028d7f4194eaa6f4a1fa267ef417e2df9c0e829e9ee86db7182ebf10cc8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc7d5c64170f702757a983bde19133c0215cf6bbe7b140b430cc36823dfd8365
MD5 e7af1cef506d53c6549e85ef52f66e06
BLAKE2b-256 c92a2f0c7a166c893325f2ec11d390b165c6a28134196dd032807fc756da0213

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp312-abi3-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1d452fc629e4d0a810db8e89b6f9a9ebe5c1b145098c64df9a36855f2599c01
MD5 64338f07689ca032a7dc3412a1ea29cf
BLAKE2b-256 1f559eb29d0a57e3a9b85599b488249f4e049cbdbe93c3983bfdd835ad202e1c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 75993de768ce37ed7203aec20849ef732e323bf06789c5f5f2f7b3a6383a1b6e
MD5 b0c739ae4a1512a9d09434a63845c856
BLAKE2b-256 485ecc31976dd486bf85e71163f80b4755ebaa83b325e96d9096d8aaaebcf556

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f663e905f8053af39c024e592840c528e9c47cfce3204b182216fb3b4cef881
MD5 9629612428fabffdcc9e0eb152021cf9
BLAKE2b-256 578640bc75e92e338385ad89090781bd8672973e2d94ebc1ccae1aec8df0f706

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dde333797b099b5deca0fa005298e4721ea6d4290d8b5cf067c0d61c42d2d679
MD5 93cc4c20e34d6c225e7dc293ccfbf64b
BLAKE2b-256 bd01dc5d22b789795f61ca6aebf66f938e475cf8fab0ba72f08f479427221fc0

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 981a067a2310afc5279d9006ef49b1542ca9fc4294ea9fa61084e469a8d4580c
MD5 34866155c4b97dc4c46a53838550a1f9
BLAKE2b-256 5487274db3b60b62a6f27dc6bddd052a6ae2546b50b13a225372c5191c2cc303

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 9ed8ff72aa74f5fc933b295dcb42cdb7c3add68cfdfb2a1f7d2aeb5b1cca9878
MD5 6dcee1cc447c70007cd3b5689e21bd81
BLAKE2b-256 cbe305fb6e404e03c8464760120c0c5c2fa4c80c190c8d4335a20292a48752a2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d411f1c19699e15b17eaa5da0f7baddf23c1a2015de1c6cc5b97b25c596aec79
MD5 d61cae2c71d3167b2afb345f05b51070
BLAKE2b-256 61e9f636152cc2955cb4b6b380072a65c8418cf12435451caff83bfe5f90d610

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2fb608a2899d0d5f884c3fdf7fc603b42f19ec2edd7b5b59eeab62c264d0d696
MD5 4ae989d26b39d85a7b1243473a472078
BLAKE2b-256 863cd84062503a4087c0f554904cb0fbf8d74fdc617d20d723d13b9864698911

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fca1601b37655b81f9425ae766b23ea4be1a2612626b0a93ab73d613ed6bacfa
MD5 9a016d8b5a58e7574fcf6ea5128edf1b
BLAKE2b-256 72a3886dfe4965014317a2d9196315987f5dcda51909a9d554961ed5394119d7

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d3a25c7c994222ce4256274b25c8f76932e1fc94ca282673fbe13aabf59f1bc
MD5 6253134b98baaa4aa75e41d4823deda8
BLAKE2b-256 e0839679ad04f5c5a8a91e550727fd27289fe62333e56ce220e5d3b49c0bc7cc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7688dc4d5140e00139281e577a43d9c4fd5801bc071c4c8d232668a83fcade69
MD5 7e2724f9857d6113afaffb95249becde
BLAKE2b-256 49ff4bb1c2144472580561206d07811e43e21af01352da48a6f7ba5d805a2e17

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c7ffa662538aae62f1c6411220fa5924992a5b8ed518d69dd6bf6d9b70727d3
MD5 c39544355b4996b7dbbe98cfbcd36c15
BLAKE2b-256 60bb9a679078c485b5117bdd4bf870df7273039a45b5622adc323379d4ba6eec

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dd0236dc3236618667a32662072100922ca7458bb96dec112fff513078fd9fef
MD5 88754d640e292a39bb00f099d4d44588
BLAKE2b-256 fa3328cf4485718940e5290a900347c72a3d76c2cd9efb081dc9263bc0701a7f

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a5535211c4979b44c85ad6943b0f9ab25838216bf439798ed4eaed9d9cd604c
MD5 fe5ce4fcde0ebf521a2c3674634414ca
BLAKE2b-256 0d797adc11579704988d6449cfa3af6f57fcc07c29d8612a61cc4e1709bb279e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 d23a0307e4da0f8c6381d41f330e849e260f710dc408eb9b553d7249adffc2e5
MD5 706b465d213837b10894789a69bf8e16
BLAKE2b-256 3d7859aaed2c0ba4b486fe5cba4a86558e0ddfaee3c0501981f8d338535ef047

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 799abcee4b2859b428d5213a74c998dccfe4da98ab8fcd2a2ec65511b1f4b0e5
MD5 78ed8dfce3d47e792718c823ea625390
BLAKE2b-256 5a4496dd69d41d761c0bd7daafdf4406527931d227dff08b0b7d968a4c9f0da2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3accca52d573faddae7cfdfe984af26a0424334b6325f6af985ff6e98b5a1d78
MD5 d0daebaf2781ca0fb6339b641a53de51
BLAKE2b-256 1de87e1d21e9d2a34a7516c7bf2a0ca411a1be49c42149c46571e2d994c712e1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e2dd78919b598ca514b2875978f420bf62d3b56e76f54ca7e0d33df6c7b63178
MD5 928f09448eba9c843d44f81ea3e63420
BLAKE2b-256 75add5794fd4c5b2ad1e3c92050a659ac951457fcc1736f0d792663a52c6c924

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee4356a9e3f3ce49649b42bbc11a2d4e4f40020fc3fa6f7fcc8213f538291afe
MD5 41ec0e7e33b163a12bacd134c529845a
BLAKE2b-256 f57706ff54f43314012476b7cb546a7a97373b9c75082dee3f32acad4672f236

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c94b096e4794e876e02d91e58daa257aeddcac65ce5202964d48e0afb5649102
MD5 7a8e634a20d5480fd0512558acd2090b
BLAKE2b-256 21d70c38224c84dc05a451fdd35ab0fc28eeffab16829f428a9f5d3affc38eed

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f054f0185266f6a478cd4392036eed5c4f81e878e7e7b412cd699b5470e6253b
MD5 6906797d3f9c07008e549777ee09b181
BLAKE2b-256 ba11456e042eb494e5a0036d403bb678f16ac42037cf6ac6a51b06799400027b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d5fa33b7b2c59d16b1b9a7f492d06a08fa69966bc8c45717d3c0d5bdddfc6ff2
MD5 36786bc43494cc2b9f7995f9b0828197
BLAKE2b-256 68a33b130ed91ef24c32c4d92c80d1f6552b484420a64249ee52f4b41c1bbfdc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a9ba3d3743d4a7fd80bb30b5f3ad75e8c5456a93e3b0a70babbb0fc373166925
MD5 5507226ca08d5aa279c3a9899ffe5677
BLAKE2b-256 5252f57faad10d41caa165d5fe87a6e3bf80dd5aad65bd62d8894df5f650a9b3

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9aa2d6e7a8a3aed0764167c6ea5174b9086aaeb362d7c0ea9712ff91e4a47f71
MD5 1bbbe8bd0032163eccec82f2af4baa3a
BLAKE2b-256 65d8c59531e00abe6c68ad0957501e8570db6c4854b568583832a2e805080568

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 77901a2cb00bb0ceb346a07e2c3687639edd257f622976c69ca3e7fd5e7af29e
MD5 1be875012f9f7316f600bdbb816279a7
BLAKE2b-256 42682affc86a8e775ebaddf48170314af3759082336175850c14c659b9e6abe7

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 505df13177a7252843c9403d11261504294e888de2d9c60151ce0afbad7d4e19
MD5 86c606662cceb1842d0fff6d1992bb09
BLAKE2b-256 8494f3d8fb80f8066a33a13a28a194ef5ebc7c85672b52a70033d9e78c0b64c6

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c8a276b75d5fca648c67a40249b8c2c23a5952d5f0576618bd9d6e2ee283284
MD5 1b84c7cdf851672a586ef8d6b2ea2c07
BLAKE2b-256 8fdf7178444b58e95c77e5ef920e975a85b0ab490191d33fceb0c06ed486476b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22b6b304cec7d74951e47fd562cfa295c42de26d57ed3d41e1e2c2b078655c6a
MD5 5471905860f421f11191cf6a070042ac
BLAKE2b-256 8f145be1727cf2fa8d0ef56de5222b7d0a4263125c8eb26021a4d65bbdabcd52

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cdd2aaadf66d18d25118a49204f1834443fa2ff5ad1eaad5329794a3d0c3388c
MD5 30b4e2170c7f0a10905f239bdfca53b3
BLAKE2b-256 2a6be3d8b41f1e881d3b76b1327721dc33e7eb03ea697acfa107d4acc11aca7a

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 438707e1fc1823bfe67c69fbef8b048bee779979cf6c3d97fb3dd98c70a0d8f3
MD5 cda50eb7787351f76245d303a2d24a22
BLAKE2b-256 e29315bc8fa0edb7774ec33d64b0d08b071ed21a4d6d47e2a77ccda613344aa2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 abe6806132779a4809fc7a0d0c9e9277f1410a12a4e66202e279915a1ecb9e5c
MD5 03feec528200d11b703b8f5c5842ba06
BLAKE2b-256 8d986a48be8ab294194e5a22930fec4e467e74ef73a960612d4472bb7749aed9

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f970496861ec5b2bc861738b84af1a829fcf9cdab9483b64f5d43e53256186bc
MD5 1a4ce21971cfd532d905513640722c0c
BLAKE2b-256 aa4ac0a79e1c5ad44f828485be2d16470adde804867d88a39b9d427d8776f1dc

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 04e7c943ac7829b5b2b1e1cce59872024b77e52b0299f8c27444fe4ef145406d
MD5 fc93e5a24e0b165df830ea79a0d116e2
BLAKE2b-256 14270062c4e91e80d6ab2f0f93e82f7accf0f3767df3b5690ac44533248783bb

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 eb965e5878a5e6d31ebd3165537f18db7ffb2c0e71e9fb48f5baad8047a1edc4
MD5 a6aa8058aa42c11030b6206efbed4041
BLAKE2b-256 bf6e99f3eefd4075947ca20befb902f29585896c4d9324c8f33d07e27c367675

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f94c78d6f6c2b6ae438f4adaceec012e6e2ff8f9da2c64a5a6d4f5b0615bd7f4
MD5 56847fd13ca63ba38889582d716f307b
BLAKE2b-256 ea8165ada1b99c72b10a762a26a32eebf6f1647dec3ae10819d60229dc7393af

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 026c9060f5add96621311467db87f14526e46ee78c0f29a666c2a7c38b136c62
MD5 e38ec96f21ca5f00024dd190de29a978
BLAKE2b-256 e043a2c328865587571ab2ca8aa25436fdd8873161ab5619b6492b270ae53c5d

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d790041f1392619fd37528b74c93d73cc7cd33c7f35220df083ec2cd026974c
MD5 18e9416157c905696999b1755c18e274
BLAKE2b-256 21a03fcfc8ae9ecd02bc02697e13371b723e246b9f20d9e6a7f3a095c5a08b44

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 418bbf752eafaeda029ef9c40a08ecea178f95d895b43502b3ba9f12eb13f858
MD5 9be11ef101044ff70bd00650b4bedcd5
BLAKE2b-256 56088a7c4949b3ac934399682e6b87ae39978b27a10eecc2219879a9faee9b49

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a4d5e2851569d0682b4d4c3c3371573ab50a92e24b62d471a88685a86a8c5bdf
MD5 ab7020362ef82205c7d8816fb36a6aad
BLAKE2b-256 08bce1e22594fe601c651cc3b0308b198e7ce5029906f56a29a2e95766c123d8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c89de5631713271d1598ec1f6e3dd7022b31d9fed1a9793d694460bb8c678bb0
MD5 6260e57597b98fefed7b2faa4c8bffb4
BLAKE2b-256 af9c3cca91bf73277379a181d912bd43f0084437e95cad7aa3bd306647cad16c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5ce23f82b01461bda5ec163175aa5725ba73ff87f7537516c548370e2e27d7c
MD5 fa8e5a3ff4ca7ba1862e39d36355dd10
BLAKE2b-256 eb50775be07a9694a83de7d17b6a59008663688e73cf2dc7d454cef8713a1481

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d897f8b59f04cce929d4ad7d0159d0b0c3f6870dcafd078bbead97be47dca261
MD5 9950a1b56e1448a8b8aca193f8c088b2
BLAKE2b-256 12f9997192a1e043d07ec71d3830da57f485f4b28d136f66cd7658368b38c7ab

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a4b1a8c27d3eb4961cbfcd00a592f11fb98a3117385e5abda84b73874e8a882
MD5 9c387936b93f9ea119d6e89ed03814e1
BLAKE2b-256 8ebe3bb53a206a80d369bb3a998a5ffe124d00c40e3abe0e7c4a232b705b8cfe

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a135e51148e62f004587d587b83f8f6ed34056d8c1316d926cd21f9641ee5ab
MD5 2ecaee781dedcf25443dad318b685f86
BLAKE2b-256 141a66a935851e23e06c6cf6cb1c82a8c236716da994fba9c734e2824af6182c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 74c0d7b6f82025d23aa837a4ce865d9b4b63890b5e4b76f5dbd99d09b7a75971
MD5 22e71495272fb890a15b4988759b5f88
BLAKE2b-256 051110d10175008f87b5cfd5f90091339d19e3f518b81029d45f63fbff6630f2

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 650e44b6ae403d70ca91dd3fc13b89b2e4e0b5ea0d6a84fe2661bbb743a335e5
MD5 02e0eef62bc9dcf93fa754d2f647b369
BLAKE2b-256 565dc96ef08933f34f3b195efa6d7a4eb3f0cfcaf0c0371efcf1a95c25bf8555

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 6385fad4da108795e7e4aab685bd0a82cf4ba7871dce9d6b2d2b82df386f2532
MD5 37632a1e9ca0414f7825c5b20b569143
BLAKE2b-256 efa20b831e6b1b904c2b1e6548a87c3e139cf8106cce45f2b259fd50de45ab9c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a4ec04fcbf1cb9742a20edae7bfa6e76f7767efc96da4e264e1a37acbebc527
MD5 f0f20773c45a595edbcabaedb0a29dc7
BLAKE2b-256 2644ddfa281a2757dcfcf75e252843165b2725787fb4be35ffd961861655954c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9b5f8c14fbcde32d081bde54bcb3fc6d4989d48cee9767ee694e5514b25b3157
MD5 28e14d26c721864a1565c1c6360c909a
BLAKE2b-256 6c81d8019295f7c6c2698ee176139292e8c4dc9283af2637e8876ba050961b79

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3196700e619e81fc38fd71cf8329563fdffcec6d5fb0477d74776b2f65215e40
MD5 340cfbcd62fd5f63468de5ea921a19f0
BLAKE2b-256 85adfab9f6f9d05cc354632cd1756db39abcc6b80217624a4d7c643095e295f8

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2319e7b14a876f74e9d5c63a7d396c4ce71919219b1eae3dd8c6cd5c71542156
MD5 f77f8464bc19ca899eed53d23f9eb2ed
BLAKE2b-256 eb6d7564f50098e358ab6e8f1dae0876ad966f4c3a37b8f44723c3a3e7f1d6a1

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a8444a40ad184884f183090037bc88a9422bf21a06d18d43fa4c035eb379791
MD5 c95e5c7dbe0cbcdeb7c2c83d4f8eb766
BLAKE2b-256 97dcfcf0d701cf876ad69e358f36e6023d79108933a16d4021796273b9fb7471

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ec6257ab9ec5c512ea62bb2ba06e730d1215b59f939339cabadf09d90e61bad6
MD5 6f54ca6d2c8d37753f527f003e8c32b0
BLAKE2b-256 f177bcd965192e20ad6ca8964506d5ffe0edfdf76576ae7736b78d090abdcf8c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3f7bcb19c2c24f7e4cb7ecb25325d3053c57a2155ad05bc43ad4de2d096e2198
MD5 4c63205d7620cdc39faa707292d6865d
BLAKE2b-256 7aefed7808d1aedd9ab2dff942c76744d89b3b11726e92884f992769dd1d2f90

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 86e9d92aecc1a0d29c4ddeafe414cb35275cb9edeadeae1b849098b71d196e60
MD5 a8c6bab9e83813424dce33a77feaad75
BLAKE2b-256 141e7930ccf2915c6558f8701c275f41d546f830e833e2dd29c23723f428a0e5

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4a0b7cd65111298af884a11f5a9a859f954a0f0bbf40767b4fb6c9908415c6b3
MD5 f583422dc5ced05b6ceb1b21350fdb65
BLAKE2b-256 0e77502b1c6a9fbee4345099b3447a76761bff763e454c5969b936246f1b397b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39a2f27d4f1f78d82d5e30334ab99c035b9bfb0e3289c9341c767574f6c14678
MD5 cd76995606aaa1c764634cf797732eec
BLAKE2b-256 b662ed5685aebce571d39070db3890599d9420f3530c8a50e28f70f5cee7e845

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38d8288d3a4ce2886686340a97ed1f3ed8d177664a158b8014fefa20cdccec3c
MD5 77201512ab7eda9fab39c6638297e01b
BLAKE2b-256 0f6b9d5a0997476de07b28ab9476c901f33381cffe3c0d7dac72e419cdea8799

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f1be891a76ba542eaf577f2ac6a22368d5422a366e43f4f2b7ef8bb203422fd
MD5 4f937b470a2ff46147c0cfec186ffce9
BLAKE2b-256 5a9056f7a60fa837f9308227800f7f8863d0f399c41ba89967f1994c23e03673

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d60f0f822d78da9bfed631531f68a8ab1c71a880e573c41f6bd7c779c8d248e
MD5 77572ef8f26c4b7d40c29a86732d95a7
BLAKE2b-256 962ec4aa5e562dabe3bcb400f75d9de3768ef8bb2e4e239648430d8d6b3c58e5

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 673729d50a93dfc6a503f45218d94ffb3b215ac62eb7c054c62a253dcf25d622
MD5 b502ab281442f590ff365f18a9f2e792
BLAKE2b-256 1cda6f3a68f52143f6d2837a1ff53ad97e357978fb39f99a1697bd8f74432a42

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 2fe64e4db9852a6845e1d8a5cbcb021c677b6a10aa99a5754779f414d314457c
MD5 7300695daf6f5d61baa62cccaf60424a
BLAKE2b-256 c2232d1bd521d0c53a45d7390b5ed7ca1905827c2242cf5a4fad6504407812da

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d80766109588c30fae01b47e8c8872187e5220607fb12a622c3c62ace249d1ab
MD5 d72aa187d7c3126cfffded06c823b12b
BLAKE2b-256 b4306c66b68b4dc255c5ec73bdf0ad1778818a7a68269a27be1f5495508b7281

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f682cb71ca612ecfdf6d19dae715f038629913d0a02502d4ecb88e5e0755abf3
MD5 271c2d8aa72ae24c7fa435b821290c85
BLAKE2b-256 145b068bc81ffa4797b0264417f4078e6abd8e4b4ee866f8cdfbad8d1ec2cff8

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page