Skip to main content

Binary to Gray code conversion package for efficient data encoding.

Project description

grikod3 (Grikod, Gri Kod, Gray Code, GrayCode): binary ↔ grikod


grikod3 logo

DOI

WorkflowHub DOI

Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge Open Source AGPL-3.0-or-later License

Python CI codecov Documentation Status Binder PyPI version PyPI Downloads Linted with Ruff


PyPI PyPI version
Conda conda-forge version
DOI DOI
License: AGPL-3.0-or-later License


A Python library for converting binary numbers to Gray Code with ease.


Tanım (Türkçe)

Gri Kod: grikod3 İkili sayıları Gri Koda çevirir.

Description (English)

Gri Kod: grikod3 converts binary numbers to Gray Code.


Kurulum (Türkçe) / Installation (English)

Python ile Kurulum / Install with pip, conda, mamba

pip install grikod3 -U
python -m pip install -U grikod3
conda install bilgi::grikod3 -y
mamba install bilgi::grikod3 -y
- pip uninstall grikod3 -y
+ pip install -U grikod3
+ python -m pip install -U grikod3

PyPI

Test Kurulumu / Test Installation

pip install -i https://test.pypi.org/simple/ grikod3 -U

Github Master Kurulumu / GitHub Master Installation

Terminal:

pip install git+https://github.com/WhiteSymmetry/grikod3.git

Jupyter Lab, Notebook, Visual Studio Code:

!pip install git+https://github.com/WhiteSymmetry/grikod3.git
# or
%pip install git+https://github.com/WhiteSymmetry/grikod3.git

Kullanım (Türkçe) / Usage (English)

import grikod3
grikod3.__version__
import grikod3
grikod3.ikili_2_gri_kod("1010")
import grikod3

def main():
    # Binary numbers: ikili sayılar
    binary_numbers = ["0", "1", "10", "11", "100", "101", "1111"]

    for binary in binary_numbers:
        try:
            gray_code = grikod3.ikili_2_gri_kod(binary)
            print(f"Binary: İkili: {binary} -> Gri Kod: {gray_code}")
        except grikod3.InvalidBinaryError as e:
            print(f"İkili: {binary} -> Hata: {e}")

if __name__ == "__main__":
    main()
Binary: İkili: 0 -> Gri Kod: 0
Binary: İkili: 1 -> Gri Kod: 1
Binary: İkili: 10 -> Gri Kod: 11
Binary: İkili: 11 -> Gri Kod: 10
Binary: İkili: 100 -> Gri Kod: 110
Binary: İkili: 101 -> Gri Kod: 111
Binary: İkili: 1111 -> Gri Kod: 1000


#Input: 100
#Output example
#000:000
#001:001
#010:011
#011:010
#100:110
#101:111
#110:101
#111:100
import grikod3

def main():
    print("🌟 Gri Kod Dönüştürücü - grikod3 Paketi ile")
    print("Geçerli bir ikili sayı girin (örneğin: 1101)")
    print("Çıkmak için 'q' yazın.\n")

    while True:
        user_input = input("İkili sayı: ").strip()

        if user_input.lower() == 'q':
            print("👋 Çıkılıyor. İyi günler!")
            break

        try:
            gray_code = grikod3.ikili_2_gri_kod(user_input)
            print(f"✅ Gri Kod: {gray_code}\n")
        except grikod3.InvalidBinaryError as e:
            print(f"❌ Giriş Hatası: {e}\n")
        except Exception as e:
            print(f"⚠️ Beklenmeyen hata: {e}\n")

if __name__ == "__main__":
    main()
import grikod3

if __name__ == "__main__":
    print("🚀 grikod3 Etkileşimli Moduna Hoş Geldiniz!")
    grikod3.run_interactive_converter()

Development

# Clone the repository
git clone https://github.com/WhiteSymmetry/grikod3.git
cd grikod3

# Install in development mode
python -m pip install -ve . # Install package in development mode

# Run tests
pytest

Notebook, Jupyterlab, Colab, Visual Studio Code
!python -m pip install git+https://github.com/WhiteSymmetry/grikod3.git

Citation

If this library was useful to you in your research, please cite us. Following the GitHub citation standards, here is the recommended citation.

BibTeX

APA

Keçeci, M. (2025). grikod3 [Data set]. WorkflowHub. https://doi.org/10.48546/workflowhub.datafile.13.1

Keçeci, M. (2025). grikod3. GitHub, PYPI, Anaconda, Zenodo. https://doi.org/10.5281/zenodo.15352206

Chicago

Keçeci, Mehmet. grikod3 [Data set]. WorkflowHub. https://doi.org/10.48546/workflowhub.datafile.13.1

Keçeci, Mehmet. "grikod3". Zenodo, 06 Mayıs 2025. https://doi.org/10.5281/zenodo.15352206

Lisans (Türkçe) / License (English)

This project is licensed under the AGPL-3.0-or-later License.

FOSSA Status

Pixi:

Pixi

pixi init grikod3

cd grikod3

pixi workspace channel add https://repo.prefix.dev/bilgi --prepend

✔ Added https://repo.prefix.dev/bilgi

pixi add grikod3

✔ Added grikod3 >=0.1.0,<2

pixi install

pixi shell

pixi run python -c "import grikod3; print(grikod3.version)"

Çıktı: 0.1.0

pixi remove grikod3

conda install -c https://prefix.dev/bilgi grikod3

pixi run python -c "import grikod3; print(grikod3.version)"

Çıktı: 0.1.0

pixi run pip list | grep grikod3

grikod3 0.1.0

pixi run pip show grikod3

Name: grikod3

Version: 0.1.0

Summary: Converts binary numbers to Gray Code. grikod3 (Gray Code, Grey Code)

Home-page: https://github.com/WhiteSymmetry/grikod3

Author: Mehmet Keçeci

Author-email: Mehmet Keçeci <...>

License: AGPL-3.0-or-later License

Copyright (c) 2025 Mehmet Keçeci

Project details


Download files

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

Source Distribution

grikod3-0.1.4.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

grikod3-0.1.4-cp315-cp315-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.15Windows x86-64

grikod3-0.1.4-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

grikod3-0.1.4-cp315-cp315-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

grikod3-0.1.4-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

grikod3-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

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

grikod3-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

grikod3-0.1.4-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

grikod3-0.1.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

grikod3-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

grikod3-0.1.4-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

grikod3-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

grikod3-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

grikod3-0.1.4-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

grikod3-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

grikod3-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

Details for the file grikod3-0.1.4.tar.gz.

File metadata

  • Download URL: grikod3-0.1.4.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grikod3-0.1.4.tar.gz
Algorithm Hash digest
SHA256 e07c365d7a57925919ec86c7b4611846fc1e35d52b7178ca891b0af9d6221c38
MD5 676223436296362809641383d7d9abae
BLAKE2b-256 d771bd0067f15f0017ee51dd45dbad323420f9af09a92eb95c71b0096ce1ce40

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4.tar.gz:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.4-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grikod3-0.1.4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 c2cf01d5ec4ad84c3f543d77f6bdad75a180aab6d88f2606b5e349932da21c97
MD5 90456b9bb27f0fca6277e9f4e3a8ba70
BLAKE2b-256 f47aadac0a1a31fded4ec20c8a708236c100e7a911388136a846f72e41694edd

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp315-cp315-win_amd64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7658eee49ebb210a68162901d77ab0d2317ab3565c24bc1debc840c144e5a2cd
MD5 f1bf525f54815740d6702a98f4f705ce
BLAKE2b-256 3097d6426a2a1187738f119464208b260bb94d93869ab8d5d3a4347fa6457e7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cd80eaf83026cd52488c0d00fc4745151f1420e5a102fb0e745372793e9bfab
MD5 06cd217ed26ec65ba4c082dd7f3835ae
BLAKE2b-256 095ebe65316458bb997e863d822ae5cc17080a91c32facb63966b1d12022970f

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grikod3-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d6c883851f27b25f08fe10f7fc0bf8aa1404557bcec9c38498864350377d2dd4
MD5 1bdcffe6483deac88d20c0ad4b219ba3
BLAKE2b-256 04cea1ff1e313d7e5d5688c7bf97598b0178f17df6087cacd58e3cf0602400a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp314-cp314-win_amd64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b08844d5ecf3ba22a5302afd309b528d11b9365128c7b349b9fdb3c08dcc093f
MD5 e4fc7edbf040688984e7078af2986d58
BLAKE2b-256 9d36d3b4a7e1c75a108f203b84b9cabafae0bd778acf54bca4dee33ebe5ff71f

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4efd57fc6936266ee06ee87290ae24e11158e2debd7e0d009a1d3147b011fa09
MD5 546b46f725e46355a81995d06db9350d
BLAKE2b-256 2ac4c19a13567111a7e8662bd734c834308014659f95bc2bf4a28da1fd9bb630

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grikod3-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 77096d0bf78a90a98e8df6f3e098f5d864ad86fa73f87a2cd14a857144b13290
MD5 16ce597dfdf1899ac7b8b1e53ee5bdd6
BLAKE2b-256 b9d046f9377a9e6267d246d5449860f891d8976ae6a06a5d961a8ecc9cb423b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp313-cp313-win_amd64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c3bc2b788d140abc935bc9099407b48aa567686ad3a5973a8619956d1633e3b
MD5 7b054ad968d88832ee7ae54600bccc94
BLAKE2b-256 2025d8715ba4aac5f8dae1b2381192a7297e0bb4af04d515ab8f0301fc4b71b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e3b8882ccb637677007072b68445508ecde147b6e7b8125418680dea2250dd5
MD5 0bb6b2237cdeb267338c08c571fd1d4e
BLAKE2b-256 2aef4cb6cd51b776b6b073f61ea2b77ebe9fc131b74516d6a6a89c5eb44404c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grikod3-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79d7d497f697014e97d96b3bb8513aa281b0992954da0260c278c4d8c62fcc2a
MD5 2c4a4e956e14784166ed94db77f9cd99
BLAKE2b-256 773e186455cecdaab2df9c94a26f5641b2269f54a6474588419983ced89d5003

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp312-cp312-win_amd64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7b99b300af844028b1ce947440ed1c24a6698ae7d6ecd1f5a069b534392975
MD5 8c1b6fe3b58c078a5b92e2fea8fb64ad
BLAKE2b-256 6d1e916399016397810dfe44eeb5dc02ced43da4c8bc888a5641d93ef685ce9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e251518a90608e621ab628933585ce821cb4de689ab94e6834091681210a5b43
MD5 5dc209d1135785516088a597b4257523
BLAKE2b-256 7dc31bb5934ca8b2340bd9db64b6b2e2f31c8f56f128018c295659f1f13f4927

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for grikod3-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e40e8a25372bbdf40919a58d4af98a4ad3052b79d5480c8fde54a026b0192d63
MD5 14bf11a0998424a5a47972f4283d95ff
BLAKE2b-256 cefdfc4a17da38756cdd58e14a01ac7bc68b736e29e7f0591ae9320696a9c1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp311-cp311-win_amd64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cc1bac72c76a09f0f907baf6d5a8a968c721b9102a0e57475951af83deeeec6
MD5 328b12705012cebb4b8c9dd5355b7841
BLAKE2b-256 56c1df26c0c9e774bada6bb008b15fb5e72e7b86612dbc88b40a143b6eb93ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

File details

Details for the file grikod3-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31b8d3891e20b4948edd82e35e096bbd9e6c6fb6b0596ff973af0fbc34ea3902
MD5 3234b3537bdc8f2bac71a35888c0cb9d
BLAKE2b-256 83b2875e655ada4b8e3cd51f0de2a3f42232212eb44cfe54cd66472dccd6d2b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: workflow.yml on WhiteSymmetry/grikod3

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

Supported by

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