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

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).flatten(), 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.1.0.tar.gz (656.1 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.1.0-pp310-pypy310_pp73-win_amd64.whl (351.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (481.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (412.6 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.1.0-pp39-pypy39_pp73-win_amd64.whl (351.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (481.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (412.5 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.1.0-pp38-pypy38_pp73-win_amd64.whl (351.1 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (481.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (439.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (411.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.1.0-cp312-abi3-win_arm64.whl (323.7 kB view details)

Uploaded CPython 3.12+ Windows ARM64

apngasm_python-1.1.0-cp312-abi3-win_amd64.whl (351.9 kB view details)

Uploaded CPython 3.12+ Windows x86-64

apngasm_python-1.1.0-cp312-abi3-win32.whl (314.7 kB view details)

Uploaded CPython 3.12+ Windows x86

apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_x86_64.whl (591.8 kB view details)

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

apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_s390x.whl (577.1 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ s390x

apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_ppc64le.whl (693.8 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ppc64le

apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_i686.whl (602.3 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ i686

apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_aarch64.whl (582.2 kB view details)

Uploaded CPython 3.12+ musllinux: musl 1.1+ ARM64

apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (458.9 kB view details)

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

apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl (427.5 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ s390x

apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (539.2 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ppc64le

apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl (480.8 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.7 kB view details)

Uploaded CPython 3.12+ manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-cp312-abi3-macosx_11_0_universal2.whl (758.2 kB view details)

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

apngasm_python-1.1.0-cp312-abi3-macosx_11_0_arm64.whl (370.9 kB view details)

Uploaded CPython 3.12+ macOS 11.0+ ARM64

apngasm_python-1.1.0-cp312-abi3-macosx_10_15_x86_64.whl (411.1 kB view details)

Uploaded CPython 3.12+ macOS 10.15+ x86-64

apngasm_python-1.1.0-cp311-cp311-win_arm64.whl (326.0 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.1.0-cp311-cp311-win_amd64.whl (354.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.1.0-cp311-cp311-win32.whl (316.2 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (595.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_s390x.whl (580.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl (699.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_i686.whl (605.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl (585.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (430.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (543.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (484.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-cp311-cp311-macosx_11_0_universal2.whl (764.7 kB view details)

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

apngasm_python-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (373.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl (414.9 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.1.0-cp310-cp310-win_arm64.whl (326.3 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.1.0-cp310-cp310-win_amd64.whl (354.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.1.0-cp310-cp310-win32.whl (316.8 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (595.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_s390x.whl (580.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl (699.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_i686.whl (605.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl (586.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (431.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (543.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (485.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-cp310-cp310-macosx_11_0_universal2.whl (765.1 kB view details)

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

apngasm_python-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (373.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.1.0-cp310-cp310-macosx_10_15_x86_64.whl (415.1 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.1.0-cp39-cp39-win_arm64.whl (326.6 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.1.0-cp39-cp39-win_amd64.whl (354.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.1.0-cp39-cp39-win32.whl (317.3 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (596.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_s390x.whl (580.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl (699.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_i686.whl (605.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl (586.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (431.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (544.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (485.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-cp39-cp39-macosx_11_0_universal2.whl (765.3 kB view details)

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

apngasm_python-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (374.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.1.0-cp39-cp39-macosx_10_15_x86_64.whl (415.2 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.1.0-cp38-cp38-win_amd64.whl (355.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.1.0-cp38-cp38-win32.whl (317.1 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (595.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_s390x.whl (580.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl (699.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_i686.whl (605.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl (586.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (431.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (544.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (485.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.1.0-cp38-cp38-macosx_11_0_universal2.whl (764.7 kB view details)

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

apngasm_python-1.1.0-cp38-cp38-macosx_11_0_arm64.whl (373.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.1.0-cp38-cp38-macosx_10_15_x86_64.whl (415.0 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: apngasm_python-1.1.0.tar.gz
  • Upload date:
  • Size: 656.1 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.1.0.tar.gz
Algorithm Hash digest
SHA256 df4cee977dd8b5c9c5da72a625f10a97a54fff1d372946ccf5d2f77f9feb2a9d
MD5 6adc61dce9feec753b2980d41604ce38
BLAKE2b-256 a63b1acce302dc7d7ba9d7a76ea92296e371cb9b430eb0a0f64264b876f6d45b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4ad5e5551c0021a9425d53c959ecc30b87fcf6456700f0baf8f334a30fd4a00c
MD5 7621aad5b0a9a6b633db8e3087acdb98
BLAKE2b-256 e75475f3117234e28fc1c746a3b25bcbd382067c92ad55de81bc0e6659b9b975

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12e763b71ea7435328106a70bfe5930c4a17cdfab7acc14a514e77adf40ca945
MD5 888ffaec802a504d9d7d0696936a5f36
BLAKE2b-256 2d27fa2220d5e4926c09da4986f1c2d27d13379b5cc9f47cc4d88dde7e881663

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f124b8b3b306d5b49ba092c6c5fdaeadc37ee4066dc396f0dc271f5751a43ebf
MD5 e44cbb7102bc16c07745cf9b95b3afc7
BLAKE2b-256 6b505d909c0c79457a3d2a129768c20f595027af59efb530596660a09148762f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6d8b38a0bd408b606b2f980736b217fcd8419111bf384f7a1f800a33a94195b
MD5 39bcc909b7c301c034b0588ce9c70afd
BLAKE2b-256 acefbb97141a7a320099117d5d176405d02702320ce64469799d800ad3a70b99

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 62ec15331af49b9ef12978ed098ea1447491ef7f72c1d7dd6acf3b53dfaa912c
MD5 7f87184f34c16a384b465067a6a08242
BLAKE2b-256 19decc4f62109ddf032097e2b3c4b2c5ae62c56533f154a3414b514b3355868f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7e18987b1f7e276f6dead718eeb0b135247bca0d13096c97755489e6fa8488e8
MD5 82ba1a7e2540ff1062ce0d3b76527446
BLAKE2b-256 65fdacc132e2d117cf029f3252527e05cb41f26e4da5746783a01a2bf62d8e3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ccbc56ca510c64b4071dcc7ccd38204e5240ac1621fbdf0a65cc1fdb44fc654
MD5 c66f286c1d2786419cab82745a7090a3
BLAKE2b-256 73973e913e07b481a8c542b48e68ba7aba25eab6b516c242a3dff23558bb4f9d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc4a2ea9a930144c61fb49aff94eddb22935f7ffb76ce66887d28e9381b24b17
MD5 2bbaeaba84d1d4b5785e761a668a259c
BLAKE2b-256 d1956839547496dcac30b8b2da65cf8b61115fa766bc3e99dcbf372dc4bd98c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e02c7144cc91572333b375f68a91ca956ecc393b09c3d7f143845cad4f4fac78
MD5 4a41632cb9f3e8d65307ccaf3f900abe
BLAKE2b-256 3314576401fa2e461d81b0ad32027576d16ba98a7eedeeed2497d1b5aae2ad29

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c1548dbc687f2f8e075e552774de81fdc35cfe96bf75733ae3b247f3a657df5a
MD5 dd6c3624bad2411f7111d751663030a1
BLAKE2b-256 e3d4fae9c9d545a28536fc5370daf4bba07895d5ed86289b15c160b933a7fdc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0f771b8585d96090ebbb92246a464c206752ffd1b09aac1f27cd8299dfe37b4e
MD5 20e29710317dee96f10a0dd406c44d31
BLAKE2b-256 62692d7085e3f14aaca6c13b3972adba8bb862c201652d63a45e56baff61ad34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d3fec8f2e4f0930ccf30be4f206ca130f648cf4c07266c8bd4e629f1242229e
MD5 d10066cd31494bfe473509fd932bcf09
BLAKE2b-256 94ad51b7dbfbe8d404a4944149cb3f1bd15cbb4c246fa85bb075c2676349564a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 93e3b12e94d38ea3c23b3cc0d74332ab98f73452690445969ee642527d2c47ff
MD5 62b71246e1477523eaceb2921007826d
BLAKE2b-256 db920692538eefd0c2c76e28002829460ff6dfb805b998ea20edc073c29c9330

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b13fd540570f487a228b535d22801cc04b763c083e0944378b685992038dfa4
MD5 be5643d3539c5f3b63c99561262f84bd
BLAKE2b-256 0213029ddd8f2762c66cc3a1afc5bffd2679552cdb51e1c8dd2033b34ffa10ab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 098f5f35c98e1d12d0199a96d96e9f89450a9a8c02b094119cb546077c696adb
MD5 aa1b9d92ebbac598679a558bab389238
BLAKE2b-256 3da32b3cf169ac1cd6f764c51cba3a1588613a119ff827a971ea49e1da43e56e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 614a7622a41489a3dd305c80c84f981c9dd56a49b27838b9e4557cdd35acf97b
MD5 b6dde6cbdae33326112ce9445051ae73
BLAKE2b-256 8d88bf1e4ef8213536485bb2e101c75c5eb88b53b93d89a9982aaea925f568e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 ebd2cf6b0bb2f20623d0b4e8cc3df733c7a871cfbcde6f3f4efc20b7acf62855
MD5 90900f167850c3a9f950656e038f70cf
BLAKE2b-256 8edec92ba50255308141c8f68437b69dfb517207cd37e4b6fc34b22cb63bc9d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-win32.whl
Algorithm Hash digest
SHA256 15b8a7cb29714bd162e688923503ea783963a339e503dea6f171b0717acf071f
MD5 1107ead4b5e2087a1085e8167f1e49a7
BLAKE2b-256 7e224ae4e2b096b5aedab2389e464cab98df24d056c1b56ca6c0b17306e0b9bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23b3ac32fd00ebd18d0c3a52a5047d1a7082956373b190ede7a88e525a08dba2
MD5 2a08d8cfd575ab3e940cd3770d33474d
BLAKE2b-256 80cbc1e09c2cdb68bcd5941d43242034fd07e84264a71bc11ef082d825642035

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 3b82026c7f62e5b8e7cb4c0e170275b0631c7ff8e50cc86c284023df7da87269
MD5 e6aec50a62e97fea5fdb5655b2b901b8
BLAKE2b-256 b48e4dd55f0c843543a8b6103033127706d94399305bad09ea32e4267326081f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2be38b15dc312cecb6b246fc1513308fc4bf7b380647e0c92f63f21157f973d7
MD5 877c6dfe62a5c63ad05211487fd92263
BLAKE2b-256 a8926863e7dfcb464cbe9ec15679be25bbd5230f5153e64bb268797b61dd28e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f362839755aeb5bb09fdfaa117df299d1fcb65d98bade34571b3e439f3a026e0
MD5 8dda48e898b8fc6c9a43c7d07dc61652
BLAKE2b-256 3fbb5c698157a5109bb6429764e6b534ee0f7a1598d88d837cae43cc3056901f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4100bb9891eb48d65d808df21da9c0ce8e2c6a13dce720b6d6a6c65fb9745fc9
MD5 04067e6e3748a576afc43576d898b9bc
BLAKE2b-256 67445442aae8d050dd9803c31a63f682c0abec2a671590516065029814f8adf2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ede080a60a362033f9e65fd6ec81258523ea7e978031b96252159fc6b5dbe05
MD5 b425f3951bb64ec96273f9a4b35ca1b4
BLAKE2b-256 a8b77272b0dcb62ed8b765daadff0a95d28d18161e602c495f82bf2096a60795

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d3878dec1239e61b98739670112a5670d1b585d4614890f5689bc5fcdde4815
MD5 734d4e4c78ed767d0fb4c9970e4f890e
BLAKE2b-256 a667797e62c80d8b60ca78a796a870ac4a188c447cafce5ce1280c9596915c55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 878594e2d4901ee174e95fdcb50e8586e88604876306917c697e376cb23314d7
MD5 e13577c863e7c20a69a66bac7190e256
BLAKE2b-256 041ec8759fb2ff1435fba8afc8eb32c1db1ed7ce7d1df73f488cb0ab68792ff8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3f1bf607fa96265b3d8fdef8e9d161fb65f3df432ced9aa7b3a84f2e8c1eee37
MD5 164303fb0c9d6c051e33121417d91da3
BLAKE2b-256 f36b761e9674e4e7e4da4cbe0cd0174d786f7328f91134265d04db87a659cc7c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 873e08ef6437891eb96ec5e076b9bef88ee4eea5315e9ce517919cedc61e9237
MD5 6cb43b441fab6061339992c9c52ccd5e
BLAKE2b-256 e979ff64a400349d0b6c202886081de47b654a1dbe195136725d1b41e0b51a59

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 6826d296798249e9d94e5f20488c9ff29e1001697420e376fd3b4c75eb4ca226
MD5 a920098a0ae850b61cb0e8dae9ecca61
BLAKE2b-256 516a33f7af9bed3fd5169a21323c9146154046fc027f22bdb6cf1a9dc9691c63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a06f8e926e44a24a8d2f3e28d0ef529de992d7e24f3cbf61abdb28ad021d5cbc
MD5 f61449fda565b3e069a47b4d372b2f5c
BLAKE2b-256 f5f80e171df986c5598c5a6b413ee5fa72700cadf524222573b8deced654d70e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp312-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d27cf82a5a92721fdbe62683525ab07f778622701b1a1246bf8dcfd415b7b8b9
MD5 3ae93239d492295cbb506475cac38932
BLAKE2b-256 fb5fab122d66a9e5a123b79f58a28ffbd130d93fedc83bb617b886e96a0cacc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eb702664babb60137d86cf773b2ea35b2d7ff126182cb8beeb97c3c72716c304
MD5 a331cc2bae4516ab5926bc217ae5da1e
BLAKE2b-256 2db4d21ef091abb1b3f0eeeb5f05bb810be9b1f48e971b30e110a6d9d7a88230

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 577ef182f2b2478fe0bf8af6ace769f1c76a3b1012fbbc48f6d0db2e7c304f89
MD5 71d2719deb588d80ff07a89085bb8dd6
BLAKE2b-256 130380e2c93cc5487f53a8e085c4efb8f5469a872f42dbba29f44f24edbe5da2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c1ef1c2e2999e086e2cd9a0ddc78d1da1a9f6c7f12fbeb5263cb477f9acacbcd
MD5 30077fca6a332b0bcfb0d0fe808b1ee7
BLAKE2b-256 45049189853f33b458648c6cf97251fe753b580baca06c0e86d7920a03fc259e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9938c9804b1b05dbad818dbd1b9fa011e48e340bb740b5b11b386069457ff5e1
MD5 09d668a092fb7336a4613cd282b69efd
BLAKE2b-256 1bd124838e123c6949fa3cc32a51208cd06b413658f5900be44adc8b44ad5959

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e37144daed4bb38fb2a97558c648e429dc6606e7c4c5cab9ca2607e6d5f304d3
MD5 c7949a2af68b4f6a88606e3b90a0fd41
BLAKE2b-256 2d93a054dcdebf4a18be57572d77fca2e550572d15e1059ab6acfc799c1ee272

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 3773109d68a26cb57f67303620bb5023721c6b049f373dbc80a9c979bafc8ed0
MD5 698af1a17c697963fff4224429aeb13b
BLAKE2b-256 c66724c0b11270a4c18a92f0c114b1d3b028dd392b217cbd8da07a7dce671b57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 71b0becb3d2c6ea6d82dc6de28466e576726f2f88c5e3408ccdd93b5f1e7b42b
MD5 0d6f6f49f423e8ca94375f340ce6a5f0
BLAKE2b-256 caaed1e917c86b34461d744cb17360ecac165235a8adf01e9bb84081ab321864

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aa8aedc4264bfc8d47cbdb1fd9365fec2eb50973873de3e5670abe529ab72b8b
MD5 d33717847ac5229a21178b21ed2c638a
BLAKE2b-256 25eb50632952145093ab0836d756f629b184ad7cc63cca76d2759b81af8a9452

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea4c37becc06eadbf3b2e94511069befbf4e4248e99c1420fd0901ba41b2ae0f
MD5 c3da3811f832a5d9dbb331f4527fce6c
BLAKE2b-256 3e5808dd6981764fcd987b69066c8a49a32ac79bae2caaa529fa509573e50194

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad301671e25cd5e2ec0b1310fa4a6f5662c9c47baefe2ed6abe6b37c75d02faa
MD5 7dc7808934782b4a68115b1ae0fa9280
BLAKE2b-256 7b64c49a12c2c02caecd0911241a3ba224ffb0830deb16bfc76b6ebb87f946e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce69278b8da41abb36c1b708565810288097d710e4ca334c435652e97f10afe9
MD5 a781c7fbb277ba3337717b5c9150ee4f
BLAKE2b-256 245afdc56c24e7d8d61ca11427dc652f60621a530b002fecf88c352f45a55620

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c34c424e759070095513bd8af2ca9a676bbd519559377a77585ffbfd0965de54
MD5 d92e11195ef3e0916b30c3759bfd14e6
BLAKE2b-256 94858f125f8b01578b41e0bee3a35cc1f9238d9470046ee429a5f2905f2d4e0d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4562d13b05a7c7b28e1339b31276a28164d894416ab5291a8968c5efd6bd24db
MD5 d4c31716774efc81616cd6e738793317
BLAKE2b-256 02e613df07859127a653e15e51fb0965237aab536859eac47ac9d16a68e82d62

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 d6bc102c8b3fd1f07034b8f03a73a8eefa486fee7e6ce15d82906c7843b1471b
MD5 e863f534f02ed99218a73c33a89289d2
BLAKE2b-256 b1173da1dde406a50790d518870768657e6702190f4b3183f5a19ddef715dccd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee62c5debde60d764a942ee9020580ffe05a7e77849e99dcfea94edf068af91c
MD5 9a6a64ea220815f12befb6fdfec4e13d
BLAKE2b-256 4c2445e379b8c3e1386e060082ecd2d42f80113b7653a9014b87941f4d78a334

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cb485fdda5b7953fc7a0229daca1752778663ef2091f60731d3c5c122b8d297c
MD5 afc7b704c2ee22f2d15af596b3d674f3
BLAKE2b-256 77976d2fa3e4c643dde7cbe28489ecb4dbaae26b19ffdee54378f45ccc7c0ca6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d747674d6112d11ec7b330f3b8fa24e5040507f5878742a990489c2cfd5be4b4
MD5 13f37e58499bd9a20d286ac60b95b136
BLAKE2b-256 b2eb2e98afaed00a2d0cdbdeaa7f3fd8bba238d0f86fa7ecbf464add07dd8283

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4380cb98b25804fb21a3429e3de10ab26079a3d9ccec4262f02553f3de7dc009
MD5 1f4d0fb72c35587227b77f7d37b7f116
BLAKE2b-256 945cb0e45ea1cef8983ef2d8d600ce2f07e32bd62f6c783bb22065a8660e161d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5282445ac9d44fb77980a223fc58bc342b8d8219e155e11b042cc33a77374739
MD5 5fc434ab9fae94ea4e73c1b95c6f2e4a
BLAKE2b-256 8fd112163b1abade9a511ccb21f5f05619c83595ad1a1aced5371de9567a76da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f9f893ca9e281e04ba8a1d15f408307c7e0372fc05a321071a23bc30cd74037
MD5 9ee53064cdc24804f30dc5f54fef8933
BLAKE2b-256 b434defbafb4bffbe112e8a0ca07b33e92a031354b66dbb69a0b1dbaa6507ca8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 98a91d7cb0d4afdfda761f0db5a8e048ac4f521ff502eba4f379c5ccde4eaf49
MD5 6cae58c7058fc80bffd273f5f0e48cdb
BLAKE2b-256 68bf3c1524ab9da572a86d6b978127bc846c0a6b6b071b4a457ef7b9a71ae433

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5967c543987edb00b765ecc996c1e3f5b316b0a069629e21afa3003d34f5cabb
MD5 512768fa80fbd516e8d6ee96e768add8
BLAKE2b-256 a3499f96d1270c4178f42e17d9c7835f75b672f736b0fd0deed9e8a4d571850a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9194b035cf12472725a781d1cd1aa140e1b44ff44546bee79a26b26c9271f485
MD5 797291c5b06d9e2c2316cb2abfe1f0e7
BLAKE2b-256 ee26c9b7ec86838e0f46629afc79faf30c0647cd524b14ab32d7f9c5dcc07df9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7a6bf0c65a6e8cec5cd7da04a4517eb5f77ffd646b207f8580c71b731dfa11c9
MD5 dfbcb222355a1d20ef9d773550c34fb1
BLAKE2b-256 8a22f9d9dee2a4fff7a005e22fdfbfea8258cce038327a54c23208f6f4ac13d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b678f134aa09bf17a1ee1ae4770589f0b46d3f234753f3a2a42e653e1c0444c
MD5 891e07462693d310b6ce4f1e51b0b8c9
BLAKE2b-256 72cdea505c251da681dbb230f7c0c49e9b82069839f4eb0b807a1c58c2e84852

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b572ed172d283ba204e4386eaf8334df85064a8df83b3f882045de98a6408659
MD5 e6e3e2847167908899c371f722741c32
BLAKE2b-256 4b442197ce6ebccd2ccd89d6a203b0be54aafc3908a6de9a3a41acd722b14be3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56645b4d4a939096972a89be78403d1ef1ff2572d5c932fe8a82c1c50efec7ca
MD5 47d78b696dd902d19ac8ee9f36e88758
BLAKE2b-256 f9a991759585535478d0f8939e38bdc07c1aa3f7322a4391cffbd2fd188d4489

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b406d391b6f71ad298535f28589d1baa34108dc6cada495aa3ba7a0df959db2
MD5 b7496b560cd51bd0649421c21ae78d34
BLAKE2b-256 0e94c3764dc4e7aca771de39f605e87cb7c756c34a23a5f393dccfbdf2a42946

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 607b7cf976965278166b59ec629ba533a647f64689059dea4de17f987e7aa3ad
MD5 42c4159f281e3fa25fbdbc83a7c9cd67
BLAKE2b-256 340b9af53e5079bab70e9927402f8c1ee0a3d436bc331bc1f81ac512d4d29f35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 678d7c312e441de5ff55caa19ee58f70e22445979590d2bf49b796bbc86c2b8c
MD5 2b2ac52bf90203a50ce24ed06efc9251
BLAKE2b-256 c86f6933f717172160ad834ff7a153b4207764c1cc8f29fe25cc862f7b535543

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3df4718900e237255279e521e939bdbd902dc43280545d560849532ed07d7530
MD5 f7feb52ad9e63ce65ad0f148291dfec0
BLAKE2b-256 af01a8b3c48c5aa8dca24ce54bf0eab9f533bbae283bb8a34a184b90a861320e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 44141693cd49de64372e25c83c67498cf7b6808a7ab9eeeb700a94efd7ac6a20
MD5 7db7b4574fe25636fac0116b868601d6
BLAKE2b-256 2547cd6f753ec7ccc2e0e05e24526616ac583c7344bc22067568d7176117c6a4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 be58241031adf5f7297a174c642082ce739af13b64d0fc3f8bc64c4c72ee4eef
MD5 2ac53435e68d565a574436766bcb75f8
BLAKE2b-256 325f422198ae58574ee1c6b02536f0ada322256fa51c93594ad0300ef84b9221

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 be6fd7793ef99b2df6a38ecd4051febf47109d6937700fd5a3c2462276cbd881
MD5 ca926a04f3c3b73c5b35cd2ea04b5013
BLAKE2b-256 2980a95cda551c7fecfa356c7d106bf330849f4442cc47536c7cbd794e638fea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 264c4bb298f5bb34216c0020951034cf32e9ef127c86e3c5c9b57a1a755bf20a
MD5 1f2cd3ac63074abc20db745be2469fa2
BLAKE2b-256 8799dfa1af5730b3655e0e3fdc92eacb0296e8af5cd4d917b160b5deaf65b170

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d696045c1b9f1be397872f51c352622349a21ae8fb650deece552fda13daf874
MD5 49db3683993b7193215ea3df6c9838f2
BLAKE2b-256 749771637ebc860d4fdf4ab1bc0dcddcdaf2ebff4e205710d3803fe0b563386f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 92a58a33430a0aa8e745727ac93046d53182cb6eab8177ea8b8c641dd8d349d6
MD5 637cc13e5d6491efbfd9ff4a37377147
BLAKE2b-256 476e22943ffe4dbf193faa1381480696ded64101f0932be091ab70b141b248c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9293acd4ede1986a0ac89d9bf57f74c8276a49893a1ca1e989072a457aba37ce
MD5 417b9623e799a58d15c57cb4fc9b8fcf
BLAKE2b-256 965a207cfea2944e0d3a196335078952ea9824d610d8eef3e017bbc91c90bdd6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 23ad3bd3b52677d176f296b3c840509e29271b8bdefbf2bef9f95a6e882ab5d9
MD5 87af8bbd2bc472755c90cdf33f28ef6b
BLAKE2b-256 2606b5a355e693ed8cd9e430892e5751864c49f8cbf21bcc0987e8cdab0d3267

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52c367925a6551730987f32e970c2f50db282a2c76dac901360b88b6357a5e30
MD5 c7fce8ed05e071c8fe7713f8aa32913e
BLAKE2b-256 1e309f67ec356298b03743eeec5a7282ad38ba978c8253d4644d6b4feb99965c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed2a75dfb642864dfea9401e1710303028a93f0c918910e92b17a2f047ab957
MD5 3cc36c96fd7a7bcf8921bba3d5ba2595
BLAKE2b-256 e5153103e5b883bb8f3288071b37eb2142cc98b588dc549edea805c6c17fd1c4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b469b8d2c1f3f2e62298e371af7a280689adb2904d7228f456c5e26020f1a6f
MD5 8308a87f4f9581d2a8dc3b61334c9bc5
BLAKE2b-256 43a9f6b44387221f8dc4fdde519647fa4ae2ae1cc1f4817803cf54f990ec4739

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecc47013ae3d1e93b727164b3ba3179dd96622721bb5ce2d012fa6224b306354
MD5 592a7a28a1783560a83d9ccdd6529b06
BLAKE2b-256 28622ec72359b4c1ab2e8566ad023bc2ab0f5234c689890c34feaafa8c1ea89a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6baf789f8021c3bb39c604e47c511c2c68d6eb19316873799af2b4142d8b0120
MD5 2213ea7043ca9ecae3a21098d042cf79
BLAKE2b-256 4e07e263aebde683be8e327a2a185c19a048dd36b58ba89521f097ec3c39f12a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a3a74a6c9a316772c5d67458328ca10790886dc74d3ec50df6d7c20f8cf8393
MD5 02492d186c9b975079a9c856c6bddb6e
BLAKE2b-256 b4f686b81f091267ca18ef2a8c98903fee3ae336a31c936dbf44836a1a45c2b4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 aad9b8fcad81672405d2253fbcd821f74093ab0833f94d2308020bd7bbd7a651
MD5 a0ff0499536f6562ab8c5fa16a017428
BLAKE2b-256 5f9986835ce33dd49720f863bad16abd0b6e2b3e3073bca70c9144098fd3fbb7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 300786ac436734059837c377e9ffe3555378cbb6cae90e46605704db596abe46
MD5 dbf5fda6a1b17f9c8d0ddf0da715ac7d
BLAKE2b-256 8b2ecaa2ad5fe5ca9df1fa195b5576c1d83cd0eff06acca1a7039eb50eeeec6a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c76184c1a95dc084b4e13c98483af4eccf6cd80bd196573c18397a4b8765cd52
MD5 b228f12efce764e8bda9c8dcf6e35556
BLAKE2b-256 11c83ddcbbfd63e6b8e03922c84cce3cfe2df0f1eab5b356c4428eafde100692

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7145ea3e30dca40be97e429d3357ededc1ca32c155a61b649a83274528288e1f
MD5 d8fe72d107978f3efa01c830c008e9ac
BLAKE2b-256 deda1aece3e9f5b98ed36294e87272dbe1a5579fbb18df0a5887c9f6dd010748

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c983dfcc0d3234e3de71087d36ecd5a24ef9077b2957b18c25437de1c66db285
MD5 86673e1b9ce43a2e1f3f0c0de7bb6e8f
BLAKE2b-256 6908a36bdee0aa9a46ee88b2157f30543444a1100b0d4dffc541c36697509a8a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6615474668532384b81838b7cd33977a605d3f7e86016e1a369eaf3c09338c4d
MD5 ac61b4ba36d1a9e3b28f196589cba9ea
BLAKE2b-256 9fe61dca0ebda270bf603e301b0aaac4b3bc70a26c74ca6e0da82baecc477a15

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 fe90ff623aa751b6195cf0bff45b7a418e5af8be69f9d577031d28f4be550bc2
MD5 0e939d19f5756be9eb657a98971af897
BLAKE2b-256 5b72c3440dc5d47f11a5542021587e93c5e87757dba1a080a069a4bf0e6824d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 70b45ca7bc09a9f6eeced84dc33136fdb8847e66f6313d6067d6200c190a591e
MD5 cc9b3fb344109ae45310129b729df5af
BLAKE2b-256 eb3605451a1410325fcd77d2310c7992f3e2f6399a84e84b1f66f0261a15e5f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9d069787b9c33defb20a5cf705925515bf471d55f8da2133c1a53eb93820458c
MD5 920713e2af8c2a13d761a9279dc6cf7a
BLAKE2b-256 1c2d5b6a7ac4fc6ab9b9f6e9d97465760fe34453a69484ba90ab09b417e92bc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 89963dd9529cddae114df4dace97b5ba6f5c45ae7d162ea86f0e87125506d283
MD5 a105ae3dd4d01535b7c4c3cc8b847f5e
BLAKE2b-256 f599f9643aa526da49d3b379f8a621bf79730472563a16a08d8f14a904eb6eb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f1a8e24865300b0ef4d83a29edf5e7c198cc4be9f5363a373ab7fd668347f2e
MD5 fed45a9c047434182ac7889a4525a4ef
BLAKE2b-256 48fed402f3eab664871011bae2974a3a6dad9a74eaa27d2f9640828ec3347e34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 792814c6dc7f356c9a7f96433c13133acaeaf45a43539b5f43f47ebc3edf96df
MD5 fa73bd6cd8e1c59815c72418d9f1e91f
BLAKE2b-256 f46b28bf1debc7adcc2d6fa4919aa8ef615263c507a01de0c60dbf605a296de6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8c6e3b087ad5758b9dd2825507984c0cf411091ceb422c415c7e2eb3e1a61cb
MD5 c0dc8a5cb88b970b29b0e29470a66fb5
BLAKE2b-256 4cdcf74d150d174e0b7435384fcbe4a5d78fb9d46b5aa5f7c5758605603c53f3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d0726b14455082074eb45e89302c974823ad2ffb77960c187ecdfeef1eff975
MD5 bc96029343d3e6a5787784ecb0c870bb
BLAKE2b-256 2c6b265d45d4f7c3a6a64e6be57c01a99a9a56efea0b802559df2baa47354aa4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80288676f6ade4e042f108a5a7a3b22692ccdcefcb01e9b915cf5e0dd9ab967c
MD5 4f255a9fa8e19523cbe160d0d5e26d8b
BLAKE2b-256 339e58beaa441e05367eccaa0560fe13e8510d9e59adb4f729b5c69cf717509f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 9424bd44fc81cdcc47b73e529ef431d4d3bf68987d6596322651d3c8d98c7510
MD5 51dab63135e60349d2fa2c1cf227a787
BLAKE2b-256 823823f48c9a723ef84c0e247b053ab4aa2925c1b3229e968aa85ce058e89023

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c68febed424b8619e19d118d5b8deea5b61a4b3346c30d05bbeb968c20b1540
MD5 d6d48ab6b0aa3049322c75b38efadb3a
BLAKE2b-256 f4ca882df440a3159101a8657643b58b0fed25bacfaecb3fcfe6573e40a0fea4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.1.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d00545041b90fb9e00d20175f9c8b425eaf5a7e5ac087b607ab4a5ca45feb8ba
MD5 e402ef320fb9d37185c057f1b552df2e
BLAKE2b-256 54f3b3a0ce9f4a9a1859cfe4834edcec22e2c357270eccacf35a23c16a0ddbcb

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