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.6.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.6-cp315-cp315-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.15Windows x86-64

grikod3-0.1.6-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.6-cp315-cp315-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows x86-64

grikod3-0.1.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

grikod3-0.1.6-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

grikod3-0.1.6-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

grikod3-0.1.6-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.5 MB view details)

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

grikod3-0.1.6-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.6.tar.gz.

File metadata

  • Download URL: grikod3-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 6c7169b6a987f3e7af4bdf569a288587f2d83aeb6f83f0e080783f46f4d95844
MD5 3f401abe6d1c2c4b2ac6c052b9e856a5
BLAKE2b-256 57cf8d47916ea277ba6a71d9a2160dac488f965c87669cbbb0427b474abf3595

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6.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.6-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.6-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.6-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 3c72b949f6a898dd21b462727ad87f040eed6f0abb18e8e23f9f8f4d5d3228f7
MD5 3966098091539281cc33a479c2120ea2
BLAKE2b-256 85ad3339bded50aaf726529977ae38f804bdc106207dc45639c0b791cfd1603e

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-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.6-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3953574788e663c3e53059f9e61dc372ebba7d402ff3d00d44d2812be367b8cf
MD5 fa0f27ab55c0ce8c53352daa55e739ee
BLAKE2b-256 24d1931f1fa3d24564f14a430101ea4c41659fbb87d1b0290988c0ca27787247

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0672a6d2f5be9230cbe6749bcd39e8c9923b15db85d91df61ec045ba8b09f128
MD5 01ee6d8990c3d6363404ad4520188e41
BLAKE2b-256 cc293a1beec963d85a2da3e483456795bd3269989d46634001594b772f6bf024

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 30a6a72590e6c1229628ef33cd74bc154de3e3dd67763d0ae1c3428494a705ca
MD5 887654824be0f08d5238247f067b3bbb
BLAKE2b-256 9f4d11b5731733ae7fbe0bb5f29ccf0813e3065146531ed8ed8e846fc965c44d

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-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.6-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0176c71c1ee164060f1fe1ef50c8dfa542ecc55bbde71acc0648e9d6cf56726a
MD5 85e1798aa4aa753bd0e31f184e8568e4
BLAKE2b-256 8d0de2fbf9b6d48afaf96524e5c56b1e874cadd477df858551e4490fbbcb9742

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b510f82772a34e4407d9065d10cd11c853408a4a426a1c685f5e7c02f0a5ecae
MD5 4572cc71e32fe94a2fb9f1df89cf37d8
BLAKE2b-256 a3dc7cbfb1d64a86ef01a507cf78f4c92d4f10b116b10746f9a3510eb3c781b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc2e2cfc40eb7863e5ac79b89ca9fddd48e7b4022831638a3b3edc63bf97ee2f
MD5 b4a77158198a4772417ec358242ef104
BLAKE2b-256 adf58241c49613f97ffd5f627c4153f4881e688ee147f93ee56c4a82bd8c1899

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 047caf9b4c582597219f0da9a95d91e4b1ca92daf1935cf7f691c8eac255aeb5
MD5 d28cf0476a184420f662958dcc297ced
BLAKE2b-256 c06b6a530483749fa84f393166c389afab5ad3e6df6528bc21bb6f74ab1c6cbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-cp313-cp313-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc39c387af5eaf59bc32ec2f2f4d4d9e8f2e41a42dec7f85f1e73d74c9e83c1c
MD5 1b65a7a5a32f4af10a07ff84af5d362e
BLAKE2b-256 ef57a8e37cba49f2a11105343da11e49aaf1a0de5569484ff928fecad017a278

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ffbd3dc8b0f8eba3c16ca60b327c0e632df0a77a4cc93c96f4066a48b7a7cc70
MD5 9d0e2272476e54bf43ccf81ddbb0ef3f
BLAKE2b-256 c034208900c35705694c7241f100b17586e15d5d931ff1137f29d0702fb77f60

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c5f7e74bb6d0d11aeaecdd593ee6c55d05f22a1ed97f77789ad3f218d4315bc1
MD5 be7d8dc005c163cc4d8a3bfc61be01ac
BLAKE2b-256 230542bba82a9204fe6781ba7da3a979a466743b50dfd7691b5eca85a5439c53

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-cp312-cp312-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cad47c39fcac9c5f7110b0907f39e20f697c5e86fdab50283a1a2bfbf13ab74
MD5 8db7b96a2298dee68061ad9eef299752
BLAKE2b-256 920a3430c039d949a678f372b9252c5546c41c7bbe24c0af4e5d197c90b7020c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: grikod3-0.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 750e47fdb5faea34515a12d59acd65b948d2229c7f639ef365ede3e2cd9cf221
MD5 e68439d77e4446d08e1a4dc15b3d241a
BLAKE2b-256 25a99fb509c2a0c658842861c0098df91231fe9110127f3714376588102d3634

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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.6-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 183ecce6dd54fc0c452fef7e339b667f1d7bb6e412afa162838657f271b0930d
MD5 50149d87bf5b7217d65d10757ec7e768
BLAKE2b-256 ac9c181402e0326ef380a45b8772ec0912cf635642218320222780daf82a6b8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-cp311-cp311-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for grikod3-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4cc6a0d4ee58f416cd2da618765037c1375ce115252d04eae4295e856af4368
MD5 817888ef329586c1516b46e15039a842
BLAKE2b-256 61aeecdfbaff9a966c29c3e6aaa44de72a87480f4eb96bf99792173290383d22

See more details on using hashes here.

Provenance

The following attestation bundles were made for grikod3-0.1.6-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