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.

Install

pip install apngasm-python

Example usage

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

from apngasm_python 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 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

Method 1: Without vcpkg

Simply run:

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 .
  • Note that you will need CMake.
  • If on Windows, you will need Visual Studio installed
  • Cross-compilation not supported using this method

Method 2: With vcpkg

  1. Install vcpkg: https://github.com/microsoft/vcpkg
  2. Set environment variable that points to the path of vcpkg root
# On Windows (cmd, not PowerShell)
set VCPKG_INSTALLATION_ROOT=C:/path/to/vcpkg

# On *nix
export VCPKG_INSTALLATION_ROOT=/path/to/vcpkg
  1. Building
git clone https://github.com/laggykiller/apngasm-python.git
cd apngasm-python
# --recursive flag not necessary here
git submodule update --init

# To build wheel
python3 -m build .

# To install directly
pip3 install .

Note that this method also support cross-compilation, to do so you will need to set environment variables beforehand:

# Choose only one

# On Windows (cmd, not PowerShell)
set APNGASM_COMPILE_TARGET=x64
set APNGASM_COMPILE_TARGET=x86
set APNGASM_COMPILE_TARGET=arm64
set APNGASM_COMPILE_TARGET=arm

# On MacOS
export APNGASM_COMPILE_TARGET=x64
export APNGASM_COMPILE_TARGET=x86
export APNGASM_COMPILE_TARGET=arm64

# On *nix
export APNGASM_COMPILE_TARGET=x64
export APNGASM_COMPILE_TARGET=x86
export APNGASM_COMPILE_TARGET=arm64

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.0.4.tar.gz (654.6 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.0.4-pp310-pypy310_pp73-win_amd64.whl (521.4 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (411.9 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.4-pp39-pypy39_pp73-win_amd64.whl (521.3 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (451.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (411.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.4-pp38-pypy38_pp73-win_amd64.whl (521.5 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-pp38-pypy38_pp73-macosx_10_15_x86_64.whl (411.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.4-cp312-cp312-win_arm64.whl (470.0 kB view details)

Uploaded CPython 3.12 Windows ARM64

apngasm_python-1.0.4-cp312-cp312-win_amd64.whl (521.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

apngasm_python-1.0.4-cp312-cp312-win32.whl (457.0 kB view details)

Uploaded CPython 3.12 Windows x86

apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl (581.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_s390x.whl (565.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ s390x

apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_ppc64le.whl (660.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_i686.whl (591.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl (567.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (421.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (515.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (472.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-cp312-cp312-macosx_11_0_arm64.whl (367.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

apngasm_python-1.0.4-cp312-cp312-macosx_10_15_x86_64.whl (410.6 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

apngasm_python-1.0.4-cp311-cp311-win_arm64.whl (472.4 kB view details)

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.0.4-cp311-cp311-win_amd64.whl (523.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.0.4-cp311-cp311-win32.whl (458.8 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl (585.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_s390x.whl (568.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl (665.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_i686.whl (594.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl (571.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (476.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-cp311-cp311-macosx_11_0_arm64.whl (369.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.0.4-cp311-cp311-macosx_10_15_x86_64.whl (413.9 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

apngasm_python-1.0.4-cp310-cp310-win_arm64.whl (472.8 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.0.4-cp310-cp310-win_amd64.whl (524.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.0.4-cp310-cp310-win32.whl (459.4 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl (585.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_s390x.whl (568.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl (665.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_i686.whl (594.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl (571.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (477.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-cp310-cp310-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.0.4-cp310-cp310-macosx_10_15_x86_64.whl (414.2 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

apngasm_python-1.0.4-cp39-cp39-win_arm64.whl (472.9 kB view details)

Uploaded CPython 3.9 Windows ARM64

apngasm_python-1.0.4-cp39-cp39-win_amd64.whl (524.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

apngasm_python-1.0.4-cp39-cp39-win32.whl (459.7 kB view details)

Uploaded CPython 3.9 Windows x86

apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl (585.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_s390x.whl (569.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl (665.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_i686.whl (594.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl (571.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (477.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-cp39-cp39-macosx_11_0_arm64.whl (370.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.0.4-cp39-cp39-macosx_10_15_x86_64.whl (414.4 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.0.4-cp38-cp38-win_amd64.whl (524.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

apngasm_python-1.0.4-cp38-cp38-win32.whl (459.6 kB view details)

Uploaded CPython 3.8 Windows x86

apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl (585.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_s390x.whl (568.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl (665.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_i686.whl (594.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl (571.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (476.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.4-cp38-cp38-macosx_11_0_arm64.whl (369.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.0.4-cp38-cp38-macosx_10_15_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: apngasm_python-1.0.4.tar.gz
  • Upload date:
  • Size: 654.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.0.4.tar.gz
Algorithm Hash digest
SHA256 77f979463387edca1ecd0706718ec5a7e6bcbe1109829b8c436759e2cac5fddd
MD5 824fb8b545e95140899a8994e84226fe
BLAKE2b-256 255ababccffd3e61dba7f60d40348f678caf8e326c0cc22f6d97b9b8e2b7ee4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 58c883e4baf24ffac6a32dcb9a5905a2e4b859364e21b0f64c1bc3a91a81df3b
MD5 ff0701c6cb73c5b65e6ef1683cdcbb5a
BLAKE2b-256 906f47766d65e57827cc8c2c49692d9a43084078feebefd52a769545048b8327

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccac37ae7c0e8e84e8f2b71e1971fb63545e9a9df5b3431d8641925f6086cd91
MD5 d6b1167d5401e0d77424a8054e9d2291
BLAKE2b-256 8d34413cf3cd7093b066b95d7c65fc1ba337a04d24b7b836080d562cd6e9292f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b99493279ce538abf7fbee349ac331e520e8ca624742d8085cb20218eadcef6
MD5 e1ef4f05841721871da9ae84425b8fd9
BLAKE2b-256 c509d6e2914eca3c7d03f2e70e04b431bbc01d6b8e1fa8483a4f500622165003

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc93904509ca59c9b23b7c5887766ba1a0a671f737677551b6903bd87d955d3d
MD5 14198c2e9312ea03f56ef8fad676b9ef
BLAKE2b-256 fc1fd7e21195e6ad7c8085cb30e589fb16eb580e28fbac36a45c3c380974803e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e7511591636bb982158badb8e8d317866203c80c8f9d47342254b7c4372a0a34
MD5 2b418dca19ecd95a3783223afdb89003
BLAKE2b-256 668c7b80110aa5dd449b17540c601ffa86d0c6d4733bf44fefe006082dc5feba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f2d70b6d9bd327203b394fc100556d48b06239eb5b705495844f9512315f480d
MD5 76fd165b6c4109f08f8c4e291ca20033
BLAKE2b-256 e00744ba057112f37c2737aec5ce14c23f447153181016a16b832ed86a2fd168

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0982ececc5d52553d510ca0cbb31cc50a98e7312476247afa20d3decea2ee5d4
MD5 040cad70378e4c6f66b4ccdec2663d66
BLAKE2b-256 214cad8e2cf577aa4a3c8a097f08e9d859a12b8777dce963fe52922e3a4a3259

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 519241d567cce710f6508f37c031a214ac65ec9322438b8b188fb04e427018ba
MD5 f60df2858030974fd7c6f248f1e99111
BLAKE2b-256 3822f5589b52d30a9ff642d59178e9e6dde96b7a0c49c74f78be06115d521468

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69249f85992707fba3b297efa6771a204db79c177c7b3c2f2d314dc285964cf3
MD5 d333ee046020061d901a5cd3a17a0a20
BLAKE2b-256 767cd33afddce644cc0c46c1a213c85a74973c1ec44eaefb368cf4a7d6e206fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a13558bcf8f11602118c81e64b9deb8cb2dda0508a29cf4aecb06575ce5eb312
MD5 8d1313f1da8ae7b3476dd97c399a72ec
BLAKE2b-256 a5381ae7363c7e5b230283dcaca712e1047204d428191430332deedd8fb329d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1c134257b1c6b0dbf2dd4d30d7134d7c55637eea46234d9aaac8f2864fa489a4
MD5 3ab46084c1887e686af3d74cbdfb9edb
BLAKE2b-256 6b7bac73f1043965b500a4f5b0ffabb08effa89ced441d46ca04bea453bf34e9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66e8427d1fa45b1aefb9ab8cf5bb9068b7b63cbd9cbbf84ec4cf3d2627b56d6e
MD5 188c4f2e8786350e08ae752103591cf2
BLAKE2b-256 819ca96d8a89c79d380264a55c269789830430474862be4e08893680f0ed668b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46b0a0fb398d2df11c051366647cf47a1dd33470dbffe06796146afb928678d5
MD5 3f0e2664a58f365ebc1847cf532595a5
BLAKE2b-256 a218ff0cf5664376469527124bf0b32374845630cf1b75b42fe46a5f3c813023

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74dddbc6bbc02bb6b98093ebf2cddcbedc701877590067b097915435e6a809a7
MD5 6ceffd26f0aa5646fd509e73a2f7cbcb
BLAKE2b-256 2a432362d0cb3e5f18821e4ac684992c0fb4291128bb673ff960edca4b2005fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 055af0c369d0bf4f66eeacacc4186f9cb6c6bba9391188da0a516e9d84e60201
MD5 b7ded28d591c62f7f662efce799e5305
BLAKE2b-256 152f5078a97b4778c38ea8016fe9e37ebf332b10678cb6d22a369119d784237c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8aa43755a0bc14f08125db329fdd241658dd02fc1686724fb6cdbc3aaad0717b
MD5 96748fd80e6a00f499f4e91bf1576ab1
BLAKE2b-256 20cfdfa7fcfccfcf16272c9878efdfd75a00d2daa20c2ccab806f722952ff3b7

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f27b9c27a01f0d43652f689b3e1b70c5c5e317d8d6d2f5990aaff0b1a14be65
MD5 67caca63767d0b98d3a555afa2aeefca
BLAKE2b-256 221aebd52f6af002ced622fbd55b860f04a1d3f981986bf59c8537fe492a9b99

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 976351c2d2166ae0808873a5e767275694fa54ab6a15fea9193435272c55a8cf
MD5 4c8cc2b5744112b03bdd9450f4e7fbc3
BLAKE2b-256 370c4201cb58e7b364576a4194e8b3e45335f5064f2f403c75b57fd7774b88e9

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2f842a8cb887aae527634c55d0f7132527a70859525d10d767a548e5c0d0302
MD5 5535cc85faeedc9a17219b4886136625
BLAKE2b-256 361e3d6da5baae262f952b70e9601d26bc2c5d28f00e400a29b7802cccad32aa

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 54f488a027d30e9e799634e1ecbbf20e6c678e550a2b575d462b015c36e05ceb
MD5 2ce9f0c6d656d78ccf9ca9cfeb58a31a
BLAKE2b-256 00152afd0f44a0f4de7cce35dc1b26644e4191f5dacf1b2b7af0fb97e4e33971

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 47600df669015a524a8e832e746ae779b287fe757878704269dfd44d6403aecb
MD5 3ebdcd0f5e61d4c3ab10eb9088221af1
BLAKE2b-256 57571c2342dabcec4ea8f40358b150a0c9991e787852c532b4e2d3b4375fb8e0

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 301349d9080ca4cbdb13713719faa5c88600c6044cf820da94b381beb7cbce95
MD5 1089b21a421663a4d484c0e72c15feb1
BLAKE2b-256 47e22c35052ffdd83ec8e0764e085e64d62e1dae4bcaa698123e0c8d849fbf1b

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c6700346a58035e52c49cb31332da75fed0a68e6fec783bab34730e688417fe2
MD5 a10e0e467fb48ec2edaf077d93941147
BLAKE2b-256 ef7ddf95233d0b09dd9aaa6966a99ebd0906b92f6d360c20496430c797a1749c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae09cdede3f94e97d42a9cdfe63336db00b2c3e49e37ffb66d8a9a898357d4ed
MD5 4433aa2a1506ca039981538409d255f1
BLAKE2b-256 1a8a5370567b0cf80080318b7fddbbfb20b4460cb1b393d30c88153b794c9c52

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11c20bd0be4e8354b30a64d9ec8833d399ff44f013eeb10adbd8f87291ddb17b
MD5 6e359c92e40b3f2890be7c1f908c13b9
BLAKE2b-256 8c96ed94e10914cd32065ebab3f0cae4ec49cc894310c595f59366266398360e

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d76d78311538de4f6475b686fb0c325c16d007b2af9b9ff4202ad81dcede9c7
MD5 f58d833568961995c609a0b567623af3
BLAKE2b-256 6b249d30c72e4ee6ec55a78b50d0a9cf4b83625329c32faa3cdadee43d5e6884

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed2a9e39b2a9bf44894d250dbb35f6dff7fae0b9a13d91f1be21033f3dd10789
MD5 da3a4504be8c97abf6e1f3d6ce01a9c2
BLAKE2b-256 2e9cd31fb409452bea43fb612d7d8765a2f1bec8f79ea98455664f11e7fb767c

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e26b0bbccb66be2a0ee1cb298e7ef7941f39f0f99b196b9d7f157d9a47f3369a
MD5 4b11ce22df31e21b5cd07aa6f23d8aa5
BLAKE2b-256 1e99583d54358bb053774bfea223a9d3d6396a73976ad51d0749db20e772102a

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7e2cb276afddd0bfc44e38ede92d58d0255b0d3bd63b263f50c6aab5f69409a
MD5 3e000ccfd8c3ddeef43a3267d3402828
BLAKE2b-256 a9bbfa7d7ac0297f94e216766100a5daa53347f15bb20be86f42823cf5e3e12f

See more details on using hashes here.

Provenance

File details

Details for the file apngasm_python-1.0.4-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3510170bf30ca41fc6eb4a270f6568bb756533868cf5db5ef5e369ef1346eb54
MD5 47add63bb7bbe3a0ce9c387cc347e27f
BLAKE2b-256 742b764b52eec9a5f5d6cd90ba9a1ee3b3b8f556b2849c8a2ed8dfbb3866d17d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 452f98ac241336bb0fd26c7680572aa68b9c936948afd3ba2e9da657c2a0e3b3
MD5 507a7bb023d9ff9a36d49e36eb1f6747
BLAKE2b-256 aa96103e2b9d5b0ed7b8d70354a96fc7fe409ebfab818eeda1b1251c9d3e9e72

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0817d2ed3e5dd08cc9139856d9fcdbce5c4f8f53415053a6498511c5fa05e45b
MD5 00e88a5227e1e321cbe49e930d225880
BLAKE2b-256 9af27ea569253f38161116f5192eb18487414b2b18a2e98fd7e97535bfca61b3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 05add218edf4d5a2411c43f591b681d390a32aad47a237ec3ca0b42dd17fd21a
MD5 bf3751a76537a91bde6cddd47ee48b6f
BLAKE2b-256 0494237c2961230f485d37e677bb207c735cca859baf34c65c86b6cef4288b87

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3716bab28399c9fd85c3f3b736dd0aac99b74e122560a99c7d1295f41cb54ae1
MD5 01860f378aa70d8ddbfe999a36e2f335
BLAKE2b-256 1b537f2128bd41c79a24f1e1a0364e296d68fec690fe71142f7fc8928c7ff57e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 baac06bbf204a28ea4da11deaac9fb6a75857b8591b34e0f0de8aa4ba03b371e
MD5 b4f294898ecd6d8b58d17a23ae8161a0
BLAKE2b-256 0cff5a34239df82827796b1dbadefde77642e3b1b278a5720577b3705a521f42

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c4fb1700232f0ba2ccaf40420686479747076aad4836bced6274b8b8bd2d1f22
MD5 5a2bcbafaccded227f1682795e5860b6
BLAKE2b-256 da1652c30b2fdc20efb01d683929e5fdf38e64cbc6a3401a6f6e82b1b6ad49d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 28aeea754b6afa9e9f6cfb6c2b8973670dffc5ce35c15a84d315c8fb0d20fc0f
MD5 977e3dd525874b40344d01ec9406f2cf
BLAKE2b-256 c314783dd71a9aabd5e4d0c0fb62fb6050a6e9945ebdd11f576935e879698a5d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a35597a9fc1922250b899798e3317fe5dc86b37d356b8d9389c387a5cc2f4a07
MD5 c3b4ecfbbd8fce5cf273a2230859a28e
BLAKE2b-256 1012e280537d131b6920f4bfd7b7cff5c54af243cccbe586245f6fa48d533073

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 718af807eb840635327984edfc79962c48b717f2be092f62636d166b02ff1cf1
MD5 4a62b5d09716890e3acf473ff49b5dfb
BLAKE2b-256 22097ccb0001958ee6de9f0e27fa0976f47aa5d7497705128ef1c9f63ac1a4ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56785275f37d3c734f9916fc9d634947b1683764e6566f24ae4474c5ce5d4a2e
MD5 a2a0304878213efd4ddf7507926a22ee
BLAKE2b-256 324cf3b3f6c4164e1157550a0be956a02ab90c2a3c918dbcaf511c7a3ff539ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 daaa343ba8ce01b5ef306daa202c73e7f72f8423b247fe85055e287287c5f276
MD5 6da639eb3974da26d97e9a10421053c6
BLAKE2b-256 aa8256117af2f1930b00e1220f1fde010d143ef0e8d94efcf841ffd1ae3741f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb156f4508cb797141d5aedc90ce4050b8b13e3ea04c5b93d2719f0e9dde7d6d
MD5 c2a536cf00e3b2ca097ed1a98e32a86a
BLAKE2b-256 83d020623ff6dc8fa9210a3686cd5e00aeeaaadd8ad3a91603f852c2dce03803

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 093b15f50b8353acd1cc5c46bfa94a8371ab5524afb89939989e0e982b2aa23c
MD5 d4ecbeab5b2b053c577836826c79f8a1
BLAKE2b-256 fd247d8d32a3a96adf55f289d9c41374e2e8c0c07737bb354bbb586361cba0c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6cfb60cc14e8c324a0858aa2e5bb69148c54cc716499048a5580367c4bfbaffb
MD5 6f1f216b929da4f8155800af0a79f686
BLAKE2b-256 db90ca3897d56852fadf9316f3f1b068376484b8acd4f179d5fc4282c7ef2869

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 968241612ec5b470b144b5cc5299e59186464e190d2024fde400c8b1c52e870d
MD5 48d397f3aeb6e536a57a0d59a9729d5e
BLAKE2b-256 d88801ca1750c3d782cc8320ff5d4ee44073a2b3c52e2c33484449d853090496

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2e4055635a4632105c7efc2c621294c3d6b0af4b5fe9f2c48bdf5a267f713979
MD5 434c5a4449ddeb07e97f921ca533ad31
BLAKE2b-256 8ac8051fc62dd229e5f474e3e52c07768ce89fa62c11c91b1fce390e7480d4de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf696a079cc198653511d659e51db99ff2484270a0b1454fdc5b3e01032efcb7
MD5 eb1a6a569b94f1b7f63103784d2e1a0d
BLAKE2b-256 e1fa6787ea8af2c460a47fba9f606b267682db6b318183d3f21d993ec27f9f8e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4a13322af99da0d482f33358b0496427e526ddc510f49be1b12d5cc5bb785c9b
MD5 945dd784e0762d5efcbf24d679fdd99d
BLAKE2b-256 e07fd2198166dc2c339f5b68fa0ef83b34297b333c68359b7b72fda175c3c06c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 520e1b43592d1e1756c3fc43243eb5ae132f69f98b908f2f840efde36a323ffc
MD5 5c1c2e2f019fc32092deeba5e9cf348a
BLAKE2b-256 5744814d48d59ae20d0caa1ff72a70d884ebc88007ab908c047a6cf6ab65574d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 99505360e16ec81aa905cb3a40cf3a850463035a2e86e452f1e133c736e1d717
MD5 54d0fdd6f7a9222f8b16e3747f156db7
BLAKE2b-256 83c74cd8e529ba64d51eecd87b5459f5a51a6ed51db08e6f9c689014f095d525

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 190809eaf96c044fbad3f5d8cb05f1d8c778a146390760047549e8b8002e9581
MD5 5a7a07e999fa46a5b82f0ea54c79aab4
BLAKE2b-256 b2d8a97836b3910c57c075ff2b4b709a676306c2e98637e30b629448f3cf6708

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4e3dd3cd03cf8998ca90de6d1769ac8e49157ecaff6d1853a0726627415eba02
MD5 824323baba4b39b310c46bfebb9e7932
BLAKE2b-256 dbf43ec7e671cc169c354455d7a0fe5aa7c1e80ef837eab3f827e209278c47f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a8e5199d41c83e5f9bfb835ab6582d6243d7e8c445ad4dab21497c47973afef
MD5 8c88e654ed1850a9ae4d1c1d8d6c68c1
BLAKE2b-256 e43a9dec1dc9ac11e7737fec3e9878fad3b2212602172066e688f01a1c036085

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0045c9d56135e65104e018cc6bb1807f33e83b16e31d3cb14eb44bc587b0f1e8
MD5 059c001378f9cb5cf90094e65cfd7a14
BLAKE2b-256 a3fe0f4d48154d4615dd1bc51847f3079b64ddb668ce4ee162c9a4dcc3d37a69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 740f30dc89a41f147646905c41ee4450e4edac09d4b2bd0fa5384f8baf7689cb
MD5 f5bde147270fc48033963ca753ad8e75
BLAKE2b-256 9baa7db33434c17d033254718be103ca44a0f4cce009a622d3d413eb4034cf94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 51fb99ae6f1d7d33d412e792fbf5cde1f6367231c5a0118bf641f9d83cd3a31f
MD5 609fb1ab1ddb66bce7a60f680a5f3bca
BLAKE2b-256 2ab864e6ebd7d739023904e32867c71439f78f269ade466ae20c666f5b479576

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52d9239b1e5af1c6742f938efea2af9dd326c81cc714019693a72ebb8f7f93fa
MD5 b516e39fe22314927020529461917265
BLAKE2b-256 302f60afebf1b2aa08d0699eebfe0ad61a146d6b2b6fbecac57c032431e17204

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dfa5c4649a7fb953659b78f41e97267e5eb04feca4e473d023ef9b122b4493c
MD5 b8c93deb6524a6d5c780b77d12f6294c
BLAKE2b-256 6114264b1ab64029c81d85b2b74889fb499c134c11e08df17a02006caa58f497

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6f8bb215a8a02cecc290ff8c8b5a29621e9fc04753ba74c43f56d0bb6bbb593
MD5 6bb28fbdd60e06cb4f7136a6cd2a0285
BLAKE2b-256 acf7851209cbb7fb6a1f9652548a3e6b682afcd6b0155ffa8be66cc1717ccb8b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 44bc012a28d149b8158680257b20c91ee63676f470c4993d2ec4410b32c46f5c
MD5 7a9b4cde42b65b8f10dfcf81b0d2f5c9
BLAKE2b-256 b3013a6353a6e854b9ef7bd8519d93cbe86b2ec4907cd21323149cf6ac65b64d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5eaf7d0c29dfa85849d44ed170c15683de125725f801f4c218def0fcf994a8c0
MD5 caca8173a256b63ea7f53e6a24c99358
BLAKE2b-256 4c62560a583c9456b67248b1ffa9d87a42db89fd17ddb4dd9449e2d022185e7e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dd59af968ce51d4966224633be2556fcb745d3e89e40e2e7ebb2cad6ff4996d8
MD5 a9b9698fb43e0d235c8ec9a50f158f5e
BLAKE2b-256 238635efef724b08a5190de0bde6b08ba91cf846c10264c79bc557664460b7ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4e5db2804ab7e2daf5939a4eb02025bddc0b2dc8027f1dd98af81f8e9fc5c0bb
MD5 4b3725523b5fe490c7a31b523050df00
BLAKE2b-256 f410cb21b011ce3158d98396fc57c1fddd5930bc7124583e21380572c92b96bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 127d53e9ae261f8f5978adf05bc1ae80c7b6918fda12997ac1d09cd38f65f30c
MD5 58e6bc40f6b5180bbc2dcbec1b02ed28
BLAKE2b-256 1103ea3a21a91612cf28751409685c4ff04b7ccb9c5345a03ce77bd463cd2993

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f5bec843e64127cc4e577fb33974f36e20ef1b6c70b61655a8b2034c2f38fdb2
MD5 a6a7ceee111f5f7146708cfa346419d0
BLAKE2b-256 b5e95976daafd3c5834e1c233c9872dab9468aadc9a9a4791147b6f4ddffad82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 dce18c666450135328dd7d48e6f6b129b39b82994786115f761d4d43071db9e5
MD5 b5cf3277075c9e5eeb3daf6e2794c3ec
BLAKE2b-256 38fdf10305f06eb3d57465385e3799761b9c324abe10da115c1cc912d23d70c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bcc4e80a5a29fb5a41c272bd25b06613f51ab985e6e843a4239df65f771dbaa2
MD5 0128fe2272cff4fdd8e19d2bbd680bf6
BLAKE2b-256 00726ca027c04a895333d2b28c261083c20acffab4b94face943922cc097fc37

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4a29a670fcbd577940e997b7d558ece4353b84154ca398f261ba5571a2f1569a
MD5 93ce5d2a60fc9b3482ba69f777cd1e08
BLAKE2b-256 eb861d8a965b4d0911aa8a25110a41c52ff01ba4aecba218695b542d3226c8d5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8988bcef039b2ae437607395b99ffb61da63bea6ef3b47926683dfc09bec651
MD5 aa99eb37fa86bbb117d57e0adefa8f4e
BLAKE2b-256 4e0335fd898872a75a6ab4c1449409941b373428558bec8e730ce1f94a9d0929

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a084b4f317db35ab5fe5b05ff792c83dcb223429a84bc64ab105a4c0ae321b4b
MD5 d526b7670524ce769f3b60ccd7a0f316
BLAKE2b-256 612ddd8d7b5f6cbc1d5382cc3a2b0db5731bfa3250e1906d1bc65dadbb68a991

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f64d36a3cab282dbdb896431a3a0f0a2ef0d145dd5b155cfe49af1582abe3fb7
MD5 20997c1e0834d1405adeac0d82352692
BLAKE2b-256 1c0eafcb9f95a915dd18624d4c963a10169afe061230cd7db5fd574b0967dbb9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5694ad3e4cac9a458646b40a60fdf2947eb58ff2fd66bef29b83c2016dac6f5
MD5 79a20e7e50ac9c31a30bc26fc8a33a89
BLAKE2b-256 87d8b06d9fc00e514b8639e7d35b63826a9b8aa29b57630fbf75329b038c068e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 388b0bd1345d7adda05f8b3604f1dd9465722cf7ca204cecea1764ee32cc91e1
MD5 e7654f2cbe415134d614bbff910d3b08
BLAKE2b-256 f522f198896a181c29fee810b4cbfe73220354b76b7a9f33bf4f68980b2c435e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d4aa6771f0810e86ab77ddec1075616086b08e6c16a564b3b57308038b3d4b4
MD5 9e691ad0bb20544ca7f310f752fdf922
BLAKE2b-256 38b2984510a96e011b5c28cc6c9c76c82f6c1638339aa7c965409e635d4a0204

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f97ed991b706edd0020384720cec6efd3f160be5d753a64d20c8be67369b808e
MD5 201efa4697d01181b7da9d0353e4276f
BLAKE2b-256 b8579b6e9a1df9146f7f0b8b46c0c2ea91835962ebc26d6fd1242bf91a52f040

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7635213a9f08c34c513697a9e24092172561731323184c6bc9c65280443aeda5
MD5 30a2f286225634e3571e07b3c0dc36e1
BLAKE2b-256 d6b9e86e3bfe191349a6e7288f70192bacd59fc83ad0773edb76f31fbb942c99

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 bc6621d9e61f25dbf3818dfc40489780aadd4cb27c8272b4334fc5f4e949a7d0
MD5 186b4b60400d1d0e93fc4c3ce9e2a666
BLAKE2b-256 1db54d192cabf9097c5c2de945a3616cbf62121e86b9b7858f4fd22f49d59d5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73d191760526b513bd0e40148b8258909136810a8eca5a0f3e42690c0cfc3547
MD5 32e5fdfe4e42ef2cea35ef226cdf5cdb
BLAKE2b-256 36b78f86c208177507175e40e584b709c82650dddbe805bad786bf847ef2a88b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 db27249f9b74dc34c8ed07f47941b0f5c24b774f7eeda27be77e42f70a8ba056
MD5 454a5a655845e94104f557a0457a0f0c
BLAKE2b-256 febb95cae595679cef73434c92b013dc688ff3cb16882d9160a80d46b3688573

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a8bfec9579b651cafc1a7741f0745b7d9dae0d37c3ae68bfca3632b4c6c942fb
MD5 cacd57b7e27199d9b88ba92faf9fb0b4
BLAKE2b-256 8436095c2f9ff4476b62c0a9cf18f129a5405d9305c2bc6295163f982030fb5c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ab5b3d1d58991f7de7da238b8945275bffbcd33fa6ececb63001ea216145249
MD5 c8ac9df584621a8390ecb19f29c3b6e1
BLAKE2b-256 3984ed63222fc32a01c32353952c5ec99fc1c2a2ed9b2104b9f8562e94fd5c09

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fe7bb50efe20f8ccefeb236e4636ce8ec7cff18865b03f1f23f8758dad1f1b23
MD5 d5d24afdcd577fcee86fcebcf846c2c3
BLAKE2b-256 42a4a67bea950d55d63618d2de3a64927f7a33c520ce33e0922cd69670366acf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9342b1079a75abb4e31d2564cb3e92dbae0bd426f5396f51a792d219814c494a
MD5 4ab59903f6fb46249895f4e004ec3417
BLAKE2b-256 dc18a9bb1c3f76d9a1348d007dab5accf3e4e85a30271120693f7fa63bae4394

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0dafa030187118fb4ad0710f1ab4a7e961585181aa49d7f815a91e8bab13338
MD5 1c9f763861a3ad30cf7d6901c902cbaa
BLAKE2b-256 4face3180711a13ba2f0eabb5ac12f4b4cd33f85abe30280b956a952a28ad0b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 861bc3dab20df7564b1911808de5bfa27045e12fd10f316d33f6d0b2ad9732cf
MD5 49e4bb2ff41cbd93698f9ebc3afb0d55
BLAKE2b-256 8909ebba237a6b3e1f4133b54c324d89100ed2fb1e1b6726c2d3697b48b3af6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a18db58cd1087a792be5b7c9e6af3430e49b7311651b16b063e5452351e1e2c6
MD5 9c71255a097f8ad1d84b8bf38151a06f
BLAKE2b-256 05ab7b165601e4a57e02383abcdfb4e94a3a1c876cf2031d529fea0646079205

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20b2baa3209777974af28f4874cad99e3d2b616a28bc3a052aed6ab538514a15
MD5 baf917039946bff266fbff22520aebd7
BLAKE2b-256 0f0f74de019478021d56e1c1819e6d1e05f8f89789ebe78b3094df125ff91bc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4318c4d12f5fed75392403ffab1c4dbb565534eae9e41f074a61a9f16a5cddf5
MD5 d8158368d37640a6ea0bb60cce68fb10
BLAKE2b-256 0f46f5fd6ac85feebb48d3b39ab6f03c86b8ee1d133ba3b7052d1a78c2a61e44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 46de98ae38db3a2504638a61b9435d7f7f264b85ca5cf2aa2486baee4dd23459
MD5 7f1acfdd2d41642b93dc59f125340f41
BLAKE2b-256 a1d299ba5138596695153d6e09fea9e7c36b9ce08a4274f41253dba9d3f5c222

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