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

Download files

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

Source Distribution

neologdn-0.5.6.tar.gz (105.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

neologdn-0.5.6-cp314-cp314t-win_arm64.whl (45.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

neologdn-0.5.6-cp314-cp314t-win_amd64.whl (52.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

neologdn-0.5.6-cp314-cp314t-win32.whl (49.1 kB view details)

Uploaded CPython 3.14tWindows x86

neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl (1.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (307.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (315.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (314.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (311.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl (49.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl (50.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl (89.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

neologdn-0.5.6-cp314-cp314-win_arm64.whl (43.2 kB view details)

Uploaded CPython 3.14Windows ARM64

neologdn-0.5.6-cp314-cp314-win_amd64.whl (48.4 kB view details)

Uploaded CPython 3.14Windows x86-64

neologdn-0.5.6-cp314-cp314-win32.whl (45.7 kB view details)

Uploaded CPython 3.14Windows x86

neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (264.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (269.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (269.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (261.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl (46.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl (47.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl (83.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

neologdn-0.5.6-cp313-cp313-win_arm64.whl (41.7 kB view details)

Uploaded CPython 3.13Windows ARM64

neologdn-0.5.6-cp313-cp313-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.13Windows x86-64

neologdn-0.5.6-cp313-cp313-win32.whl (44.1 kB view details)

Uploaded CPython 3.13Windows x86

neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (266.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (273.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (268.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (261.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl (45.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl (47.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl (83.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

neologdn-0.5.6-cp312-cp312-win_arm64.whl (42.0 kB view details)

Uploaded CPython 3.12Windows ARM64

neologdn-0.5.6-cp312-cp312-win_amd64.whl (47.3 kB view details)

Uploaded CPython 3.12Windows x86-64

neologdn-0.5.6-cp312-cp312-win32.whl (44.4 kB view details)

Uploaded CPython 3.12Windows x86

neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (266.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (274.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (270.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (262.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl (46.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl (48.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl (84.7 kB view details)

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

neologdn-0.5.6-cp311-cp311-win_arm64.whl (42.5 kB view details)

Uploaded CPython 3.11Windows ARM64

neologdn-0.5.6-cp311-cp311-win_amd64.whl (47.7 kB view details)

Uploaded CPython 3.11Windows x86-64

neologdn-0.5.6-cp311-cp311-win32.whl (44.9 kB view details)

Uploaded CPython 3.11Windows x86

neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (261.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (267.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (268.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (259.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl (46.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl (85.6 kB view details)

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

neologdn-0.5.6-cp310-cp310-win_arm64.whl (42.5 kB view details)

Uploaded CPython 3.10Windows ARM64

neologdn-0.5.6-cp310-cp310-win_amd64.whl (47.6 kB view details)

Uploaded CPython 3.10Windows x86-64

neologdn-0.5.6-cp310-cp310-win32.whl (44.8 kB view details)

Uploaded CPython 3.10Windows x86

neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (247.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (254.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (253.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (246.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl (46.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl (48.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl (85.8 kB view details)

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

neologdn-0.5.6-cp39-cp39-win_arm64.whl (42.6 kB view details)

Uploaded CPython 3.9Windows ARM64

neologdn-0.5.6-cp39-cp39-win_amd64.whl (47.7 kB view details)

Uploaded CPython 3.9Windows x86-64

neologdn-0.5.6-cp39-cp39-win32.whl (44.9 kB view details)

Uploaded CPython 3.9Windows x86

neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (246.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (253.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (252.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (245.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl (46.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl (48.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl (86.1 kB view details)

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

neologdn-0.5.6-cp38-cp38-win_amd64.whl (48.2 kB view details)

Uploaded CPython 3.8Windows x86-64

neologdn-0.5.6-cp38-cp38-win32.whl (45.5 kB view details)

Uploaded CPython 3.8Windows x86

neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (249.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl (257.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390xmanylinux: glibc 2.28+ s390x

neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl (255.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64lemanylinux: glibc 2.28+ ppc64le

neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (248.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl (47.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl (87.0 kB view details)

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

File details

Details for the file neologdn-0.5.6.tar.gz.

File metadata

  • Download URL: neologdn-0.5.6.tar.gz
  • Upload date:
  • Size: 105.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6.tar.gz
Algorithm Hash digest
SHA256 8f93ebf1dda431a32264980d4b03060bb6f08d3f16add53b453850461c07e1e6
MD5 47e0045ba1ff957034c1bee6b912e017
BLAKE2b-256 173362ac03093b700f6669fc44be9db39aa8ec05e8e2e53ac312ad146adaf1ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6.tar.gz:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 45.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 37d82f9694cdfc062f6c050729c0dece3cfd26a57a23cde2a93c1b052e3c7c3f
MD5 8f499e46aed45627fff40300d30222e5
BLAKE2b-256 5933e2d4fde79d50550874c93832afbc7a3787adfcde7e882666b9bb7ae5e51e

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 52.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 67c8401fbc6f2a7462a719a42f9ad1979a8f7b2cd392eba91a82bc306063f15f
MD5 778f58269590530eaa98a0817d4b40b6
BLAKE2b-256 bc744f99524e3784104fdc0660f38d4c8a8834a129194d80f962f22277f4745b

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 49.1 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 848d1d14e1feea7b619e688e7d727b6ad97be9039d81591a551e7c6ea9aa983a
MD5 c435f68137884b24089019c18ea105c3
BLAKE2b-256 084336781512b32a620934438cf4086ead2cf43cc01c64203fa3a6f498dd0b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ab7c99ebd8f5e765f90080b8d39de9e4578c210a84262fb4f428a1b3fb9fdd1
MD5 582ffae72e155b238e6a9d0f6e6aa6c9
BLAKE2b-256 8c96bd5dcdc97701f29b32320c9b87eca02fc790f5eeb36f074701db285c5111

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 eb708b26a49e08fbf781169c1ce5f38141a2ab3edc98f209b54397ed51e6db03
MD5 4115fd772d2806e8acdea0f4d0860738
BLAKE2b-256 365c0e3074106f6d6ffb591d2bf93653c8713cdf7ab02bbb41dc450ce003ad0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 18f8fff008d47f13640545d89fdb05faa46e540c4a29017d129608b1f9f7ef00
MD5 427a6743be7daf7ccaaa3f6ae7171573
BLAKE2b-256 d0bfb6bad21f16a936c66d12f415267d1d986352c75a73713071570955d0f59f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b2d9f05b1aa918cd6840476c3e6b9f1b19d29acfadbbcd338e536687ffd5331
MD5 cd04f2b2db7ec95a63602091751c860e
BLAKE2b-256 7006e04fc647261df6c1e490b25370c0f198d27d23ac46fb669f02c383860802

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53fec94abeab5bda8082462fe7c986cd00766deb8d8568430331ab29574e4b62
MD5 7a7c1f07e53dde638aef55c4d8f7e3aa
BLAKE2b-256 9d3fb2891d21cae437d58cdd5a5609b69264a75c49f4fb42d38dd5277bdf31c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 60b0691d3a504b6f50cc597e8eb41d90de4c642884f4414cb0ddff732cc566ef
MD5 4e96b9ca2ad601897b90a57c2628c51f
BLAKE2b-256 1313fe9e4684c3833b6d037d1e591c82ae3820d74ee1c51586990334c31a99c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ba45a2a43fada92c201368ab195a5be530420c194bd1877f1e5b3373c19a89f3
MD5 6a06267149ec679618fc23512498b75e
BLAKE2b-256 7a71b5246f1855181a956f35a19bb92fcf20194ddaa74e2d200163df1705610e

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87642a284ff190aa72127d4a4e4c6a02e1a830a1b0e6a8007dbd65055d012e1d
MD5 83c130099b60229bcae59cece15421f0
BLAKE2b-256 1d62c9f4ff12154835b1900136734a22a6bdb69b80ddb8d3b42d16c1aaba5bd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3bdbaa8494709665300b631d76541bf68b0b9983ebf91d4820edd41da880eb7
MD5 9b6280bcf442e25e665d9d50618dbd25
BLAKE2b-256 af788bc5114e32dd8f63c12bfc883aa562831cf9d5a6d4b2543fd87e22a8cca9

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f02b27a703806fb593065b48ddfb3d93e48b5efa4c86ca2167300fd2a2a698c4
MD5 30c0492d1fee322f9752ef0bdf10ceae
BLAKE2b-256 fc2fd22c52759209d2c44e4626d71c4b15ec35945af8cce609c4e04f84240c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 e547113d4727e70218d23ca433aeb1bb3bca93e6718c2a7ab4fcbe4e9a24c4e3
MD5 3cebe78125a323416129df2e539fbc88
BLAKE2b-256 6781dafa08c4538114bcd57a1e86225649f2b51431e83239965f45452913acca

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 43.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 37aa6fc7d31b9f96b156d47637a791e12ea9bacc653e12f4573419462cc62c36
MD5 b50ca403d470c07960e8c14666250665
BLAKE2b-256 4bfc5fadb456bafd445112a58b2e33ee838025c65a82d7b6a79591bf0ca939d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 48.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1220a9aacfdbda7096324b9a5a0602774049fd1d8fdd8069ecadb49aed97c166
MD5 4f244b06ebacfba238cb629c3f241744
BLAKE2b-256 45f72652432a592755420afcb465fde84ce722598a74395c57d41986a22b2085

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7cc61d7cf08ea5357d181ea4ad5e686d842f244ca1ea3b3c1a11504870569e10
MD5 f8f6f0531785f72c5f02ecaa02066152
BLAKE2b-256 b274f661e42cbd781ad0b46864932c950fab3b78cf3263b934c75575dc73aca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e460610728972441564b9719a0d7a3cdcca18ddd22c3764a47b52d4ab0e9cb23
MD5 fea6e708e76ac523cb77a05b4037f273
BLAKE2b-256 d0b3dd99831fb2f8884d9d3169c377359ee68d263f1213b2ea4fd0fbdebc56af

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 0f9645663413591c127f0fb4baf695c0d01625293771d381ed4925ca74e6e4d6
MD5 954573e2c312f7953720efce1a67932f
BLAKE2b-256 bb5c9b864d5486cf3d753edd132a891c13c46338fa1617db7dab42996ba0a588

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7a1feca3578a672d54bc0d347c81f7f5d956596223eb132ed0bbf3b0ef198482
MD5 e8d9ece8b0ce1b2389f7b5635821d909
BLAKE2b-256 e93de9d1225eef6b055a57a559291593ad3dca6bbf982cde4a4f563251657765

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d61c93652b270e0ca7fd29336becc38678e92d58c0426fb31a55bdd30db979f5
MD5 b0f690a3ac55d0c32b167a7edf90b457
BLAKE2b-256 a76d36701dca57c5dc0adee0a95564e0c82635a3a74c38d80908e2a7bc81cb9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 83f751bb597958e50fbe5fe46edef1012a5b97ad27cae0f379342506e40ee0ad
MD5 ee39f1142d72deaab6f486b4241b975b
BLAKE2b-256 a9e07073a5aade91db4fd6276c1b2e296995942ad5efcfd8485aa3f6a03eaff2

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9f546b11df94f610a6a75600e785fd4a3f3b823091538d66263b7ddf5510d715
MD5 40205f23bf02cd3be45c9ed8d8ecb9e2
BLAKE2b-256 68350daa36b8084445c3a08b1ae931170abe715bd0142097be0c74c07097c8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b25b6a82c279e9ef6c480db69b4c283102cbd4083714fec57839f6d1ebee0d79
MD5 c1810ef1fddb0ae76a68e97918602929
BLAKE2b-256 b605484f2d82454db4d2ad193e4ce0c6b2c99d9aeb90604f5575df75db098586

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b545a502823792b1c88e521ed3e7adc6df810d91a2ee0e7bbb319d52e976e14
MD5 0cb648b690d3f529ef757c87858cfe95
BLAKE2b-256 dea9be173067fb26bbcf9883de92d5d896cd758d7b0f1c8ad6ece646858fec35

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0357e085fac0774e380b8fcb237fb00f086163c9f599b5babefd3dc47ac5ee31
MD5 a5650058ddebd336a5f8b94100072487
BLAKE2b-256 33c1194e99707aa193d8e485418749f36b5d10e58fd23818dc36ed55525f6d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2cf7babe59d9640137dc7818e4654de369e42bf26d718db04539e334119c7b68
MD5 83debd36c728fff4bbe0e0b0151a8d68
BLAKE2b-256 f23637ba26398c17fe2269f0e228b6cc0e5886b91bba5f5981742edb2cdfde6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 c213181b47b4bfb7781fc020a8d37d813341fe6412c37272dea5d7db5aadc0df
MD5 2b569ca3ae52957b9d52faf1f835c9b0
BLAKE2b-256 b705e59dae7aa3c66a61d59efd3ea047f03265c6ede9751a37092c78c4d2f719

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 41.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e095cfb700e082489f9a2c089ba5eb0a3a1de212ddc5307bae151bdd322b6beb
MD5 918a3fde61f69134d14f9b54806542fd
BLAKE2b-256 5f658154765b0f9657a790566d4d19c2d122d1c33feb0f1654babbe699a6f045

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 46.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 de888dc6aaac754cd0be5d6d182266f1e16401e4709f84816a87e9727674d38e
MD5 3f6f54d9d5994c209ffb93f052e2ae28
BLAKE2b-256 1d4e737bc72305a0023514fbe7c53691658661a75e8be62d12d960a159b0e882

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 44.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4841c66642341f61cfe32af184ad54af3c077d55ece0801a578e96bf3312c9ea
MD5 6ba5dc1b2059b0583af76bcea2e30c16
BLAKE2b-256 d31fbb248512a3f934cea54912e07bd11a55991168c203aa61ab4b0f300eb92f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d69230bc9f964cff36718b1d84c4aa33cd06532845f2192a82be0f9be0b45fa1
MD5 6c785685228da46706dc105fb621b474
BLAKE2b-256 f56936690650324a0886f8124f98269465993635211e02902e76c82791018784

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 407960196b75b14355716572e78bad79d55f146a311799f20e2e7ccf932074dc
MD5 fcb1ddb5a594250fe80c6a0c2234562e
BLAKE2b-256 eecf7aa4e6292ca913a2acd482f8bfcc8e38cde7853a7889d4e4fea0cb884991

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cf17881f495754d50bd537e987eae1379c93beec6718ae67a767338cf378775a
MD5 78511de267aff9e2c2e4c9eb39d2a0bf
BLAKE2b-256 b8890421b6bddd087803459e3342ebbdb8fe01c111025c1b06738255ae265a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1d4115458680e02d30480dba7ba16001b646a7108f939f38db83495a88bd92f
MD5 131be96802e9c95a4bad328bdf1959c8
BLAKE2b-256 ea7b143c1639721d81ddb7763d26fbb38cdff716196b1956d9ae91d77911700c

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5f62fa856cb8051f2f9705d4bd867b95f76ab641fabe55d5982af3aa85b0f791
MD5 9c7587beff1d1d38dba4b90a7a4006df
BLAKE2b-256 4ea3faa29bb0faafc49b3e4e1638bee8a09bb6dab769d359c0dcc437cad0659f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9f8bb185710cf749cb00374a61099040c59ec4be9a067de25b347d1ca12fcddf
MD5 60f48bfb3c9ddb961ccb45cd292df022
BLAKE2b-256 1dedff1836c630dec187b7b0cd63a9a0b7273c4faab0f5e03b438e18b5764661

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c413a7b5ee569d1f1cb4a9dad2cd7da7478193c5f2b933a9417bee74e83ff9ec
MD5 bab4aee0a59fdaffeb69e058df9cbd24
BLAKE2b-256 fd04e9d4e6e63ef80f986046d1865d2fd90107fb24cc095705d96fb9099f87ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f390b87dd94a1c7851d95ff12c783023c0365cb1764f3f4daad1a004df241d4
MD5 23935941a355998beeab48c2693a3c1b
BLAKE2b-256 c974b2c5b4e058029a148eb03de55e61af8346bee55e6a104995b6c325e38ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76f2b243612cda186429ffa25d54d469efb7db8c9244e823bada1c51ab8a4984
MD5 6a937f345cedd4111e0ee9907c883379
BLAKE2b-256 41ef31ecfb896288a446e60df33b88e372a6647fe23b38e79c913ad89144bf5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9277ee1290e78dd5303027e38ed17e2765c2af1fcba669abfe5d9059e466a615
MD5 899eb3dcac1fa022f14fd3539139b3e5
BLAKE2b-256 a6e116dc809b10a21f302a56ec5318cb0b2f141514886705ca60696c1d378610

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 25a92e04cfd2ddc1a96f190a553abb111ab1c0ad0b43f3e5b7e40147a82cda05
MD5 13e9a6633ece3782589519acd1e0d5c9
BLAKE2b-256 8250ce1d7668b278ae4a68ee26e7b31fd92b52387cba575bf203363114cf6b1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 da7b726fc30c63297a258c665db4383e3194a3c13933499f2f70ff0ce45eae0f
MD5 096aaf0962e45ab80dfcbffc70915f5c
BLAKE2b-256 5bd73d34a8651d25da59b6c5f506873f992160e47804fa46b21e03c04175afc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 47.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4b7aa036802310f60427d87829d86e6606f1a490311e76f8291da2ca43a80fb
MD5 d219ef5b2061ffedb59ef7876790779f
BLAKE2b-256 002d54e00869708c2195b06f2d5269fc0f0a5e85f8edefcfafd0a984a235ccac

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 44.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 51485c653e87372a1271ecc1a722421864a0b1542889dbab7d928da4145a5b31
MD5 aeadf7e5c0201cbb16735c091b164ff2
BLAKE2b-256 5278166829d885e13c37ccca258e42768c62e2eb6df39a1df0d946d012d113b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 332273a3b3278cab41570da2d9e2844cb71f5aef0b7398091623b7167b207d69
MD5 ea52ba481d1962732d31112b3f2f0bb9
BLAKE2b-256 9e248553c330f0a937c591eb25d6562c001008df81f72b692ca7f2a98fa5bc47

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 44f856444a64e080ce62d6a61cab6546de91a588fa54e5b508c1d24754385852
MD5 eeb02ecce1300aae9ef289ae6c9943b0
BLAKE2b-256 e435edebc70ff557d7a884eba6b4bdad741764a851275855e1d0a30cbd172265

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f34428c5a2566471078aa57feb73fb3763c4bb5c9ed24256dc60a01840a15617
MD5 a2fda6a5699f2d241f3b44aee73f6c26
BLAKE2b-256 f11449af82d0076e592cf2c7d4a3cdfab52c51e2fef9b0b861a680ca98bc1e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6116ef8a8c44591d4021b7bc39b4f4467cb8fe626295c982871328135d1350ba
MD5 a96a9de604b28b352836dd796e87ddb8
BLAKE2b-256 933ef4ed9312c4a0f746b7fd6af1099108a364968ed64a6762a55a7c11490977

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a28400f58460645bd360ffbc6f60b0770c0b1d36979246a171f4b9ddccaf06a3
MD5 dfb84a778a8e0332e5f7d0f868d1d61c
BLAKE2b-256 b4448f18b4ca386fd81510de779c006de74eb480456fcae3aab95ab809492b68

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 a8ae04a5be43e6bf56b19527ca64f1dc1d436f5e789dfc312a57fbc0de407b4d
MD5 41a46bdfe30929d4a513b58a593f1218
BLAKE2b-256 46a86cc04f609ca9865df670298c0004f5292776b4aca70a8591f5cfee2bb721

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6f055251c8cbf1cd0f859762ebaf25b459b71fa81a501d57e6cdfe616806645c
MD5 7e8ff405d57afbc1641cde178951280c
BLAKE2b-256 b056b645513dd4fc995d811f17a5fffdd0a228cfcdf21c87f7dd7c86101b6ffb

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67307c9407a96aa718682810b476b05484f348fc4787590159552774b218d4ba
MD5 d432b77f62415a532283fb3b7b3f9c19
BLAKE2b-256 1b15f67d5fc4806af367806795699653c8e97bab134674ee8152f69509e88e5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e31a38ed13996da171e28ea38bc9c4e80361a156533cf2c0218d21dff125625a
MD5 1bf1995d5198e2d227f98c453a422565
BLAKE2b-256 d70bf20ce08922b215e234aa99484312121e0712fdca6ccec35e1d195e1e7e54

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c4288d04cc45d0e009872807a2b131c71b9cfc73d18ce223049589b599344f0
MD5 432c72293db2e5634057db7c9d77fe15
BLAKE2b-256 7ee58d0311341bd82e59f30fc9a161c7b06116a36446b7b870281c44655130d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d355a9c7e97a039c0b026fdc34866850a5d843273b7ff007a829d2710e7936f4
MD5 cf1a50d14a6bc21bbc46f70f8f6c5b92
BLAKE2b-256 b1accd00bac0f404302303860ba10577e23e420ec8557a1d8d8f492f9307b826

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bf167d599c11e24d3f5a1ce7fa7888c4d9d79eba5ca138a0ebf51eaf0c790c5f
MD5 67382cc7328862f1c94aa9d033f27b7b
BLAKE2b-256 b74ce90f45e666474bf1a64d9f958463745d4ff34dfa9b331fd06e95d1873558

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 47.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9b87e8c9b2d64c5d53dded9a9e03dbab808fea068b4974bdb8917300bad382d2
MD5 9959505014cffed8abd6ab2322711f3b
BLAKE2b-256 c61cbf2ca89584b5769cbbfcc8da7d98b9770d4a94ce08c4e608adc18457eb9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 44.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 50d3c7acd0eae7dcdf093b2ff04ccb863221ca71759527251b7bca350ed8bbc7
MD5 c036b4b86e4eaf52bbd73b56d97515e0
BLAKE2b-256 0f411761e61ac4fbb31c69ae7ca1436f1ebd4b080c7c01b025ccd634710696c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f20fb9e2103aa32822d693acaafe6af6a9bdc000bf5939ca9fa18cd073a3ae5a
MD5 78dab4f021caae987891d1cae0241f2b
BLAKE2b-256 2ae702f137c50f77431692220b696ba741d4c3dd4f2c14359e1fccaa28afdadf

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 15ce445d9630888daf4eed294c01ca81cb33005c700a8546fe687813215b97a8
MD5 3e03c0b7dbb2c266650a8324bed88aad
BLAKE2b-256 986b5b319e3da8159109c3211d9c0e44733bd2540a6cebb8a5fa8223aad8582a

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 75f8c2e072d104574d17ad399dd1f15056d15d927193c06a30dea9034a1c0432
MD5 f546a86bf2837220192f3eda06d79b8e
BLAKE2b-256 8f1d7e1ab34e13b01a2fd9d690b82656ef18b8bbc71090255d963284eb8c8b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 def1507a05b9dc627bf683b1c04a3ec3d1f32da12a1b486dfb044a2ca1f08ff8
MD5 a5d16116555f83efe3d7e190085ca7ea
BLAKE2b-256 298587ca704265198ebb2395072ada77b85e1f11adaae940914e0376f9016eae

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fc3aebd77b5b732fe4e4ead57186d1b45134978013cec459911280c7b056848
MD5 1a22a1a5892df009e142e3c1ae9e121a
BLAKE2b-256 78115f095959bcbc24257a90df4aa084c8499e4869c85ba321c1f055aec9a05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 606ce0cbc097351f2fca573f78bec8f50a0e7df6d9339032860f1f1b84ca2f2a
MD5 2a306ceb88ada33b5d026353a2348097
BLAKE2b-256 1146e97f0e4022d45104ca5f9caf47b1bc9ddc2362a5a5a46b8e6bcec634ce90

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e209fdacf2315f292f182ac81cf06ec911f450c9642f2ac0a00a5c145071502a
MD5 4bd20f2390f481132db30a0b0e6b37fc
BLAKE2b-256 35c8002705409bf82a121b3e2e9536732c874ec29181924e31dbcccc28825a42

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ec76eb105123d52b825e9738c2f418c3e4c2def721704baebdae31720d05d15
MD5 3f10869f5e311ee267d456baeab92222
BLAKE2b-256 6c9ebc21a61fb53c458011283b71aecb80ca72cd343ff144e2ef156535edd7d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4e250e24d7cdf6d6c7e7bb42847c12b5e23ea7e73fd6810e0ffc9ff5d2b0ae0
MD5 3d3e56f927fbee78a7d6d18b18e87fb2
BLAKE2b-256 eb9b5b5a183b0f76f11e34119af7a97982a58ae6b22382ad8b5825384af6d8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b735a9ee28e22d5ed5e797fb50e3420bfcd7e5da7d69f6100864fde342b47d19
MD5 8f934fdcd7208672230e187ca2340284
BLAKE2b-256 5c2a7d04f5d772d6114b6b82036418ead1e26c8b79036bde03c03d2b5059afa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7da4767a00c316005fe1ac3a484aa3814213d285fdbac4e6cb411ccf124eda32
MD5 99a32ad0cc5634901f85f3377714aa86
BLAKE2b-256 7dab8b65192b4e7db52a1227addf925a722e0300a828a0c9605f040372d89248

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 42.5 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 8d2ac61db25c87f10609110bd657add4c40f903ae61caff845ebc172a1ee565a
MD5 ce2067778a3c605df0bbb1f589ae0a25
BLAKE2b-256 fec7a7b0cb0d514b553a0476aa35bed82e09d29adcdb6c596fab558d9c2953b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 47.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 636e0119352b16e514bc08dd259ea8656fd6c8433ba03a6a64197d119731273b
MD5 bad3e4daebe2587be2227167d83e5cd6
BLAKE2b-256 92689aadec563792791039547b008e7f08e751325717a92d84e634f8c293577c

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 44.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 06f8acd70cdd9414cc0c3b58b862f69140eefca8b047801465cb15925e01ce84
MD5 1383e17a8d69f43c44f6f1f87ab3bd06
BLAKE2b-256 40a4da26039290121bdf15eefd5f56f08a27cb6ce306c083dca1b3abbf247281

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 afa4766a6736991f63f9c5d338f3ae5b720c0081fae6a7cf4ebd291d4572eda8
MD5 8e78ac275116922124f605ac0ffbd6d4
BLAKE2b-256 b2a635898788f10603c55058d3bdafefed32426dccd00f931c168621dc0f89c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 81ef30fe6ac3dac4febe45fd4fee122f30a9dbcf01c36896fa4b0c876d9de1cc
MD5 1af7fa2d7fd403055cf2da3fda8df869
BLAKE2b-256 207d7e8fa80ea1eebf1e090bc7cedb12c80a117e16c8e7628385ec7659f28e36

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 20c60d098075ff76493e1e439858d713d429143b47472349ea8d36d3a76fef45
MD5 2499165654639626edb6382ae2cc4f64
BLAKE2b-256 ae71c93c1f00f93e25a7b274c44aad577d765a18c58f1c706d836a72659ade8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34cf2c9c71a4e3a9ad7ae81e6a6924577e093ed48eecd14b1ad007867644c44f
MD5 ec16c6b8d3946017e4536be4555e4aeb
BLAKE2b-256 1aac4fa769979027f45bd1e407e1a94cec274b41bd8d8253492587b7d9ee7af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4b22eb2dec66d745171197085f154c61702f7d23b12825ef20b848647f80f776
MD5 d0ee79e1822af87e632fcd6e04904e1e
BLAKE2b-256 b3bf2807d20c1e50467895287c910a80ab07fdd5b25bfa05cb0536bc8e23fe79

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fb253d32f23b995c4c94569e772e1997860ee538f27e73d0693293cf510b34f1
MD5 1e0d8dbccb3a48c78e114f5fc262ae39
BLAKE2b-256 e9ea4d91a3b040e379cf0a1e683b26388a5cc4eccea5319e3ec6cfc0480190ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c22b2f10a9097c7f1b09860687f24492f51d82d0c21c9c5e2dd976b74922a645
MD5 8784957c6de9ed674664a73f123dd602
BLAKE2b-256 59841e3db1a176a4d1befb58040c9c9bf7cabdfaf59b641d3764a1903b71bf0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c513f7ed80f8e3ff3f0738d6aa77f7d24cb994b7165e6d957f6f1521e8500f63
MD5 d956e329d4c943f85d717c8a566cba0c
BLAKE2b-256 0097f5fcad5410074dd196a58661255df60c6934f31c406b605b5d0facaf494f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d18c969a0f034bdc8bb188f854c27c107dd5f5432768c3215a3c41879d3ac64a
MD5 f0278825eb534dd6dec119d12ce4461a
BLAKE2b-256 5880f950a229e963e6421de3be5d55d1a2ee428eace218451934b6f431bae8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 517c283cf00c7cd52748809be137d349033ed5eb467a391f1c576b3e3e300bc7
MD5 261b046b5498f3f669399cbe34858afe
BLAKE2b-256 b179de3701a2aec6e845360135609bb64d9706b9694d524a99356c902f252927

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f426d3524db641bf9762356f81bf9fadb8710f7d8d9749a299709fd11150a80f
MD5 91393bfbfc873017e9536a5c21277880
BLAKE2b-256 53317c33ff99ac8be724824d9bc93547b087af8d369fe8c366acefce98642e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 42.6 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 464b26cb11241ad8ff1639b3257a020e7c62f4e489bc4381c70b39af406993f9
MD5 8dcaaaadf5fb57bbd2da40e2ebd2e9c1
BLAKE2b-256 182160b1316f96c7091b848d3b986b05eecbea8fecf9e5f268aa3fa87eb22517

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-win_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 47.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 381ddb7c21fb6e2b28f1117f269ae0d4466dd7ad568d4640da226f4015e35f02
MD5 3d7dded626c96ce92fd19ab4ba1fbf74
BLAKE2b-256 0eb7f95a1ccd53e69d69d58d7f847a07da165d800ddc5b82d07adea29b517281

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 44.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22b1eab2d2601bc11fff94107b7aad7952510c7a053412c08147f18ad6474863
MD5 a3635277f1c79f2f854d65083a733b75
BLAKE2b-256 cbc6f1febb450ad6464d924abe8bdd5b7593cbbdae01006d67bb5ea36fdb98e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f019f3911942eabc2b632b62d9ff536fc84c5d533d5e211d2ddf15ce060fd99
MD5 391e3d3ceb4f6319f9ed9ac11f2c95f2
BLAKE2b-256 3c67a5d85fc1c00ba3367f84ea12ce561bd83cbc3a62a85b18326f49b1469038

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2de3fc29bd119eee1d17a180cac018ac78ac564b069751e320450a0808073d11
MD5 ecab742eacec7f16ad131fd2ce53de66
BLAKE2b-256 95b917ac312937c64f46f3a5722e08d6a026e588dc2069e70d648828e88c2ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b0149a3d47137973e5e8e58fde1129473b7c44a33819d091a8b615cb81f7a8f
MD5 a109f013eea841fdbc8cea8fa58c91f9
BLAKE2b-256 9e4e76215e7a30771eaa1761237230270cbe365e373b049b827f5e6f04922c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c8902c6eb57a988127a5300a522ff22798121db4ccb27a7b0f37eea21879907
MD5 9b73fe9fa660a304b42d7a0f2f7c85e0
BLAKE2b-256 c1f85fe42c74cfe42f32170b83ceac99dfef76f2afaeeae1746a48f83cd52d8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55b3677c8d0c4ff586133944c078cdc9bb7b511c3566f52087731da307046a40
MD5 8425bd1e840cf57b5343685e26cb85cf
BLAKE2b-256 fa474de5ed23f088957d063c1ab94df11ad24ea977416dcde370a5046d27cabe

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 25ad51f53ca94e42800fff4e2ad57c6390a42685b08d6d8b7e769a4dfda68c04
MD5 a5515dc430e67e3806b65235562c4720
BLAKE2b-256 8be8c9a3535d4099ffe41df0efa06a98608d47f9e518ff6de3cc5029c9bfb44a

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 855855a9f013be020dd273bcdfe996c52c9be06adfbba368972d5811a9e7e314
MD5 1ca8bed770792961d8189fbe35f41434
BLAKE2b-256 72dce94deab85fb885b439d0752b275548f8e19d8e487f409c8415e2003c0087

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4b276337a20c823874dbd35c7c0d1233fa116aa1d438c5d839f0755db5c6afb
MD5 734e5441dfdbce980c43004d6256f764
BLAKE2b-256 3ed861596180eba1526f94bfa0a432b77d8ddd17fb5ed16b97c6e351cf54d64d

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2b1aadc8aee7b2ea141e14c4af4917dde5ecbbe9d0f101226fb85ac708d70c4
MD5 62c8e457425e42f53ccf0e17293bb538
BLAKE2b-256 6b9776eca07befb51e0a3d03b719b01084f21d609806cbf1111d430e21dcebf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5467951afa963a9e7ca01a8798dfc24c5ebd5e614a4fbe88c1ec8ec2c8fe82e9
MD5 c17d5da95acf8e39fab5b4ad13251b99
BLAKE2b-256 0954a460e5cb4c4dbe1bcf1061b427beebf7ee66ebf01d317ef38aea37337975

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2220b168bd37bbabecdcac24956e91a337e115d0e1c30c946fc6d069884c9942
MD5 48c950c3e8795c90acd90681cf3b82e6
BLAKE2b-256 7bf24dadf6d6d5d2cf0dc7dc60524cefcc4b05b9e8b217743a890be0cfbb3ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 48.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d1f36673e21144cf5cd6350ba20945a3c9f07ab23fd3d46bf5055b72f8fd7a80
MD5 2f09f0f1256f519963cf1b7c3c4f97e7
BLAKE2b-256 ac04ed115844e8a76ec155a74fa10bfb1907e8d2762a522ca4772a2112c19f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-win_amd64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: neologdn-0.5.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 45.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c2084a2204b033bdbcd7a73357512be5507ac00e86052e40cfd8cbc112542f87
MD5 48b1a9b4a60f9273fb3980ca01554789
BLAKE2b-256 f532798a0e715290cc99179c07d60c09424c32fca54a7eef73e024b2fd9e9123

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-win32.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4ee89e069aede55d536ff5cb9626b23106bb3bc7013e334304db4948d76dcdd
MD5 e1f124f8a01d513ee14cb66e17c1c1b2
BLAKE2b-256 7ae2984c809dd24fedeba91412cb024717d43d3465929518b051368407609929

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9287a53ab72e5e1442f12fa54228ec6f1c54fadbc48eb614177e8867ed105bbd
MD5 858f4af00047676da827d1f140204489
BLAKE2b-256 45d6210a7fca0b65bc4b9de294f22d26d2f6f3dd552cd0f3551f29a5c42a53df

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-musllinux_1_2_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ab85e0333537d5c5252d08bdca10b5aa784e88ca310f974a3b090ecd20cd9b88
MD5 861fdf46c2fb6195930397ee837ddbce
BLAKE2b-256 3b761e11a00e56cf1fbe0cb81ded600ad8d474a93bb778646104dcaf89961229

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b0673fd72a77602fe6d93f4e8e7c269302777f1d8bfd295c161ebc3552b2c52
MD5 a9eb7b965f5333159574a0bb8dec2389
BLAKE2b-256 dce88473d5eaeb5083887dd891af654312d958349635f987d8491c8e0388c102

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4236559212a39a668ddead7f05df1b0723c7b4c6d3b8b1c1f3e4d06bcf7f88d1
MD5 6107df4e107b1b3779feb2c3332b214d
BLAKE2b-256 839052077ef2a8184b048d843fb12578a78f7b67b25e18bcd00d47d2f46759a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0cadc4325d1bef4a2824feef3852db7c801cefe2e5958ad15bd395534eb1a0bf
MD5 2a39d338554495c07be8bf884a479985
BLAKE2b-256 cbd25781d4ac91f723ef49e2116744b1e1765219f9167526df792f8f4c838a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-manylinux_2_24_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e8103d5817cfcfd75e64492be97f05f9ee5083686fa0fbf3cb34f256320ebada
MD5 fb0cd10c119e4d6af3d4d2e29ebc99cd
BLAKE2b-256 0f80bb39238af4b7fa070fd3a6d9911df7f1aa44421f4dbe1995f2c321518666

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 744d53e818bee90facde1c34b8b3c8aea54ad619870735e2023b8b99a770e66b
MD5 57e38df396159f45af289bc8b7a8774e
BLAKE2b-256 a541a3e2632c56821c428351f09626198ab00bbdd33838a1fe458d587702b61d

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4092075ae9d8b1f5dfa708748b28529754d076a37f99f76f6e039016d2a02565
MD5 c21ae5cc819bacc2b92bbd2a0d757f01
BLAKE2b-256 6cdf7a63e4c76844059d0b697ed804b53725f46c003895cc67e2d3ce774eac92

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6adbc4cdb28a504321ff47b77270a69da555edfd06998bc221898df908d88ce7
MD5 40a447694b0f3466d5dfa8f41e2ed791
BLAKE2b-256 5616743283b7384be29973a76c93b0fdce694f3bf3a14938cdc8a911d7391e7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d34e5446d086bedcb9d45b704d2548a0e4392e8e83647e9fd307c8254c6a3d0d
MD5 c808b3335792c64bc1f87d6f0aca42ab
BLAKE2b-256 a5cd754e5d270d62fe12d54da7b96ee1b85f3dc5413ce6d1db22ddc908da73f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for neologdn-0.5.6-cp38-cp38-macosx_10_9_universal2.whl:

Publisher: release.yml on ikegami-yukino/neologdn

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.5.6 This release

112 files

0.5.5

112 files

0.5.4

15 files

0.5.3

1 file

0.5.2

8 files

0.5.1

9 files

0.4

9 files

0.3.2

1 file

0.3.1

1 file

0.3

1 file

0.2.3.1

1 file

0.2.2

1 file

0.2.1

1 file

0.2

1 file

0.1.2

1 file

0.1.1.1

1 file

0.1.1

1 file

0.1

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page