Skip to main content

Fast libspng-based PNG decoder. Fork of pyspng.

Project description

PyPI version

Note: This is a fork of pyspng which can be found here: https://github.com/nurpax/pyspng/. See below for a list of differences.

Pyspng is a small library to for efficiently loading PNG files to numpy arrays. Pyspng does not offer any image manipulation functionality.

Pyspng was originally written to speed up loading uncompressed (PNG compression level 0), making the PNG file format more suitable to be used in machine learning datasets. Pyspng uses the native libspng library for fast PNG decoding. Synthetic benchmarks indicate pyspng to be roughly 2-3x faster in loading uncompressed PNGs than the Python Pillow library.

Scripting Example

import numpy as np
import pyspng
from pyspng import ProgressiveMode

# DECODING
with open('test.png', 'rb') as fin:
    nparr = pyspng.load(fin.read())

# ENCODING
binary = pyspng.encode(
    nparr,
    # Options: NONE (0), PROGRESSIVE (1), INTERLACED (2)
    progressive=ProgressiveMode.PROGRESSIVE, 
    compress_level=6
)
with open('test.png', 'wb') as fout:
    fout.write(binary)

CLI Example

There is a CLI included with this distribution.

# turn a numpy file into a highly compressed progressive PNG
pyspng example.npy --level 9 --progressive # -> example.png

# create a highly compressed progressive interlaced PNG
pyspng example.npy --level 9 --interlaced # -> example.png

# convert a PNG into a numpy file example.npy
pyspng -d example.png 

# read header
pyspng --header example.png

Installation

pip install pyspng-seunglab

Binary wheels are built for Linux, MacOS, and Windows. This library is intended to be a drop-in replacement for pyspng, so simultaneous installations are not possible. If this is inconvinient, we can adjust this.

Differences from pyspng

  1. Compiles on MacOS
  2. Upgrades spng to 0.7.2
  3. Fixes a bug for decoding grayscale with alpha
  4. Adds an encoder function (new in libspng)
  5. Replaces zlib with miniz-2.2.0 for simplicity.
  6. Adds CLI for compressing/decompressing npy files.
  7. Adds function for examining PNG headers.

License

pyspng and pyspng-seunglab are provided under a BSD-style license that can be found in the LICENSE file. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyspng-seunglab-1.1.2.tar.gz (128.1 kB view details)

Uploaded Source

Built Distributions

pyspng_seunglab-1.1.2-cp312-cp312-win_amd64.whl (133.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyspng_seunglab-1.1.2-cp312-cp312-win32.whl (117.5 kB view details)

Uploaded CPython 3.12 Windows x86

pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyspng_seunglab-1.1.2-cp312-cp312-macosx_11_0_arm64.whl (179.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyspng_seunglab-1.1.2-cp311-cp311-win_amd64.whl (133.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyspng_seunglab-1.1.2-cp311-cp311-win32.whl (117.3 kB view details)

Uploaded CPython 3.11 Windows x86

pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyspng_seunglab-1.1.2-cp311-cp311-macosx_11_0_arm64.whl (180.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyspng_seunglab-1.1.2-cp310-cp310-win_amd64.whl (132.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyspng_seunglab-1.1.2-cp310-cp310-win32.whl (116.5 kB view details)

Uploaded CPython 3.10 Windows x86

pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyspng_seunglab-1.1.2-cp310-cp310-macosx_11_0_arm64.whl (179.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyspng_seunglab-1.1.2-cp39-cp39-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyspng_seunglab-1.1.2-cp39-cp39-win32.whl (116.6 kB view details)

Uploaded CPython 3.9 Windows x86

pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyspng_seunglab-1.1.2-cp39-cp39-macosx_11_0_arm64.whl (179.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyspng_seunglab-1.1.2-cp38-cp38-win_amd64.whl (132.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyspng_seunglab-1.1.2-cp38-cp38-win32.whl (116.5 kB view details)

Uploaded CPython 3.8 Windows x86

pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyspng_seunglab-1.1.2-cp38-cp38-macosx_11_0_arm64.whl (179.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyspng_seunglab-1.1.2-cp37-cp37m-win_amd64.whl (132.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

pyspng_seunglab-1.1.2-cp37-cp37m-win32.whl (118.1 kB view details)

Uploaded CPython 3.7m Windows x86

pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyspng_seunglab-1.1.2-cp36-cp36m-win_amd64.whl (132.9 kB view details)

Uploaded CPython 3.6m Windows x86-64

pyspng_seunglab-1.1.2-cp36-cp36m-win32.whl (118.0 kB view details)

Uploaded CPython 3.6m Windows x86

pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

File details

Details for the file pyspng-seunglab-1.1.2.tar.gz.

File metadata

  • Download URL: pyspng-seunglab-1.1.2.tar.gz
  • Upload date:
  • Size: 128.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng-seunglab-1.1.2.tar.gz
Algorithm Hash digest
SHA256 286e80aec8a75d3717a51acf86e31e22e87bea00b461d810f3a278cebc698358
MD5 e5c7897fa90db828e2ebb60eb06781c4
BLAKE2b-256 35573c324f5abe87a6e205d9d2a620ef15ca058fe57867a98d6ef1870871b969

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 133.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 07e07f39dcf41c58dbe1be7769c21e18f66644426a64f00affee0716b5fa297d
MD5 13af7e2541770a99ca87b654ae42ec48
BLAKE2b-256 d8f0bfc80e58802ae6766ae639e9b28070f4b1659ed3c257c8250fff0b9779ff

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 117.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 869d58a00f2f6cb158db1b90aafa3c235fc106692f9992d9db5c208f2c27c402
MD5 b79727b156f0b275a15bd21c1dc92e19
BLAKE2b-256 a96104191dba0685eb3f540d8ce41e10d1587d95fa0f6770f07f1be3bb7cae57

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efe8dfa903d1207be5b85206460f4f04423d5698b05caaeea4ffbd97bf5195ca
MD5 2d44628a142ad536ff1b5c0d75dfb83c
BLAKE2b-256 39f518ace71b65c49a430186721c303c0dd29631d15533d39349585f704ce1d8

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 da32bad157d3b33271fb5ccb520aeb9917f50aca6203e0f2d030b7d7c653ba37
MD5 5a086f0bd4c7d2aa7f727fb7271d152a
BLAKE2b-256 886e1e70d4566ed80a7bc807d6be842923a1b6e3d630eda77b134b662bf6828a

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e68f05888bcff1bfc5f3f095b9d0992b8bea5a78904e797c8a0ab95e89a454e
MD5 d5217d92cd6e39927ab921ae3564ecd3
BLAKE2b-256 a891d55dcce568d458e5a51bb6e9fb7328507a7d72d988c6003cba9528097113

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 179.7 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3d954902ebfb4eee75f9555633218748ce33d581e32066b6f7712ca8d9ad1ca
MD5 048115ea1d429f441109db0b707dc18e
BLAKE2b-256 cb274ba7ff5e5bceb46823d89ee333d1fd9db6ff8a2075e11d31f8871ce4102a

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 133.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c270c7bd3f2bff5abbb785985d7d2594ad6ad34e0551008df12cb9544e83efd2
MD5 129b63382343eed237abf1cb84bc8c46
BLAKE2b-256 9b7b7888ed03996298e5b1769736161c0f3368a18e963efbbea19dc6aba7f435

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 117.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f9399af7fa8e63fe03604e07851adc7b4cddccba575761a259e15be7bd3f2773
MD5 8e7353671319ac8ddcdb1a1ee963dcb0
BLAKE2b-256 e06441e780283a5b2609705921e8ef735084d44170f0d5137a2e13e52678c970

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b09178e98bebf1b0cd480d5fbc8a1a74b7b98938c863b7f03a645fb64a5c756
MD5 b51fd13c9811ebf0b1ece2d85449d8f5
BLAKE2b-256 7118b1a3a59c34d601d9338a5ba68e685d0648ffa0c1bb9a83d2c3956b6ff5ac

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70499c9e464f38a7f9441d0079f1defa05c0f9f5887a4acb767da9deb2dc0f2a
MD5 7cf7042cc5a0a5ab5e6b1cf644483bf8
BLAKE2b-256 99a33c26be1e7c1715464f40da575b8f43e4f425a0a3ab296eeda5729781d381

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e8f884bd2cd744b2d285bcbc95c77546712b98fa3bf10a347acbeffd657864c
MD5 6abf7f19669fbd56074c43398ebd4469
BLAKE2b-256 4aef53cd990a5cb5048846b77e4c1597e7cbf8082081c98b2419df8630ec0a8b

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 180.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a298e383c282ada45c36fc72cbae234fa678d3fff5d892442b2c89ff49d67f7a
MD5 c53f071cba6ef243a9044eb5276c313f
BLAKE2b-256 c4757d5bbf87cfd375402d674825cfd62332407bea2285441092c78c4a8dd3c8

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 132.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 659b3d41748294b68b1e9de5acaef5618d70a0acbf0723b9c7b8b8abb74c8d8c
MD5 72c295e925a8ba35095e0b64688561ee
BLAKE2b-256 63c99d1b60a4bcc4c62f6d2c401d3c9d806a21487f9e78430f0c2c4f83838aab

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 116.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab998a271c9c2885d05de9ef220088d445c70dd0c323975614bcb7297847d73d
MD5 4bc65c3c9ed8d15a2cdd69884bbfdf16
BLAKE2b-256 312e2e823bcd4a72b705d2180c2b5383e4e81d4e6aa69c6f88a86b885ed0f931

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d95a7835e8c3020e07516893ce9798ccdd48481e42d0c6013994ca4cd041c4c7
MD5 c6b4284df2f321ce260d68ee13dc1958
BLAKE2b-256 9069a32ef1d7062b027993712dd2a36ed7097ab320940554ff3acbcc65fed7da

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3b3b51361ef2a47e10efb5290f3c88fec5d126bdd969731df4170cad6ccbde55
MD5 d89354ad41303d18aa22c2a1a2aae3c1
BLAKE2b-256 dbb71985a058243d4fa6f23aebdfa52f02279f8ae8fd8f2500af12ec1f44c5ed

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 745baa7476f700e689b933bb8244eaab7ce99d78c074af2cb3e113704db0bc49
MD5 5afa52c8bb9a1215bd3658e4908a6cc4
BLAKE2b-256 fe3244bc291233cf315d90bb8989e990d2eaa4d3459fb0adfde64625c5d23c1f

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 179.5 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 754f467b1b05114f54533a375e6621df98cbe4921bbeb30dd85fe9b93bbce31c
MD5 88fc19f91502bfdd99ed35581aba1ae3
BLAKE2b-256 8df2dd963fef58cd8893c0837a9184dc22837395c42f88ae03c546e559cfdd58

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 130.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 567bba779858f20107bff2f0611e02f685bda7bffa3e5debcecf96b179b50c43
MD5 e642eb09f8a9ba56e292fe4580023ca7
BLAKE2b-256 8ea7e53cf2bd4c16d1dc8d100ddc660b8a57bbbe8147fa2ce48cd3e495899c92

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 116.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 df03d38e1d48c9cecfff89d273d8386fff688ad8e83f4d9c62da8eb94795ecdd
MD5 0fd8393689171fd5f0d76d4d028e6cbf
BLAKE2b-256 d85389368605af0b03b5982afb6fe1b359e482162aa6628b1aa0c5e25cbfda85

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2ad18df6091b90661a554ca2591a4972ca1bc28b68b1b82b02a91ef55d26280
MD5 5703f04972c867f139b4fb8b94e7e699
BLAKE2b-256 77c7cba3ed226b9d49d9e00aeb23b53bf0eb85db86c2130a014192dc94f72469

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 627f7c5cf7c0e06bd36c82ce843e2ad7648ebeec11e384d136a4b2491f514825
MD5 f81184925de1642cdb7af2bab0884715
BLAKE2b-256 792151eeda265e029c4910ea7205697a189a73d4b04f4758b1d1f4888f49f0ec

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8e02b0c0b7b020d0b67d7e90bebc5f4d12f1f351e2af046b02cbb70617b9ac6
MD5 2cbcb0f9a15838232be1da1f1ffda03c
BLAKE2b-256 d2fc45892da42bf9644034e95ba02b397a21bef48f7ac6ad7b98a34baed8264a

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 179.6 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79f50be213f23dd41cd15831abdfad89b15136f55db64301d27ce544b7dd5b9c
MD5 e20657738ad29c73a22bc2ec2eb5de59
BLAKE2b-256 7ab6ca926bbe1ea16aa80873c1c037cbcc980ef57987599c60aa21c95dc9d2a0

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 132.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 015e1991ae0651cea3fdae6aad7593baf0cad7f1eebca62ab8eecb7d17391d7c
MD5 1a3ff3c16351e6e73985674fde1c09ee
BLAKE2b-256 7c59c5c0b0a2212ceb9abb80d5cd767c54df494d2960e5ea05c0c7e3c743ef4a

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 116.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2d04aa2d9a1ac54ce4a94639db113639d65d219f04f6d5d804f9ec2186294dc1
MD5 9150e69c794c8d53c038e0cf0f2f2fdf
BLAKE2b-256 7f9d463e030ff72ae827ace3ef564fcca2847b37f9de0b926661d47afe7bb4f8

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fc61429a4e7c3f6725845ae2bf79668f7a6bfc291e2d4299dc7ea0872fcb8a9
MD5 68752411411aad4171793fd7ed0763af
BLAKE2b-256 6873217068e9b3f1870d1390703f6384d6629e33ae90dec757b1d0abc8635a29

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 270bd4e9bf6fa97af7b091f1094e8099dd3753dead2c963dfb40e94f451e6dce
MD5 ffd7ab3fcfb3cffa865feeb9e4716882
BLAKE2b-256 92daf448fa0f5d420bf68456b6ea04a087315a040b4d9698ba81c27f029b80ce

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72edb5787bbd1a2de96b9c844eb0b0667f4cafce3e02e6288dcec98a75168953
MD5 2796c19bc5c066086f7aa5485559f5fa
BLAKE2b-256 aa66a27f84f1d576756e217032cca9fcd0caefe44235ddc8bd09b5a731e608ab

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 179.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e4020110fda30fce96710ab9ff42d0684b93bfb7b7873b87721fbb6dd30d8b6
MD5 834607095111d291cac6b03a5fbec5d1
BLAKE2b-256 f3f1e735f08f83b0d57eaf86474b57aa910e412502669cccd853368296d42c2d

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 132.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 bff84a4b8776870ce4a48e6a6daef745190dc9295b9d41fad0495a55fb69e3fd
MD5 00663e247a7594fb7accaebfe070392d
BLAKE2b-256 997130d191ad0aa3a5d9d369a780f3074a60d0d22acb335dc8a88b01e0832f7a

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 118.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2d5082830063ed1bda2c40591ce5fe5a471894e1c8b4564397a3de49b0a75f3d
MD5 63a21e1da1ace8b93f56878f49727ef4
BLAKE2b-256 b8cc60d3e1708636d9e4edd92c2145e5fa157db0059a117e300fe264393a7d1d

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7eed55bc1a9cca29b5e0196c110c8e1433585447e68e0de3917197f135107c34
MD5 5b5b9c04be2be0feaf110c365c11859c
BLAKE2b-256 ec330e2ef1ebe46cbf61c23b0e93a1e290a7c39c664e0f96b648ab0275377c5e

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c36ced89b553e7a353571c393ea8c71d62d1b0781b7b3a83221bc437a0dfb6f5
MD5 fece09aaefdb92d175c0d6f990bd6636
BLAKE2b-256 6d71c52e7e31573decbd4db23e447dfab31423cd987306f70de2c521c6550309

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5b11dd0ef3c6ed1b69adfd42e4feceffe084920f936fbc085fa2704fe33ed4c
MD5 391da18182efcc8c1130307c88fef42c
BLAKE2b-256 53201f790e8e8ff8a94a81efcead953e59ec9619a93b38e098e567a469a21aee

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 132.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3c7ebd7b04ad49cfdc4cc365eb171b7e8a7851a3630607cfce0a69fec76e11d3
MD5 66d9d1c88eed4e94cc7b8860e1fc0896
BLAKE2b-256 974e6c94c66cd114621f833f4edcdf5d2daddeaf1240a84698a71072f617c469

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 118.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 52fb70f0d84cb8ef0c3258fda3b884929c08cb81a67de5157e0d11ec82ef5769
MD5 d8101a556179faa1635873d915afbb72
BLAKE2b-256 aa5996fc9b14231f49493b34d3a8808df6bfeee64ad6bc4ca92365376e8d21b1

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4770d3c2c8aaf3311f53f6ede551c0e8ae42f6b1294097ca0b9fedb509f98518
MD5 3d9f2201d4bb7020f863159965d687c5
BLAKE2b-256 8453f98bf5f8d459262d29dec1c60362b9308e69301404e29c4136a887d6cfdb

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10cb827ed501db02e52d68dcbf3e77d33befbbb2a543562467c4767cca865241
MD5 0fc461a5e497b32cb0625b34638045f0
BLAKE2b-256 85bd561e0d29673c3dd87d5bb1bddf04df3a694df2adeb5939977948e377921b

See more details on using hashes here.

File details

Details for the file pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for pyspng_seunglab-1.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 891b2fbee2e1b7568b6ae216f047655edaed4994fddf5d0d42e55fb2d76fe61b
MD5 3c251b567569aeed8d6a2b813cbbb223
BLAKE2b-256 28c8764954ef56824a7c830e1d0f3bad5e0c7fe5ca64670f34497581dac09022

See more details on using hashes here.

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