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')

# From Pillow
apngasm.reset()
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')

# Disassemble and get pillow image of one frame
apngasm.reset()
frames = apngasm.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.3.tar.gz (654.5 kB view details)

Uploaded Source

Built Distributions

apngasm_python-1.0.3-pp310-pypy310_pp73-win_amd64.whl (521.3 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.3-pp310-pypy310_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.3-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.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (433.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (411.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.3-pp39-pypy39_pp73-win_amd64.whl (521.2 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.3-pp39-pypy39_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.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.3-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.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (411.7 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

apngasm_python-1.0.3-pp38-pypy38_pp73-win_amd64.whl (521.4 kB view details)

Uploaded PyPy Windows x86-64

apngasm_python-1.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (473.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

apngasm_python-1.0.3-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.3-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.3-cp312-cp312-win_arm64.whl (469.9 kB view details)

Uploaded CPython 3.12 Windows ARM64

apngasm_python-1.0.3-cp312-cp312-win_amd64.whl (521.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

apngasm_python-1.0.3-cp312-cp312-win32.whl (456.9 kB view details)

Uploaded CPython 3.12 Windows x86

apngasm_python-1.0.3-cp312-cp312-musllinux_1_1_x86_64.whl (581.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.3-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.3-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.3-cp312-cp312-musllinux_1_1_i686.whl (591.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

apngasm_python-1.0.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (450.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (421.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.3-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.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (472.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

apngasm_python-1.0.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (367.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

apngasm_python-1.0.3-cp312-cp312-macosx_10_15_x86_64.whl (410.5 kB view details)

Uploaded CPython 3.12 macOS 10.15+ x86-64

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

Uploaded CPython 3.11 Windows ARM64

apngasm_python-1.0.3-cp311-cp311-win_amd64.whl (523.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

apngasm_python-1.0.3-cp311-cp311-win32.whl (458.7 kB view details)

Uploaded CPython 3.11 Windows x86

apngasm_python-1.0.3-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.3-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.3-cp311-cp311-musllinux_1_1_ppc64le.whl (665.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_i686.whl (594.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_aarch64.whl (571.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.3-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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (369.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

apngasm_python-1.0.3-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.3-cp310-cp310-win_arm64.whl (472.7 kB view details)

Uploaded CPython 3.10 Windows ARM64

apngasm_python-1.0.3-cp310-cp310-win_amd64.whl (524.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

apngasm_python-1.0.3-cp310-cp310-win32.whl (459.3 kB view details)

Uploaded CPython 3.10 Windows x86

apngasm_python-1.0.3-cp310-cp310-musllinux_1_1_x86_64.whl (585.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.3-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.3-cp310-cp310-musllinux_1_1_ppc64le.whl (665.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.3-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.3-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.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (476.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

apngasm_python-1.0.3-cp310-cp310-macosx_11_0_arm64.whl (369.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

apngasm_python-1.0.3-cp310-cp310-macosx_10_15_x86_64.whl (414.1 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

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

Uploaded CPython 3.9 Windows ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

apngasm_python-1.0.3-cp39-cp39-musllinux_1_1_x86_64.whl (585.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.3-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.3-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.3-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.3-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.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (477.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

apngasm_python-1.0.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (369.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

apngasm_python-1.0.3-cp39-cp39-macosx_10_15_x86_64.whl (414.3 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

apngasm_python-1.0.3-cp38-cp38-win_amd64.whl (524.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_x86_64.whl (585.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

apngasm_python-1.0.3-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.3-cp38-cp38-musllinux_1_1_ppc64le.whl (665.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_i686.whl (594.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_aarch64.whl (571.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (454.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (425.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (519.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

apngasm_python-1.0.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (369.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

apngasm_python-1.0.3-cp38-cp38-macosx_10_15_x86_64.whl (414.0 kB view details)

Uploaded CPython 3.8 macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: apngasm_python-1.0.3.tar.gz
  • Upload date:
  • Size: 654.5 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.3.tar.gz
Algorithm Hash digest
SHA256 42406e124591634e446e3bf4c3e60e28f17ef95fe4f533f82a18842a1bf6d7a4
MD5 e77b6e75093c156ef8ccba23ff9d6147
BLAKE2b-256 dc3307a895e5d1150e31c082dc0f806584b96f1ead241e977d804cb64c9230c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 939bc3a07eaff60509515cd259154452922085d4bfd012e71481e579bc244bec
MD5 ada2a7bb77d2f24aa96182fa8ce48038
BLAKE2b-256 ac30b55b8a22fff9f4407db4e2380fce44df9c3504ab9a9c5938fee4a043342f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0fec10974a4d953c19dcb1d75d9f46fcb62793378cca75fbad3454f69bf20aa
MD5 3867112faa4b22aa228868a5c0c2f410
BLAKE2b-256 d950b62698ca1c36e60bc8f3144180f5eb15f5199e38aba8d79043ff9a59a6e5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 349f1a523fc8e0bca6107c91e902e28290b707dd4dbb36a073330ae7cb0b8a5e
MD5 16981505d5826540bade23ef9384c60a
BLAKE2b-256 e87b1bfa8ec319c2f5d8baa2a396cf2e10a7ff7aca77f27a575b4830821e06dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 689b5dead385c93e2ef8b1d27f77922f76a9c70d3233a8b6d61fcf9c3a3c3aba
MD5 0dbd8fb077ce7378d7beeb4379b91db4
BLAKE2b-256 340f0ab4adc8dcc590c37b09c82e13de2bbe4f0ef273f351315a06b0e253a7a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f8498653c5e3404a80bd2fb57ace838ad0bcee69704f1fb8d9a190a0e6fe2ca2
MD5 74554326c1cb8223fc428fadff8e0ec7
BLAKE2b-256 75de48e353b1c9ce95d843d57663f0752e96c1600aa64812381a75883522b7bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 52af221249c06a545d9b986f73af807823a434abfae92d8f1076f6d3bb97eed5
MD5 fa16067981006ded46ac8583d73bb797
BLAKE2b-256 eb3f8892d5004f5559c74c41be9dbd1e4b67b22b13890e0e7670ce03b4dd9ac0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f011798e91fd23d93aceae88f0b5afa7373d404b89af56663c3d72b52a472e67
MD5 4b59281a7bb6de272a0afe35f7df4441
BLAKE2b-256 f551f61d6e1aa76f99fa4449e81fe8daef60f420a85abfc32dcb461f6ec0bcbc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8006955f493ae19b2f38135131dda8caccb8e7d6ac66aa352dd626423aa84385
MD5 e9bc75f7d80600654ca14a1ebefb3e50
BLAKE2b-256 03722eeab898165c2fcfeb1e3e6d7d194b091ce55d21588f53a2d9d5c4f2f251

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d91e17136df4a619de5b5ca152da13e62474a6fffb25417c9a88679bae822fc
MD5 830279a4013cbfbc0642dde65906e9de
BLAKE2b-256 0cfcba87645cf35436a852e7f084952624cf5b4bb2c0f68f1214dfd51305685f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 826ae60cc462cf12319cc4bde85b0fb2ffb8aa21fca74a5cbfe1d9ae2ee23bcc
MD5 e1d2008748f5164f2be24039927cc7ce
BLAKE2b-256 5c5b5c80e8a8555fdba788d87ef926fce8d7f6330636a27e373ccaeb8e7a90f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 68e3faaffa9bbfef1de4e54f1348797b608b0081c0485326df2e9695763e1ddb
MD5 afcd08e148718d8c7dacd5f2e0a13763
BLAKE2b-256 8a121148cec78793d0f5dcd0e49c673a53c990567c175d4de3721f6ec7be83ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e05e007597c0a8a410294a1d0c81a9da0d9b9463b5754c2c63c801b15d385e78
MD5 00f2c49a58779ab38f0a96948ee91f3a
BLAKE2b-256 d66dc3bc0ba49b9eaccf1ceafe77fa78a91d922072af2a8780ff634a2a52cbfc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da07ab8c9c179d463021b3063e0feb8205559d4657d77aed3d66e00f0b676657
MD5 98ca43f931d006b51c87966ab0f896db
BLAKE2b-256 f2f58f44ffdd422c246b05a6ba1695587f358af4a15c1a992b27e507dd9a01a7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c7fec0a386c5cbbb1cfcaf837c34b5187d10b0538b3b53df4e25a4a2d63c61c
MD5 4b960a71b25b16256247cea35efae3e5
BLAKE2b-256 24e4d4c9f1532676a3f2fa60b39163a31962b74827801b25a7ca9ce2d4d2e9a3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-pp38-pypy38_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8b222b695faa5d75690db93f523b7cd2c90c270c195000a70a88a8f9c7bfe4f1
MD5 7736137ef6bfae96e55a56d568caf681
BLAKE2b-256 fe324c5869db9990eca8d8cd204345249d6375beb9de816f03798121b01004ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 369b3dd9f314d1e1ceb6fbe65ae3f11d09e0d3fc86163b8c1ae9669aa2790df6
MD5 296ce82df27cb7c7d305a8d94b592d0a
BLAKE2b-256 b70d9631d1e718906a6536b2e28a672a4c155454af2a0e932f0e4046fef4c1c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ac4d543891b23200a56f8902e5909ceefea6db068178bb1cd8bdb64de97f951
MD5 61ee1196297cf0323b19b2853c08bf4b
BLAKE2b-256 5e883290da59a93ec277dba957cb7b20273539593ce82e016534fb8bcd3c63ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ed9e4a019b172578d4ad78b370a39decc0bb2b950ff6174d0ed9fdd8a9318354
MD5 71c2cc864dc5f09659b24ca9f44ded4f
BLAKE2b-256 76d961c271d77f51301b2d3923fc7bfb2aed21f5b5f1945eec574d2f05fe0a4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62b31d499f8f42dd22d79b08ac336913030a3740f180930f3d6bef7a6a882760
MD5 eaf626b9ae782cf6a23fc7d42aeb393b
BLAKE2b-256 08ab7cf88d70331caf691b36b6e7fbe3ac4043d584ada5d0c269ae0bbdfb86bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f4c55eb7da2858097f1d0c9cf1ff34b68eb868a3d65b56247e44e19a81b8ac0e
MD5 99774517b0b168247c248a1afc4b755d
BLAKE2b-256 79f994191c8afb98ab179e09acb932e2a81a96addc27632ddaba8840e3ed46ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a9bd70c9bc649c74324355eba3e882a60c6d6e3b9db54d16efa8ed925a378372
MD5 8457a1084c868170c3534d021ff745a9
BLAKE2b-256 983097f4f3d5a09dfb7a2a1f3cbaf2911d696d742326638f0e290d87b03caeb2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5e5c261ed70d10d59a11693e452e34d30959b6d60f815faf48a2ce3c2316df85
MD5 fffe10dbc917ae485d3e72dfd6f6be17
BLAKE2b-256 2640c25ad7ea2c3b6de8b3d5ed04154eda9e4495fbc569d2790c76226c636f84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52e570863e8731d7f06bd1e154afe207cedbeb2f7bea6794f5ac20bbbd7b0c91
MD5 efc1f5bc1530e6a8da8127de9f3f55ea
BLAKE2b-256 bf6d3f1a80b7f909a9c8b9afef0f8b07baeaaf4471946e297a9ee7b2025f1ca4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2be12cca4effd08103269c918fb00c3b11344ed9ac47b835ea6622da0d247960
MD5 34293321bf35bad89dcbddef72bbc26f
BLAKE2b-256 0e9e3752931fe358e1bcc399f817c7abd18bedd64d4c573123ad810e4a645394

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 660b02ff1c7af0a7140d76696dcfe4b1f9610785bbe4e9eee47651e34c2a6c79
MD5 07d8f65034f205632b8183bbc393447b
BLAKE2b-256 32d3a70627860be4b341c2c3fb23f40f14776497452a6e199c28e0b8f911ae43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 899f504fc83439cbe7e7a3ce06cbed514ebe98cb00ab768664629265429d4809
MD5 afeccd328a989ef5122aebc73a20f597
BLAKE2b-256 61c794824845ea632e57e05c085c440dcdbeb4483cfa9f20ab08fc7476d21732

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 616d2e4af0909524cfa6ce017b19e9bc02718db65f3c3547a08e5d0cde89e5ed
MD5 c3308baa46dd12831adfce49ed16acc3
BLAKE2b-256 c0c108ec583b68c3366208408a089cd2690132b44491164146f86b1a6f95591c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de16100169b07b72c95c1864a94b3d3952d9139bb9547d233405c3d7c0618898
MD5 e58bf2668e869f803f2b543505aa727b
BLAKE2b-256 87b3d372d61e74f874b50ea81fa54fa1a3d60f9d7e2d6fe1b645d0f3fdef8504

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67c366603c913e8edb06ed8dec70f64add3485f8343b78f0ac24ac291d8601d9
MD5 1ffe47f55a46b427591250b78e3afda2
BLAKE2b-256 e0bb258e8bddf03152ab8fa26053fbe8796aa6d6b2efaca22c3c145ae26b0973

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7d367606ebbd95993d5b10507f94d2c08d7242fea636540c58da168d6b529460
MD5 3d04c64ccd5e17e01c42dee23c7ae7eb
BLAKE2b-256 3b0b7e73fc943eb49c0b9619bfd45b09bca5adb974676339193fe01c8072de5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 59272fa7ed75751d428141e81308ce0e6f80a8a062237400897ecc40409ac4ab
MD5 7fc1a977d3a3fc46ef9de941397b5e2e
BLAKE2b-256 87086882e74805147046a870c9e7df3ce7b4a5b81bda8cbaa3dc13ced249caf2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8c2c7cd87e995baeefd374c25bfbc2fb1876b6b195be70a0424390a2560161f
MD5 60988b3c7e5112b1e4d16de5df1ef451
BLAKE2b-256 f26eeaa064e52f012a7580d373e4bf4ef6b5349f8f9de2f67c531b3d04574dd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e2bcbbcbf80da737f2f33d1f73ba1fb91e4c7fe11664ad6c8bd2e9fe90e287ff
MD5 f3b60e43deb9fcc59218614f50026b53
BLAKE2b-256 192e32e0256b56394771984351271a150049a088591bea6601e1efe2bbb5ebd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd99d29a16118f3c7ed9ffa546bbc30b34dc72d66b7cb0778952a8f6a459d003
MD5 aa5386cb4ea507e8292550737a57d946
BLAKE2b-256 9f31797ac8e1c04e5d911e0b2a615b7225b561828ccd9f95dd7fd9cb1e123457

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 f0d9ca477d17a36ace17058f5c102c2a708ed5d0e2b7af3c8091ac2790dc0372
MD5 58c1e2d02cc17306ab3c72e43fe8ae7f
BLAKE2b-256 c2647fb1cebeba581e9a19ca2c92649ce94d1fa24d2017e9ca1d9a8b4118a51f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 322775930321640abf6d64807d50be354a42121d80752e0042ac51d79bf9ce7e
MD5 4332016493666f642054cb988483e803
BLAKE2b-256 de0a2cc54589b820daa8321070a9134948e0723972beebf5432c3dd0b77ed172

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 417819a830e7e5a85bda877d034ea1ec3d53c179ba4b4adeb1e9e254c56855b6
MD5 879e238e9cd21c20a738d07bf770c0b2
BLAKE2b-256 3384f4b748f592b5c2df49277753078ad2ca84a651ee04f87c133cc27a59699c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a669e8c65353ad633db4a062c03298dd2e5b56bf63c4f0ffa4c283dff99c11fb
MD5 5a47f97d81502242c6fee939f9b68b18
BLAKE2b-256 cada841bb4fc496fc86066df02d93943a449d8816df36eea2d40431db1c5f399

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db3d601b96abc6e1b28bcd5a2b36cee5db7d2d9542cbcfdcd292fb24c8379cc
MD5 54d1e304700a7d1724e3693614012bf1
BLAKE2b-256 0e7dfbea8c2d21e7d78010a8938c07c773202519ef2d9e12c8884e5a1e337b2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e98b4d4dcd2c6e0a5deed90a46805bea8b162d3e7586d0528e6b6428eed874d9
MD5 1633a691b959f75359ac2daf9f292318
BLAKE2b-256 8d6574ed3f2061e921462497ace07cc18a838d53bc5526e9a665114a7d04761d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd82fab30b05e6dd1a815d1d7c5c1289a6d7591248747cbeb63186ee8c8411cf
MD5 b42d40546d1bd476af7ea1011f79ed2f
BLAKE2b-256 e1ec429d7d39cb03d94f717d56bc56ec17495f9a848a6cd73ca9a01deb788b98

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 071fc1e5eb62218a9d156cf65ad417b7defa14a10f656f38a53aa64fa7038c29
MD5 9494e2a15e85b935fd5bfac3d058ba40
BLAKE2b-256 6e07c5171eeaf9fa02648f4a2fcfedc723cf1260a2ae22f3ce87f7ced1681c89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 607423d38f1eee7708cfe232bb4799138248f9ceb70c05141216e31269643892
MD5 b13fb1650e6d6ef8765ca7a9958fe950
BLAKE2b-256 23d4d83eb4271d66f01fe220d44f908b003a5b00a8c709444019f794f7dd69c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90e6d013de5d73c3578e6407c82d9707995a98d70d725c87525d4a13151297cc
MD5 e63d3401a9ac00bbfd073a4f63cb947f
BLAKE2b-256 520d5bd5aa6e4398a6de3dbe1073f6957818bed85373bf9b8130d24e5ee40a78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 56070d297d111fa37e81ad20fcee1297790df2866cbd7a3a354fe7a9cbf4f79a
MD5 ec3ad8b19424b4ba48ba48574fe1154d
BLAKE2b-256 35d5dbb01a406dc981ce93bc02170f681876f40114e955d915098557ab63b98f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4381945bd9720021d058a407c807db33d8a46c46464000fbd32cd773e93281a2
MD5 5169479bb00c778b997923b5a16e16e8
BLAKE2b-256 6bdee1cd3db469cc1123aa2d74911f5d1c47e974d1fb5c2aed3cd5d12c01c1de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 706c12bc0ccd69ce41f01f2000c30c3c5552aa1fc694104966482d0008bb2c8a
MD5 480f6e03aa8944bf36a33f460b8de76b
BLAKE2b-256 443a2dff81a531a0c5331433e2787284fd1c454f6e56ce5895e9c8088db19527

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 747061694b4511c7c1dec1f0e812b16e99eb52439251b9581f9006ceee0bd4d2
MD5 5a9fdd9b7da6ea8238e88e9ba2e4975e
BLAKE2b-256 ac15ba8d6a320800d7fb8919ccf865ec5f385457f7cf4c7d03811b18c8dbcc38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5876f7ad9af6abef7385a66fb7029abe58cf5011d132a2f7ee75cc360fe450d2
MD5 f213f6fdc641ad825b2207f99c9a6b00
BLAKE2b-256 c44f24c19368f7376ed39d8d46e82160c930fb608ca8f0dbadb635b1b8f4acb2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 265cf764b09ef980ec27ade4e38a325d3fba2e86af0662a1baf2a9cd68940b42
MD5 7f7588eed1580683b1c383f5931f5712
BLAKE2b-256 7c86f7c4c8ab5acd76885206361a4d05e2c5a18ecfddf374a9de87d46e3b93d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 a1b6c6e24f999ffa501740a264b4ca52021f017cec26aa407ab9263ae35776b3
MD5 3add8c90820b45ab9df3efc5ba4d581b
BLAKE2b-256 953b7c8b4750ae670aedf1f9d2bfa2e8d7a17d22fec7e536831f3117761d52a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ed4786853d7000337a780cc1bb5cdd1c254641e644ebf3f90d66de7e355460c9
MD5 54b5bb03fb77946c2bca71650d1d12a2
BLAKE2b-256 637a8a44af995e4568a31a481fac3cc423e8ceb3c5aee598554e174fbf3bed93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3a4faf9080a47d7211766030382846ebb120bb6a0fd72185b198f49212ad90a8
MD5 6627bf290bbe65d6858b742e0e78406e
BLAKE2b-256 c68a1e74ffebafd7f9faff13409924c015137d9f056b3b50b474afb0af5488e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c7d1d739876ced40d9dcbc3ec915735044876f98c2cc950aae8dbc51ed27a02
MD5 d89a621725ed66602b0f29178d30d202
BLAKE2b-256 f80aabaab5e4ff86f7ed08be7e73cc53e0f33bf606c5f66377f11ef0400498ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d27b9866303d1e4512e3dc984f2f08c607d4dccb8653bc26b2e2d53217e148b2
MD5 83738cdf235beb321ce99084a1e9e7ef
BLAKE2b-256 6b78e3a011ec6696241d666a04b38086510bfd76776887853745dc43614b00fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fa68673e2afeb54f5b872c0bf5a97951f00f560fc528d18b10de043fe6cc418
MD5 6081b1050c08f3632bfa4c0c183c10c9
BLAKE2b-256 b7af54c852b17a068bb1eb50ed5b76f6ef7c5428603c2cbb7b2a458f92aa37c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9b119c6f28694f976126abf24584fddef119c596672fffd2aa1ca33d29035da2
MD5 f696827bbe5851a25b9d2fdd724ef6db
BLAKE2b-256 a55740c977f6eb88856bed6704c30510f12cfe9c9e02e77c490e4ccd322ceee8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 359f02fa5357e0f4bcd3d81361c08c6fb36da07bf9f6712d7ac600e2da824dc7
MD5 e6c42c2e9e6a1a62f3a85aa1d244cc18
BLAKE2b-256 5251eeec54d7a7d59b4eb22cb2ae2cd3cbfd4a258795a2fea7ab8383f60abdfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ed990fcb3b2720dec70851d9492263f455574f5b15e01e12b71fbe2ea505076
MD5 e06a2f2f859800867321d5c223bc7fe4
BLAKE2b-256 c84a07895761ba46d1acf8c074962c4ce9f89993b7c3adc57cd69d4819a21a4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 51c6a0a3d887257eaa25220f2e6a318489f6249fecfe6774a63f492ef94b0cda
MD5 e7ba26005c1133ed076d93ccad195142
BLAKE2b-256 861f1bfe8fbc357045ca1bd6a5b1d23264738f79ded3e198755343eaa5963f22

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 36b407696589e3363268f5679cd437efa953b22f129934754bcde048840b6c5a
MD5 d0c97a57a68df1f1fa3f979806c9eef5
BLAKE2b-256 08fef701f45f4d3ea38f741b4aa572744dbf0651f2d5c29773e45aaf281311f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e45e9327c9324cb2b941a2eb173987d6f7b8a7c9b2313f58cfe16b94d08ff6cd
MD5 e5b13b6f8a07c4454a63781d82eecfcb
BLAKE2b-256 3b5e0a164402295504220c5d02fc6c5a5c22c7ed850dd55a6ed16da5b43c0285

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 07b1dacabd17909771ed6212e8ee607165e86bf4af5e1e52825aefec24acf62f
MD5 25c119da467b14fae80dec162e7ffb31
BLAKE2b-256 3400ec1d9b368bbb31cf6e8c144c91b05ab1383df1f85e21180c86804e012880

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7182ba2e9221a33affc59a571f10fac745e73fd0c5817dfcc89f9dfd51270566
MD5 df5c6a960ec0ba8fbf04130d1c0ddd64
BLAKE2b-256 01be50938abe38c4935bb5ff78020709fe6f18efb87f9a350afd3a4be468984b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4e728493f52ef6da3be03603dc8ab9bfae261d47226931af985fe5183a24d70a
MD5 a850bbde27d2eca60955fc9db8ac58e8
BLAKE2b-256 df50883a5f5bc8c69da42478363fba4d6e9696b0b0d8055e8461e2d4bff23878

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 47b9c13b526c09e84a48d283fccd077ce8d21fc067e416b7933f11bd05d16d42
MD5 dd399163b28346640b81099ff4b21138
BLAKE2b-256 8ebf677919e506aaa3085fdbd5d209a2b0727d6ebcc6a87fe2300438c8a96e10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c71d7dd29c885c9280e44d09fd3a75b907669ebae0f6baa61796edd7552c8ca4
MD5 8f07c92cdca347529e0d0829466693ac
BLAKE2b-256 def00bcc35d4b59ba6ab67c2d5392a8d12daa2f46c0d39a282ae91be56bdd4ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b382a07505f1e614754c12ff4eeba9268377892dd98fccea1cdd3b22c83026a9
MD5 bc48d3f2e645846481097d0963d7090c
BLAKE2b-256 767374b8a597a58c10811d8187f653fa8bddba58ed5b2d537ca32702d2c55ad2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0eded05e2ad87d69c2569593cdff201b0f63a11e7fd319419af7034c77770787
MD5 6607ee7c0df4b9ab6dee50796b54f813
BLAKE2b-256 0dcf95be62211ef517513dfc1b69b931b63ced94989a6d912645c79e790e60b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85f1feae527d3b553d6bdc5e66ea6c85bf7e030e06c6888a452aa860610d49fa
MD5 e12f2e97a53e13c13510a68a30935ab8
BLAKE2b-256 f97bf0d6c85cc022572a1a8f1c5a76a35f5a295426fd6d4766577bdd215bcc9e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47a1f14feeb5be22fe80ea1ebbcaac29799a67d6520360da813368b1d76b88fa
MD5 e7a85dc767c860ae83f14d67954949ac
BLAKE2b-256 0b24ed49d9d3a379546107d23fd01f00ce5aa299230b1e22e33c5ecfccc5538e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aefdc46a70e92e36a023b0e031128a83e23b4e14fee768b7ef4f80e0d8d6d419
MD5 8eddfcb6d0b15a6c8fa4260491b5ea67
BLAKE2b-256 94b3ffe40b771164882b305d0d03f5d83ab2bbd55298d4cf52103249e2fc66ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5ed0f08683b23e8687c520209518ab22cbbe2124de731e3dbe71b755bce3e34
MD5 11cac66f6e481c95a33890e8182ad64d
BLAKE2b-256 f8e496012e3e179ecda0f998d46ea553701385167f8504349191275384c1a857

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6415921205d335e709d2a423a3b21f3dea601f927716c227833482d8471cd04e
MD5 f5358808c5641186e4915f9d49dbd0d9
BLAKE2b-256 0b2530872e6ffd94e7abfdc29249a3722a8fecbd84d37b690907901f37548f3a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 454a4b17074934cf24330d5c08fb1fe6686f70c91b00391f4f90304688f02b84
MD5 80f926a9b804ddc07b0b031531b859d8
BLAKE2b-256 0762e9caf27c227d95f2a542c70d88f4f970be4846f73b084981a6463b37a01f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 66169f9489859379b8234040969e0d2323c89ecd4de249c7ae92d645bf890f3c
MD5 1eb0c7c8c91523c19730def2d0c213fa
BLAKE2b-256 7e9602f10d042ea643cf5e0712f580876cc40d8b63f1e21e1f067d9ac3b85b89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 394e8f34157de0114f269943b4733e24cc8108e3ab8a89d7d98ea3208ab775c2
MD5 d1fa6d3c6f8c31bb4ca86972f85f3c19
BLAKE2b-256 9415c5b06a8e6f8e2eaa83d8c55798628d6477dd62f2eb7117af269ae69bd605

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb518785ca9586e1b6dcd5f0967202761553206745c8bcfe90715d2ab8e433d3
MD5 b3e371381077d4f5bbc4f04534c0a225
BLAKE2b-256 77abab61a8592868744c23c67a916150de76da5a4e98639e4deb1dba7f6ead4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 dbd4e9bcb2ce1dfde4201f083262d5817cd2c248d43fbe26e2c8beebb288276d
MD5 f364c221540236931ab2058aa736f1d9
BLAKE2b-256 833bf610019d5a3fe6b99f67daba09516e50e7c06073e1f28e1cd696c547a264

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 4e26ed973e867e01f24465ca7725d6d864d0370a362a51398e016d4ca39090f3
MD5 74a323aa9f437e9de65d8b109152938c
BLAKE2b-256 dd98a96a7c0d7ebd17657da912a1ca8d2a2259ddc8f44869ba48fe786c22bdc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 40a7c38a9f51665bab265241b807297b2a8d4c80d2af2772d20cfab1bdff9616
MD5 4d9629ec48d0308b0b8d6888e77a8237
BLAKE2b-256 a33e31420c9dee21aec2d3d68d4aa4caa036ead736a8c409213cfe6ea060ea14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de599fd9fdd4ea3c653f0723f6c5efc4ca72a5ec3fb8ab41f30a08e09a6eeb7a
MD5 e5b04112899945d94d3b55b80a712cbc
BLAKE2b-256 5b23f983696df739709998528728f696c728e50e84ed364ca02675bf2f928138

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e53c15b0fea6c5dd9f6eba98553bb4e4376d34238a99ba5f0f6225f29fb4ef45
MD5 552240378c13eb355b77119269a0a279
BLAKE2b-256 a3bae2ff145c0d2058efaeea52a328195245818cfdf7e8d588a60766d5ad9852

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90d804c5968b0d99fad0faf2061bef650334e326a6464289ee49c4b2c98a7624
MD5 5a3a8efd02cb22a7b66c5c8ad95fdae1
BLAKE2b-256 6a3a1581bc6d857c1658190a8a536b9fc185dfacb49a5661a0f5ea232af29587

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77ba588737d70b383822ddd30965a7a69b672f04bc6d4f578cad78e75cb22a03
MD5 5f5bd3d56176c63baf902a767d06c5e9
BLAKE2b-256 b1ee18e61b63b9bd607084fc9648cb62a4d535a67d2a399b6dc5cc416d24d1e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 41ac8c31850063bbdf292ccde3fa336f014aa3c8c9a8ad9e54c2d0079993e79a
MD5 284b3bcd62937d415dda9e383cd392db
BLAKE2b-256 e140a150c2c7711c80bd84d4da2d227ee51fd5550faa9363d8dbf210aa290546

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd247aaa4423cbd65ce2b201b285980225cb9ee1004992301333ca12a1e583a1
MD5 fc55ec81f6b1e86e3798a9851557885c
BLAKE2b-256 f37cc64c15858c85e3f76ba60e5f69eed5b285946bfeb02956d53fc9665830eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d6d08a3cfecf6beffbb55ee239898e410007a22f47ae88f94308089cc1b08d4
MD5 be8bbc4a2ce9fa6a9df367565c36cdb0
BLAKE2b-256 48ec383185671257d34ba609f786cd2f86c53ea842cb91018a752ed9aa4d93c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for apngasm_python-1.0.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 75f12914f47dd71b976f695cbab343f95c86be257eb0736cd649019f6eaef503
MD5 aa808bf70655dd109a9a62963c6927fc
BLAKE2b-256 c9be8bc30040df28a3dd7a5032f361bdddcdcd571f6a1714fb9e20cd5fafc1da

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