Skip to main content

neologdn

PyPI - VersionPyPI - Python VersionPyPI - LicensePyPI DownloadsGitHub code search countGitHub Repo stars

neologdn is a Japanese text normalizer for mecab-neologd.

The normalization is based on the neologd's rules: https://github.com/neologd/mecab-ipadic-neologd/wiki/Regexp.ja

And also some optional features are added.

Contributions are welcome!

NOTE: Installing this module requires C++11 compiler.

Installation

pip install neologdn

If setuptools is not installed, you must install it:

pip install setuptools

If you encountered the following error:

ERROR: Could not find a version that satisfies the requirement setuptools (from versions: none)

Then execute the following commands to may solve this error:

pip install wheel
pip install --no-build-isolation neologdn

Usage

import neologdn
neologdn.normalize("ハンカクカナ")
# => 'ハンカクカナ'
neologdn.normalize("全角記号!?@#")
# => '全角記号!?@#'
neologdn.normalize("全角記号例外「・」")
# => '全角記号例外「・」'
neologdn.normalize("長音短縮ウェーーーーイ")
# => '長音短縮ウェーイ'
neologdn.normalize("チルダ削除ウェ~∼∾〜〰~イ")
# => 'チルダ削除ウェイ'
neologdn.normalize("いろんなハイフン˗֊‐‑‒–⁃⁻₋−")
# => 'いろんなハイフン-'
neologdn.normalize("   PRML  副 読 本   ")
# => 'PRML副読本'
neologdn.normalize(" Natural Language Processing ")
# => 'Natural Language Processing'
neologdn.normalize("かわいいいいいいいいい", repeat=6)
# => 'かわいいいいいい'
neologdn.normalize("無駄無駄無駄無駄ァ", repeat=1)
# => '無駄ァ'
neologdn.normalize("1995〜2001年", tilde="normalize")
# => '1995~2001年'
neologdn.normalize("1995~2001年", tilde="normalize_zenkaku")
# => '1995〜2001年'
neologdn.normalize("1995〜2001年", tilde="ignore")  # Don't convert tilde
# => '1995〜2001年'
neologdn.normalize("1995〜2001年", tilde="remove")
# => '19952001年'
neologdn.normalize("1995〜2001年")  # Default parameter
# => '19952001年'

Benchmark

# Sample code from
# https://github.com/neologd/mecab-ipadic-neologd/wiki/Regexp.ja#python-written-by-hideaki-t--overlast
import normalize_neologd

%timeit normalize(normalize_neologd.normalize_neologd)
# => 9.55 s ± 29.4 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

import neologdn
%timeit normalize(neologdn.normalize)
# => 6.66 s ± 35.8 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)

neologdn is about x1.43 faster than sample code.

details are described as the below notebook: https://github.com/ikegami-yukino/neologdn/blob/master/benchmark/benchmark.ipynb

License

Apache Software License.

CHANGES

0.5.6 (2025-12-02)

  • Support Python 3.14 and 3.14t (free-treaded)
  • Normalize the left double quotation ” (U+201C) to double quotation " (U+0022)

0.5.4 (2025-03-15)

  • Support Python 3.13
  • Fix tilde loss after latin and whitespace (Many thanks @a-lucky)

0.5.3 (2024-05-03)

  • Support Python 3.12

0.5.2 (2023-08-03)

  • Support Python 3.10 and 3.11 (Many thanks @polm)

0.5.1 (2021-05-02)

  • Improve performance of shorten_repeat function (Many thanks @yskn67)
  • Add tilde option to normalize function

0.4 (2018-12-06)

  • Add shorten_repeat function, which shortening contiguous substring. For example: neologdn.normalize("無駄無駄無駄無駄ァ", repeat=1) -> 無駄ァ

0.3.2 (2018-05-17)

  • Add option for suppression removal of spaces between Japanese characters

0.2.2 (2018-03-10)

  • Fix bug (daku-ten & handaku-ten)
  • Support mac osx 10.13 (Many thanks @r9y9)

0.2.1 (2017-01-23)

  • Fix bug (Check if a previous character of daku-ten character is in maps) (Many thanks @unnonouno)

0.2 (2016-04-12)

  • Add lengthened expression (repeating character) threshold

0.1.2 (2016-03-29)

  • Fix installation bug

0.1.1.1 (2016-03-19)

  • Support Windows
  • Explicitly specify to -std=c++11 in build (Many thanks @id774)

0.1.1 (2015-10-10)

Initial release.

Contribution

Contributions are welcome! See: https://github.com/ikegami-yukino/neologdn/blob/master/.github/CONTRIBUTING.md

Cited by

Book

  • 山本 和英. テキスト処理の要素技術. 近代科学者. P.41. 2021.

Blog

Release files for neologdn 0.5.6

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for neologdn 0.5.6
File Size Uploaded
neologdn-0.5.6.tar.gz 105.2 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for neologdn 0.5.6
File
neologdn-0.5.6-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
neologdn-0.5.6-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
neologdn-0.5.6-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
neologdn-0.5.6-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
neologdn-0.5.6-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl CPython 3.14 CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
neologdn-0.5.6-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
neologdn-0.5.6-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
neologdn-0.5.6-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
neologdn-0.5.6-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
neologdn-0.5.6-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
neologdn-0.5.6-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.24+ ARM64, Linux glibc 2.28+ ARM64 Details
neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
neologdn-0.5.6-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
neologdn-0.5.6-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ IBM System/390x, Linux glibc 2.24+ IBM System/390x Details
neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
neologdn-0.5.6-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
neologdn-0.5.6-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ IBM System/390x, Linux glibc 2.24+ IBM System/390x Details
neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ PowerPC 64-le, Linux glibc 2.28+ PowerPC 64-le Details
neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
neologdn-0.5.6-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
neologdn-0.5.6-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ IBM System/390x Details
neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ PowerPC 64-le Details
neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ IBM System/390x, Linux glibc 2.28+ IBM System/390x Details
neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ PowerPC 64-le, Linux glibc 2.24+ PowerPC 64-le Details
neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ ARM64, Linux glibc 2.24+ ARM64 Details
neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 53.4 MB

Release files / neologdn-0.5.6.tar.gz

Download URL neologdn-0.5.6.tar.gz
Size 105.2 kB
Tags Source
SHA-256 checksum
How to use checksums
8f93ebf1dda431a32264980d4b03060bb6f08d3f16add53b453850461c07e1e6
BLAKE2b-256 checksum
How to use checksums
173362ac03093b700f6669fc44be9db39aa8ec05e8e2e53ac312ad146adaf1ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-win_arm64.whl

Download URL neologdn-0.5.6-cp314-cp314t-win_arm64.whl
Size 45.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
37d82f9694cdfc062f6c050729c0dece3cfd26a57a23cde2a93c1b052e3c7c3f
BLAKE2b-256 checksum
How to use checksums
5933e2d4fde79d50550874c93832afbc7a3787adfcde7e882666b9bb7ae5e51e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-win_amd64.whl

Download URL neologdn-0.5.6-cp314-cp314t-win_amd64.whl
Size 52.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
67c8401fbc6f2a7462a719a42f9ad1979a8f7b2cd392eba91a82bc306063f15f
BLAKE2b-256 checksum
How to use checksums
bc744f99524e3784104fdc0660f38d4c8a8834a129194d80f962f22277f4745b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-win32.whl

Download URL neologdn-0.5.6-cp314-cp314t-win32.whl
Size 49.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
848d1d14e1feea7b619e688e7d727b6ad97be9039d81591a551e7c6ea9aa983a
BLAKE2b-256 checksum
How to use checksums
084336781512b32a620934438cf4086ead2cf43cc01c64203fa3a6f498dd0b20
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
3ab7c99ebd8f5e765f90080b8d39de9e4578c210a84262fb4f428a1b3fb9fdd1
BLAKE2b-256 checksum
How to use checksums
8c96bd5dcdc97701f29b32320c9b87eca02fc790f5eeb36f074701db285c5111
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl
Size 1.5 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
eb708b26a49e08fbf781169c1ce5f38141a2ab3edc98f209b54397ed51e6db03
BLAKE2b-256 checksum
How to use checksums
365c0e3074106f6d6ffb591d2bf93653c8713cdf7ab02bbb41dc450ce003ad0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl
Size 1.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
18f8fff008d47f13640545d89fdb05faa46e540c4a29017d129608b1f9f7ef00
BLAKE2b-256 checksum
How to use checksums
d0bfb6bad21f16a936c66d12f415267d1d986352c75a73713071570955d0f59f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2b2d9f05b1aa918cd6840476c3e6b9f1b19d29acfadbbcd338e536687ffd5331
BLAKE2b-256 checksum
How to use checksums
7006e04fc647261df6c1e490b25370c0f198d27d23ac46fb669f02c383860802
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 307.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
53fec94abeab5bda8082462fe7c986cd00766deb8d8568430331ab29574e4b62
BLAKE2b-256 checksum
How to use checksums
9d3fb2891d21cae437d58cdd5a5609b69264a75c49f4fb42d38dd5277bdf31c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 315.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
60b0691d3a504b6f50cc597e8eb41d90de4c642884f4414cb0ddff732cc566ef
BLAKE2b-256 checksum
How to use checksums
1313fe9e4684c3833b6d037d1e591c82ae3820d74ee1c51586990334c31a99c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 314.0 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ba45a2a43fada92c201368ab195a5be530420c194bd1877f1e5b3373c19a89f3
BLAKE2b-256 checksum
How to use checksums
7a71b5246f1855181a956f35a19bb92fcf20194ddaa74e2d200163df1705610e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 311.6 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
87642a284ff190aa72127d4a4e4c6a02e1a830a1b0e6a8007dbd65055d012e1d
BLAKE2b-256 checksum
How to use checksums
1d62c9f4ff12154835b1900136734a22a6bdb69b80ddb8d3b42d16c1aaba5bd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl
Size 49.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c3bdbaa8494709665300b631d76541bf68b0b9983ebf91d4820edd41da880eb7
BLAKE2b-256 checksum
How to use checksums
af788bc5114e32dd8f63c12bfc883aa562831cf9d5a6d4b2543fd87e22a8cca9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl
Size 50.6 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
f02b27a703806fb593065b48ddfb3d93e48b5efa4c86ca2167300fd2a2a698c4
BLAKE2b-256 checksum
How to use checksums
fc2fd22c52759209d2c44e4626d71c4b15ec35945af8cce609c4e04f84240c39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl

Download URL neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl
Size 89.9 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
e547113d4727e70218d23ca433aeb1bb3bca93e6718c2a7ab4fcbe4e9a24c4e3
BLAKE2b-256 checksum
How to use checksums
6781dafa08c4538114bcd57a1e86225649f2b51431e83239965f45452913acca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-win_arm64.whl

Download URL neologdn-0.5.6-cp314-cp314-win_arm64.whl
Size 43.2 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
37aa6fc7d31b9f96b156d47637a791e12ea9bacc653e12f4573419462cc62c36
BLAKE2b-256 checksum
How to use checksums
4bfc5fadb456bafd445112a58b2e33ee838025c65a82d7b6a79591bf0ca939d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-win_amd64.whl

Download URL neologdn-0.5.6-cp314-cp314-win_amd64.whl
Size 48.4 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
1220a9aacfdbda7096324b9a5a0602774049fd1d8fdd8069ecadb49aed97c166
BLAKE2b-256 checksum
How to use checksums
45f72652432a592755420afcb465fde84ce722598a74395c57d41986a22b2085
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-win32.whl

Download URL neologdn-0.5.6-cp314-cp314-win32.whl
Size 45.7 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
7cc61d7cf08ea5357d181ea4ad5e686d842f244ca1ea3b3c1a11504870569e10
BLAKE2b-256 checksum
How to use checksums
b274f661e42cbd781ad0b46864932c950fab3b78cf3263b934c75575dc73aca6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e460610728972441564b9719a0d7a3cdcca18ddd22c3764a47b52d4ab0e9cb23
BLAKE2b-256 checksum
How to use checksums
d0b3dd99831fb2f8884d9d3169c377359ee68d263f1213b2ea4fd0fbdebc56af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.14 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
0f9645663413591c127f0fb4baf695c0d01625293771d381ed4925ca74e6e4d6
BLAKE2b-256 checksum
How to use checksums
bb5c9b864d5486cf3d753edd132a891c13c46338fa1617db7dab42996ba0a588
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.14 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7a1feca3578a672d54bc0d347c81f7f5d956596223eb132ed0bbf3b0ef198482
BLAKE2b-256 checksum
How to use checksums
e93de9d1225eef6b055a57a559291593ad3dca6bbf982cde4a4f563251657765
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d61c93652b270e0ca7fd29336becc38678e92d58c0426fb31a55bdd30db979f5
BLAKE2b-256 checksum
How to use checksums
a76d36701dca57c5dc0adee0a95564e0c82635a3a74c38d80908e2a7bc81cb9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 264.5 kB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
83f751bb597958e50fbe5fe46edef1012a5b97ad27cae0f379342506e40ee0ad
BLAKE2b-256 checksum
How to use checksums
a9e07073a5aade91db4fd6276c1b2e296995942ad5efcfd8485aa3f6a03eaff2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 269.9 kB
Tags CPython 3.14 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
9f546b11df94f610a6a75600e785fd4a3f3b823091538d66263b7ddf5510d715
BLAKE2b-256 checksum
How to use checksums
68350daa36b8084445c3a08b1ae931170abe715bd0142097be0c74c07097c8dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 269.1 kB
Tags CPython 3.14 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b25b6a82c279e9ef6c480db69b4c283102cbd4083714fec57839f6d1ebee0d79
BLAKE2b-256 checksum
How to use checksums
b605484f2d82454db4d2ad193e4ce0c6b2c99d9aeb90604f5575df75db098586
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 261.3 kB
Tags CPython 3.14 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9b545a502823792b1c88e521ed3e7adc6df810d91a2ee0e7bbb319d52e976e14
BLAKE2b-256 checksum
How to use checksums
dea9be173067fb26bbcf9883de92d5d896cd758d7b0f1c8ad6ece646858fec35
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl
Size 46.0 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0357e085fac0774e380b8fcb237fb00f086163c9f599b5babefd3dc47ac5ee31
BLAKE2b-256 checksum
How to use checksums
33c1194e99707aa193d8e485418749f36b5d10e58fd23818dc36ed55525f6d60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl

Download URL neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl
Size 47.5 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
2cf7babe59d9640137dc7818e4654de369e42bf26d718db04539e334119c7b68
BLAKE2b-256 checksum
How to use checksums
f23637ba26398c17fe2269f0e228b6cc0e5886b91bba5f5981742edb2cdfde6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl

Download URL neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl
Size 83.9 kB
Tags CPython 3.14 macOS 10.15+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c213181b47b4bfb7781fc020a8d37d813341fe6412c37272dea5d7db5aadc0df
BLAKE2b-256 checksum
How to use checksums
b705e59dae7aa3c66a61d59efd3ea047f03265c6ede9751a37092c78c4d2f719
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-win_arm64.whl

Download URL neologdn-0.5.6-cp313-cp313-win_arm64.whl
Size 41.7 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
e095cfb700e082489f9a2c089ba5eb0a3a1de212ddc5307bae151bdd322b6beb
BLAKE2b-256 checksum
How to use checksums
5f658154765b0f9657a790566d4d19c2d122d1c33feb0f1654babbe699a6f045
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-win_amd64.whl

Download URL neologdn-0.5.6-cp313-cp313-win_amd64.whl
Size 46.8 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
de888dc6aaac754cd0be5d6d182266f1e16401e4709f84816a87e9727674d38e
BLAKE2b-256 checksum
How to use checksums
1d4e737bc72305a0023514fbe7c53691658661a75e8be62d12d960a159b0e882
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-win32.whl

Download URL neologdn-0.5.6-cp313-cp313-win32.whl
Size 44.1 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
4841c66642341f61cfe32af184ad54af3c077d55ece0801a578e96bf3312c9ea
BLAKE2b-256 checksum
How to use checksums
d31fbb248512a3f934cea54912e07bd11a55991168c203aa61ab4b0f300eb92f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
d69230bc9f964cff36718b1d84c4aa33cd06532845f2192a82be0f9be0b45fa1
BLAKE2b-256 checksum
How to use checksums
f56936690650324a0886f8124f98269465993635211e02902e76c82791018784
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.13 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
407960196b75b14355716572e78bad79d55f146a311799f20e2e7ccf932074dc
BLAKE2b-256 checksum
How to use checksums
eecf7aa4e6292ca913a2acd482f8bfcc8e38cde7853a7889d4e4fea0cb884991
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.13 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cf17881f495754d50bd537e987eae1379c93beec6718ae67a767338cf378775a
BLAKE2b-256 checksum
How to use checksums
b8890421b6bddd087803459e3342ebbdb8fe01c111025c1b06738255ae265a6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
f1d4115458680e02d30480dba7ba16001b646a7108f939f38db83495a88bd92f
BLAKE2b-256 checksum
How to use checksums
ea7b143c1639721d81ddb7763d26fbb38cdff716196b1956d9ae91d77911700c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 266.4 kB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5f62fa856cb8051f2f9705d4bd867b95f76ab641fabe55d5982af3aa85b0f791
BLAKE2b-256 checksum
How to use checksums
4ea3faa29bb0faafc49b3e4e1638bee8a09bb6dab769d359c0dcc437cad0659f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 273.1 kB
Tags CPython 3.13 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
9f8bb185710cf749cb00374a61099040c59ec4be9a067de25b347d1ca12fcddf
BLAKE2b-256 checksum
How to use checksums
1dedff1836c630dec187b7b0cd63a9a0b7273c4faab0f5e03b438e18b5764661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 268.7 kB
Tags CPython 3.13 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c413a7b5ee569d1f1cb4a9dad2cd7da7478193c5f2b933a9417bee74e83ff9ec
BLAKE2b-256 checksum
How to use checksums
fd04e9d4e6e63ef80f986046d1865d2fd90107fb24cc095705d96fb9099f87ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 261.6 kB
Tags CPython 3.13 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8f390b87dd94a1c7851d95ff12c783023c0365cb1764f3f4daad1a004df241d4
BLAKE2b-256 checksum
How to use checksums
c974b2c5b4e058029a148eb03de55e61af8346bee55e6a104995b6c325e38ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl
Size 45.9 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
76f2b243612cda186429ffa25d54d469efb7db8c9244e823bada1c51ab8a4984
BLAKE2b-256 checksum
How to use checksums
41ef31ecfb896288a446e60df33b88e372a6647fe23b38e79c913ad89144bf5c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl

Download URL neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl
Size 47.6 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
9277ee1290e78dd5303027e38ed17e2765c2af1fcba669abfe5d9059e466a615
BLAKE2b-256 checksum
How to use checksums
a6e116dc809b10a21f302a56ec5318cb0b2f141514886705ca60696c1d378610
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl

Download URL neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl
Size 83.9 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
25a92e04cfd2ddc1a96f190a553abb111ab1c0ad0b43f3e5b7e40147a82cda05
BLAKE2b-256 checksum
How to use checksums
8250ce1d7668b278ae4a68ee26e7b31fd92b52387cba575bf203363114cf6b1f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-win_arm64.whl

Download URL neologdn-0.5.6-cp312-cp312-win_arm64.whl
Size 42.0 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
da7b726fc30c63297a258c665db4383e3194a3c13933499f2f70ff0ce45eae0f
BLAKE2b-256 checksum
How to use checksums
5bd73d34a8651d25da59b6c5f506873f992160e47804fa46b21e03c04175afc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-win_amd64.whl

Download URL neologdn-0.5.6-cp312-cp312-win_amd64.whl
Size 47.3 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
b4b7aa036802310f60427d87829d86e6606f1a490311e76f8291da2ca43a80fb
BLAKE2b-256 checksum
How to use checksums
002d54e00869708c2195b06f2d5269fc0f0a5e85f8edefcfafd0a984a235ccac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-win32.whl

Download URL neologdn-0.5.6-cp312-cp312-win32.whl
Size 44.4 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
51485c653e87372a1271ecc1a722421864a0b1542889dbab7d928da4145a5b31
BLAKE2b-256 checksum
How to use checksums
5278166829d885e13c37ccca258e42768c62e2eb6df39a1df0d946d012d113b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
332273a3b3278cab41570da2d9e2844cb71f5aef0b7398091623b7167b207d69
BLAKE2b-256 checksum
How to use checksums
9e248553c330f0a937c591eb25d6562c001008df81f72b692ca7f2a98fa5bc47
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.12 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
44f856444a64e080ce62d6a61cab6546de91a588fa54e5b508c1d24754385852
BLAKE2b-256 checksum
How to use checksums
e435edebc70ff557d7a884eba6b4bdad741764a851275855e1d0a30cbd172265
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.12 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f34428c5a2566471078aa57feb73fb3763c4bb5c9ed24256dc60a01840a15617
BLAKE2b-256 checksum
How to use checksums
f11449af82d0076e592cf2c7d4a3cdfab52c51e2fef9b0b861a680ca98bc1e1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6116ef8a8c44591d4021b7bc39b4f4467cb8fe626295c982871328135d1350ba
BLAKE2b-256 checksum
How to use checksums
933ef4ed9312c4a0f746b7fd6af1099108a364968ed64a6762a55a7c11490977
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 266.6 kB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
a28400f58460645bd360ffbc6f60b0770c0b1d36979246a171f4b9ddccaf06a3
BLAKE2b-256 checksum
How to use checksums
b4448f18b4ca386fd81510de779c006de74eb480456fcae3aab95ab809492b68
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 274.9 kB
Tags CPython 3.12 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
a8ae04a5be43e6bf56b19527ca64f1dc1d436f5e789dfc312a57fbc0de407b4d
BLAKE2b-256 checksum
How to use checksums
46a86cc04f609ca9865df670298c0004f5292776b4aca70a8591f5cfee2bb721
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 270.5 kB
Tags CPython 3.12 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6f055251c8cbf1cd0f859762ebaf25b459b71fa81a501d57e6cdfe616806645c
BLAKE2b-256 checksum
How to use checksums
b056b645513dd4fc995d811f17a5fffdd0a228cfcdf21c87f7dd7c86101b6ffb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 262.7 kB
Tags CPython 3.12 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
67307c9407a96aa718682810b476b05484f348fc4787590159552774b218d4ba
BLAKE2b-256 checksum
How to use checksums
1b15f67d5fc4806af367806795699653c8e97bab134674ee8152f69509e88e5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
Size 46.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e31a38ed13996da171e28ea38bc9c4e80361a156533cf2c0218d21dff125625a
BLAKE2b-256 checksum
How to use checksums
d70bf20ce08922b215e234aa99484312121e0712fdca6ccec35e1d195e1e7e54
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl

Download URL neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl
Size 48.0 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
2c4288d04cc45d0e009872807a2b131c71b9cfc73d18ce223049589b599344f0
BLAKE2b-256 checksum
How to use checksums
7ee58d0311341bd82e59f30fc9a161c7b06116a36446b7b870281c44655130d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl

Download URL neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl
Size 84.7 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d355a9c7e97a039c0b026fdc34866850a5d843273b7ff007a829d2710e7936f4
BLAKE2b-256 checksum
How to use checksums
b1accd00bac0f404302303860ba10577e23e420ec8557a1d8d8f492f9307b826
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-win_arm64.whl

Download URL neologdn-0.5.6-cp311-cp311-win_arm64.whl
Size 42.5 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
bf167d599c11e24d3f5a1ce7fa7888c4d9d79eba5ca138a0ebf51eaf0c790c5f
BLAKE2b-256 checksum
How to use checksums
b74ce90f45e666474bf1a64d9f958463745d4ff34dfa9b331fd06e95d1873558
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-win_amd64.whl

Download URL neologdn-0.5.6-cp311-cp311-win_amd64.whl
Size 47.7 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
9b87e8c9b2d64c5d53dded9a9e03dbab808fea068b4974bdb8917300bad382d2
BLAKE2b-256 checksum
How to use checksums
c61cbf2ca89584b5769cbbfcc8da7d98b9770d4a94ce08c4e608adc18457eb9f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-win32.whl

Download URL neologdn-0.5.6-cp311-cp311-win32.whl
Size 44.9 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
50d3c7acd0eae7dcdf093b2ff04ccb863221ca71759527251b7bca350ed8bbc7
BLAKE2b-256 checksum
How to use checksums
0f411761e61ac4fbb31c69ae7ca1436f1ebd4b080c7c01b025ccd634710696c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
f20fb9e2103aa32822d693acaafe6af6a9bdc000bf5939ca9fa18cd073a3ae5a
BLAKE2b-256 checksum
How to use checksums
2ae702f137c50f77431692220b696ba741d4c3dd4f2c14359e1fccaa28afdadf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.11 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
15ce445d9630888daf4eed294c01ca81cb33005c700a8546fe687813215b97a8
BLAKE2b-256 checksum
How to use checksums
986b5b319e3da8159109c3211d9c0e44733bd2540a6cebb8a5fa8223aad8582a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.11 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
75f8c2e072d104574d17ad399dd1f15056d15d927193c06a30dea9034a1c0432
BLAKE2b-256 checksum
How to use checksums
8f1d7e1ab34e13b01a2fd9d690b82656ef18b8bbc71090255d963284eb8c8b7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
def1507a05b9dc627bf683b1c04a3ec3d1f32da12a1b486dfb044a2ca1f08ff8
BLAKE2b-256 checksum
How to use checksums
298587ca704265198ebb2395072ada77b85e1f11adaae940914e0376f9016eae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 261.7 kB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8fc3aebd77b5b732fe4e4ead57186d1b45134978013cec459911280c7b056848
BLAKE2b-256 checksum
How to use checksums
78115f095959bcbc24257a90df4aa084c8499e4869c85ba321c1f055aec9a05c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 267.7 kB
Tags CPython 3.11 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
606ce0cbc097351f2fca573f78bec8f50a0e7df6d9339032860f1f1b84ca2f2a
BLAKE2b-256 checksum
How to use checksums
1146e97f0e4022d45104ca5f9caf47b1bc9ddc2362a5a5a46b8e6bcec634ce90
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 268.2 kB
Tags CPython 3.11 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e209fdacf2315f292f182ac81cf06ec911f450c9642f2ac0a00a5c145071502a
BLAKE2b-256 checksum
How to use checksums
35c8002705409bf82a121b3e2e9536732c874ec29181924e31dbcccc28825a42
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 259.7 kB
Tags CPython 3.11 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8ec76eb105123d52b825e9738c2f418c3e4c2def721704baebdae31720d05d15
BLAKE2b-256 checksum
How to use checksums
6c9ebc21a61fb53c458011283b71aecb80ca72cd343ff144e2ef156535edd7d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl
Size 46.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b4e250e24d7cdf6d6c7e7bb42847c12b5e23ea7e73fd6810e0ffc9ff5d2b0ae0
BLAKE2b-256 checksum
How to use checksums
eb9b5b5a183b0f76f11e34119af7a97982a58ae6b22382ad8b5825384af6d8dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl

Download URL neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl
Size 48.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b735a9ee28e22d5ed5e797fb50e3420bfcd7e5da7d69f6100864fde342b47d19
BLAKE2b-256 checksum
How to use checksums
5c2a7d04f5d772d6114b6b82036418ead1e26c8b79036bde03c03d2b5059afa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl

Download URL neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl
Size 85.6 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7da4767a00c316005fe1ac3a484aa3814213d285fdbac4e6cb411ccf124eda32
BLAKE2b-256 checksum
How to use checksums
7dab8b65192b4e7db52a1227addf925a722e0300a828a0c9605f040372d89248
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-win_arm64.whl

Download URL neologdn-0.5.6-cp310-cp310-win_arm64.whl
Size 42.5 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
8d2ac61db25c87f10609110bd657add4c40f903ae61caff845ebc172a1ee565a
BLAKE2b-256 checksum
How to use checksums
fec7a7b0cb0d514b553a0476aa35bed82e09d29adcdb6c596fab558d9c2953b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-win_amd64.whl

Download URL neologdn-0.5.6-cp310-cp310-win_amd64.whl
Size 47.6 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
636e0119352b16e514bc08dd259ea8656fd6c8433ba03a6a64197d119731273b
BLAKE2b-256 checksum
How to use checksums
92689aadec563792791039547b008e7f08e751325717a92d84e634f8c293577c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-win32.whl

Download URL neologdn-0.5.6-cp310-cp310-win32.whl
Size 44.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
06f8acd70cdd9414cc0c3b58b862f69140eefca8b047801465cb15925e01ce84
BLAKE2b-256 checksum
How to use checksums
40a4da26039290121bdf15eefd5f56f08a27cb6ce306c083dca1b3abbf247281
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
afa4766a6736991f63f9c5d338f3ae5b720c0081fae6a7cf4ebd291d4572eda8
BLAKE2b-256 checksum
How to use checksums
b2a635898788f10603c55058d3bdafefed32426dccd00f931c168621dc0f89c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.10 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
81ef30fe6ac3dac4febe45fd4fee122f30a9dbcf01c36896fa4b0c876d9de1cc
BLAKE2b-256 checksum
How to use checksums
207d7e8fa80ea1eebf1e090bc7cedb12c80a117e16c8e7628385ec7659f28e36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.10 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
20c60d098075ff76493e1e439858d713d429143b47472349ea8d36d3a76fef45
BLAKE2b-256 checksum
How to use checksums
ae71c93c1f00f93e25a7b274c44aad577d765a18c58f1c706d836a72659ade8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
34cf2c9c71a4e3a9ad7ae81e6a6924577e093ed48eecd14b1ad007867644c44f
BLAKE2b-256 checksum
How to use checksums
1aac4fa769979027f45bd1e407e1a94cec274b41bd8d8253492587b7d9ee7af5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 247.8 kB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4b22eb2dec66d745171197085f154c61702f7d23b12825ef20b848647f80f776
BLAKE2b-256 checksum
How to use checksums
b3bf2807d20c1e50467895287c910a80ab07fdd5b25bfa05cb0536bc8e23fe79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 254.7 kB
Tags CPython 3.10 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
fb253d32f23b995c4c94569e772e1997860ee538f27e73d0693293cf510b34f1
BLAKE2b-256 checksum
How to use checksums
e9ea4d91a3b040e379cf0a1e683b26388a5cc4eccea5319e3ec6cfc0480190ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 253.8 kB
Tags CPython 3.10 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c22b2f10a9097c7f1b09860687f24492f51d82d0c21c9c5e2dd976b74922a645
BLAKE2b-256 checksum
How to use checksums
59841e3db1a176a4d1befb58040c9c9bf7cabdfaf59b641d3764a1903b71bf0b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 246.6 kB
Tags CPython 3.10 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c513f7ed80f8e3ff3f0738d6aa77f7d24cb994b7165e6d957f6f1521e8500f63
BLAKE2b-256 checksum
How to use checksums
0097f5fcad5410074dd196a58661255df60c6934f31c406b605b5d0facaf494f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl
Size 46.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d18c969a0f034bdc8bb188f854c27c107dd5f5432768c3215a3c41879d3ac64a
BLAKE2b-256 checksum
How to use checksums
5880f950a229e963e6421de3be5d55d1a2ee428eace218451934b6f431bae8f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl

Download URL neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl
Size 48.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
517c283cf00c7cd52748809be137d349033ed5eb467a391f1c576b3e3e300bc7
BLAKE2b-256 checksum
How to use checksums
b179de3701a2aec6e845360135609bb64d9706b9694d524a99356c902f252927
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl

Download URL neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl
Size 85.8 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
f426d3524db641bf9762356f81bf9fadb8710f7d8d9749a299709fd11150a80f
BLAKE2b-256 checksum
How to use checksums
53317c33ff99ac8be724824d9bc93547b087af8d369fe8c366acefce98642e0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-win_arm64.whl

Download URL neologdn-0.5.6-cp39-cp39-win_arm64.whl
Size 42.6 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
464b26cb11241ad8ff1639b3257a020e7c62f4e489bc4381c70b39af406993f9
BLAKE2b-256 checksum
How to use checksums
182160b1316f96c7091b848d3b986b05eecbea8fecf9e5f268aa3fa87eb22517
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-win_amd64.whl

Download URL neologdn-0.5.6-cp39-cp39-win_amd64.whl
Size 47.7 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
381ddb7c21fb6e2b28f1117f269ae0d4466dd7ad568d4640da226f4015e35f02
BLAKE2b-256 checksum
How to use checksums
0eb7f95a1ccd53e69d69d58d7f847a07da165d800ddc5b82d07adea29b517281
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-win32.whl

Download URL neologdn-0.5.6-cp39-cp39-win32.whl
Size 44.9 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
22b1eab2d2601bc11fff94107b7aad7952510c7a053412c08147f18ad6474863
BLAKE2b-256 checksum
How to use checksums
cbc6f1febb450ad6464d924abe8bdd5b7593cbbdae01006d67bb5ea36fdb98e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4f019f3911942eabc2b632b62d9ff536fc84c5d533d5e211d2ddf15ce060fd99
BLAKE2b-256 checksum
How to use checksums
3c67a5d85fc1c00ba3367f84ea12ce561bd83cbc3a62a85b18326f49b1469038
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.9 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
2de3fc29bd119eee1d17a180cac018ac78ac564b069751e320450a0808073d11
BLAKE2b-256 checksum
How to use checksums
95b917ac312937c64f46f3a5722e08d6a026e588dc2069e70d648828e88c2ab0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.9 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1b0149a3d47137973e5e8e58fde1129473b7c44a33819d091a8b615cb81f7a8f
BLAKE2b-256 checksum
How to use checksums
9e4e76215e7a30771eaa1761237230270cbe365e373b049b827f5e6f04922c8f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6c8902c6eb57a988127a5300a522ff22798121db4ccb27a7b0f37eea21879907
BLAKE2b-256 checksum
How to use checksums
c1f85fe42c74cfe42f32170b83ceac99dfef76f2afaeeae1746a48f83cd52d8d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 246.3 kB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
55b3677c8d0c4ff586133944c078cdc9bb7b511c3566f52087731da307046a40
BLAKE2b-256 checksum
How to use checksums
fa474de5ed23f088957d063c1ab94df11ad24ea977416dcde370a5046d27cabe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 253.6 kB
Tags CPython 3.9 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
25ad51f53ca94e42800fff4e2ad57c6390a42685b08d6d8b7e769a4dfda68c04
BLAKE2b-256 checksum
How to use checksums
8be8c9a3535d4099ffe41df0efa06a98608d47f9e518ff6de3cc5029c9bfb44a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 252.5 kB
Tags CPython 3.9 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
855855a9f013be020dd273bcdfe996c52c9be06adfbba368972d5811a9e7e314
BLAKE2b-256 checksum
How to use checksums
72dce94deab85fb885b439d0752b275548f8e19d8e487f409c8415e2003c0087
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 245.3 kB
Tags CPython 3.9 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c4b276337a20c823874dbd35c7c0d1233fa116aa1d438c5d839f0755db5c6afb
BLAKE2b-256 checksum
How to use checksums
3ed861596180eba1526f94bfa0a432b77d8ddd17fb5ed16b97c6e351cf54d64d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl
Size 46.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d2b1aadc8aee7b2ea141e14c4af4917dde5ecbbe9d0f101226fb85ac708d70c4
BLAKE2b-256 checksum
How to use checksums
6b9776eca07befb51e0a3d03b719b01084f21d609806cbf1111d430e21dcebf5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl

Download URL neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl
Size 48.9 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5467951afa963a9e7ca01a8798dfc24c5ebd5e614a4fbe88c1ec8ec2c8fe82e9
BLAKE2b-256 checksum
How to use checksums
0954a460e5cb4c4dbe1bcf1061b427beebf7ee66ebf01d317ef38aea37337975
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl

Download URL neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl
Size 86.1 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2220b168bd37bbabecdcac24956e91a337e115d0e1c30c946fc6d069884c9942
BLAKE2b-256 checksum
How to use checksums
7bf24dadf6d6d5d2cf0dc7dc60524cefcc4b05b9e8b217743a890be0cfbb3ae5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-win_amd64.whl

Download URL neologdn-0.5.6-cp38-cp38-win_amd64.whl
Size 48.2 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
d1f36673e21144cf5cd6350ba20945a3c9f07ab23fd3d46bf5055b72f8fd7a80
BLAKE2b-256 checksum
How to use checksums
ac04ed115844e8a76ec155a74fa10bfb1907e8d2762a522ca4772a2112c19f0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-win32.whl

Download URL neologdn-0.5.6-cp38-cp38-win32.whl
Size 45.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
c2084a2204b033bdbcd7a73357512be5507ac00e86052e40cfd8cbc112542f87
BLAKE2b-256 checksum
How to use checksums
f532798a0e715290cc99179c07d60c09424c32fca54a7eef73e024b2fd9e9123
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e4ee89e069aede55d536ff5cb9626b23106bb3bc7013e334304db4948d76dcdd
BLAKE2b-256 checksum
How to use checksums
7ae2984c809dd24fedeba91412cb024717d43d3465929518b051368407609929
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl

Download URL neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl
Size 1.4 MB
Tags CPython 3.8 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
9287a53ab72e5e1442f12fa54228ec6f1c54fadbc48eb614177e8867ed105bbd
BLAKE2b-256 checksum
How to use checksums
45d6210a7fca0b65bc4b9de294f22d26d2f6f3dd552cd0f3551f29a5c42a53df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl

Download URL neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl
Size 1.3 MB
Tags CPython 3.8 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ab85e0333537d5c5252d08bdca10b5aa784e88ca310f974a3b090ecd20cd9b88
BLAKE2b-256 checksum
How to use checksums
3b761e11a00e56cf1fbe0cb81ded600ad8d474a93bb778646104dcaf89961229
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl
Size 1.2 MB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
7b0673fd72a77602fe6d93f4e8e7c269302777f1d8bfd295c161ebc3552b2c52
BLAKE2b-256 checksum
How to use checksums
dce88473d5eaeb5083887dd891af654312d958349635f987d8491c8e0388c102
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 249.7 kB
Tags CPython 3.8 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
4236559212a39a668ddead7f05df1b0723c7b4c6d3b8b1c1f3e4d06bcf7f88d1
BLAKE2b-256 checksum
How to use checksums
839052077ef2a8184b048d843fb12578a78f7b67b25e18bcd00d47d2f46759a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl

Download URL neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Size 257.0 kB
Tags CPython 3.8 Linux glibc 2.24+ IBM System/390x Linux glibc 2.28+ IBM System/390x
SHA-256 checksum
How to use checksums
0cadc4325d1bef4a2824feef3852db7c801cefe2e5958ad15bd395534eb1a0bf
BLAKE2b-256 checksum
How to use checksums
cbd25781d4ac91f723ef49e2116744b1e1765219f9167526df792f8f4c838a6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl

Download URL neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Size 255.7 kB
Tags CPython 3.8 Linux glibc 2.24+ PowerPC 64-le Linux glibc 2.28+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e8103d5817cfcfd75e64492be97f05f9ee5083686fa0fbf3cb34f256320ebada
BLAKE2b-256 checksum
How to use checksums
0f80bb39238af4b7fa070fd3a6d9911df7f1aa44421f4dbe1995f2c321518666
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl

Download URL neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Size 248.8 kB
Tags CPython 3.8 Linux glibc 2.24+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
744d53e818bee90facde1c34b8b3c8aea54ad619870735e2023b8b99a770e66b
BLAKE2b-256 checksum
How to use checksums
a541a3e2632c56821c428351f09626198ab00bbdd33838a1fe458d587702b61d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl

Download URL neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl
Size 47.2 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
4092075ae9d8b1f5dfa708748b28529754d076a37f99f76f6e039016d2a02565
BLAKE2b-256 checksum
How to use checksums
6cdf7a63e4c76844059d0b697ed804b53725f46c003895cc67e2d3ce774eac92
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl

Download URL neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl
Size 49.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
6adbc4cdb28a504321ff47b77270a69da555edfd06998bc221898df908d88ce7
BLAKE2b-256 checksum
How to use checksums
5616743283b7384be29973a76c93b0fdce694f3bf3a14938cdc8a911d7391e7e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release files / neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl

Download URL neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl
Size 87.0 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
d34e5446d086bedcb9d45b704d2548a0e4392e8e83647e9fd307c8254c6a3d0d
BLAKE2b-256 checksum
How to use checksums
a5cd754e5d270d62fe12d54da7b96ee1b85f3dc5413ce6d1db22ddc908da73f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Dec 2, 2025.

Transparency log

Release history Release notifications | RSS feed

This release

0.5.6 This release

112 release files

0.5.4

15 release files

0.5.3

1 release file

0.5.2

8 release files

0.5.1

9 release files

0.4

9 release files

0.3.2

1 release file

0.3.1

1 release file

0.3

1 release file

0.2.3.1

1 release file

0.2.2

1 release file

0.2.1

1 release file

0.2

1 release file

0.1.2

1 release file

0.1.1.1

1 release file

0.1.1

1 release file

0.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page