Skip to main content

A git subcommand to query and validate CODEOWNERS

Project description

git-codeowners

A git subcommand to query and validate CODEOWNERS.

List owners of files based on the CODEOWNERS file of the current repository.

> git codeowners src/main.rs
src/main.rs                              @weyland
> git codeowners `git ls-files`
.gitignore                               (unowned)
Cargo.lock                               @weyland
Cargo.toml                               @weyland
LICENSE                                  (unowned)
README.md                                @weyland
src/main.rs                              @weyland
# Oops, did the last commit add unowned files?
> git diff --name-only --diff-filter=A | git codeowners
.gitignore                               @bob
LICENSE                                  (unowned)
# I need stats about my repo
> echo `git ls-files | git codeowners | grep "(unowned)"| wc -l` out of `git ls-files | git codeowners | wc -l` files in this repository do not have a corresponding CODEOWNERS entry
2 out of 6 files in this repository do not have a CODEOWNERS entry

Installation

  • via pip: pip install git-codeowners

  • via Cargo: cargo install git-owners

    Note: The Cargo crate installs an equivalent git-owners command in addition to git-codeowners, for backwards compatibility.

Usage

  • Show owner of a file

    git codeowners some/path
    
  • Show owners for a list of files

    git codeowners some/path some/other/path
    

Each path should be relative to the git repository root. This makes it easy to combine with other git commands:

  • Show owners for every tracked file in the repository

    git ls-files | git codeowners
    
  • Show owners for files modified in last five commits

    git diff --name-only HEAD~5 HEAD | git codeowners
    
  • Congratulate the user if the current changeset does not add files without owner

    git diff --diff-filter=ACR --name-only | git codeowners && echo "Great job! No unowned files added!"
    
  • Get an overview of your CODEOWNERS coverage

    echo `git ls-files | git codeowners | grep "(unowned)"| wc -l` out of `git ls-files | git codeowners | wc -l` files in this repository do not have a CODEOWNERS entry
    

Features

  • Detects the right CODEOWNERS file of the current git repository (CODEOWNERS, docs/CODEOWNERS, or .github/CODEOWNERS)
  • Works well as a pre-commit hook. Returns a non-zero exit code if unowned files are found
  • Is composable & scripting friendly
  • Is fast & written in Rust

Issues & Contributing

If you have any questions or problems, feel free to communicate using Github Issues.

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

git_codeowners-1.1.2.tar.gz (12.4 kB view details)

Uploaded Source

Built Distributions

git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

git_codeowners-1.1.2-cp312-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86-64

git_codeowners-1.1.2-cp312-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.12 Windows x86

git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

git_codeowners-1.1.2-cp312-cp312-macosx_11_0_arm64.whl (819.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

git_codeowners-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl (848.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

git_codeowners-1.1.2-cp311-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

git_codeowners-1.1.2-cp311-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.11 Windows x86

git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

git_codeowners-1.1.2-cp311-cp311-macosx_11_0_arm64.whl (819.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

git_codeowners-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl (848.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

git_codeowners-1.1.2-cp310-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

git_codeowners-1.1.2-cp310-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.10 Windows x86

git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

git_codeowners-1.1.2-cp310-cp310-macosx_11_0_arm64.whl (819.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

git_codeowners-1.1.2-cp39-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

git_codeowners-1.1.2-cp39-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.9 Windows x86

git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

git_codeowners-1.1.2-cp39-cp39-macosx_11_0_arm64.whl (819.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

git_codeowners-1.1.2-cp38-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

git_codeowners-1.1.2-cp38-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.8 Windows x86

git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (949.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_i686.whl (950.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (885.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (927.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (918.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (975.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (890.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (917.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

Details for the file git_codeowners-1.1.2.tar.gz.

File metadata

  • Download URL: git_codeowners-1.1.2.tar.gz
  • Upload date:
  • Size: 12.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for git_codeowners-1.1.2.tar.gz
Algorithm Hash digest
SHA256 abcb7957599f179703d1663b064bbe33311b947cdc3193698501ffa04dbe6ac6
MD5 a47bbb357d8e0f98b0f8f3dba329e801
BLAKE2b-256 5802a5b5d726318e4b268c64f4b856ec701466f155dd47c571e6cd990e922d0b

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51a34cb9892b3dc803e93e56ca9d6402fa34be482cec99567de08cd2bc2433de
MD5 8128b020cb14c8dcb32bb80bc83f9c9d
BLAKE2b-256 26cf4ec8f2c14e81c38ac1f2f6001fe12ec03e39217e137daaa47cb0f15ef4ea

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 645b04b9a11e07179e78d9b355e1f75160b8a5d3219ceb9a9aa542b9185d4d84
MD5 e3bf31d497ccaa1d4965ea4269cbc470
BLAKE2b-256 1298845d777ee9950cfdb873a057b423eb44e202c6ffb4ef58f36c4f0be3e305

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ae97ec091fe325b4cd8345dfc8cc3bf69340ea2d9acd9eddb6af957988df1622
MD5 cb0f92f04d33194efa30d818a90209c9
BLAKE2b-256 dba8ce11f80df9528395046ddc2ba48c27bbfddd58f4d547aa14b3332041c36e

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55bcdd2b940f67a2baf4a404a51a8c35babd510a76eae6430f88bb0aed90a09a
MD5 f933a2cc1bffbc9e6165bafc60c05aab
BLAKE2b-256 bef524ae9ba984e655462a7a48c4c2118eded80156b7b4c480e05ee849c21fb5

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 292134c33cb5a451889de56732de80fa8b4cf40b2b2a9c4242bba8eddcaab6c0
MD5 bedf432d4f38c72dd34b4a5199208344
BLAKE2b-256 28ff10bedaae143441f9176e21fa355d63a9bf618f217d1a0524d81ebf2a4f17

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09ad461f92f1c64bdf1c0729cd5a6f9e9c1bfd174b853b55be0efb1f923937f7
MD5 0dcbacb8b54c87686d52f76b3216a3c9
BLAKE2b-256 615cf496e6426c8b2368add0f9931348e966ca566aad490e493626f939ed69ad

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6549d81bc2c269f8afc84fb622027e321f6847bdde6a0694a8dd07af3548557
MD5 42b7008dad1a09b1e684715d4b8dccad
BLAKE2b-256 228a70bb88b2ec61df69f1aa97f3642320339ebb7b7fed9e50ed04f8a7d91c04

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06fdbc993f6c563837075533177e07e50958077ff086a4ec854230989d30ed4d
MD5 79dc2497e7a942d23aab64ae4c96eacd
BLAKE2b-256 4a78fb0f581ae154fb07ec598626c29be885b84ffd5ca0568595c0fa9f9afee4

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04c8afb044d20da681d45f00876e9aaadf31ec64ed58b511b11e69663c281abf
MD5 07c32ce1bcfddf6147850c23bdacc3fc
BLAKE2b-256 e13fa50c4544e5d79ce68d4bc2648b9a282bbb5888559713d138fb0445e3acc4

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0caa2d808b1d3d1339ca82b82f99533cd5c4905a85644d5704ef8e57fc7be15
MD5 736519a9ca8c7d387074ef53640af285
BLAKE2b-256 3377c14f8c4bf66cf87071131439c6ab994a1c007bad92446f41c56f71c03ea7

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78ae906fd88ed34d4a162683fbccc509c68d1e2adde849dfe568675099c3bedf
MD5 82871ca94b9cd0ae5e718ff0b0a53c5b
BLAKE2b-256 f343f02a5d6e21316a988e37bd0cf0680b1e4df4615af304d48a97e1c253cc77

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f12b51ea13db5f5a71fd310392d9fb7ad47730557b75de7776cd1d972aa5de3c
MD5 d1d04384c89c6222b10e35cb148fc49f
BLAKE2b-256 00d6ebba673a9f000a17f79d422e819f427ae3d659cd4f676779e5829dc4b0ea

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72ffb9fbc61f2ca37539fa194430c317d1f09a1f0bd7613e5640644c4b7de61a
MD5 800d72cddd39c03ebee33f89036977dc
BLAKE2b-256 ac803c64e7a39271758f5873dab541173cef491ff2fd7286a983aaebd3851a25

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cc6159247f980f9cc83fd3e0330f541b364c83903822543a9da809f02e413ac
MD5 76255afd414d223cbaad5e2de44ad7c8
BLAKE2b-256 659b0789b5160bd7cb542967b231f49a1a340496297a4883b10732ae95fe7a89

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b20ff7b1fe2ca21a15a07986e16314b7a1eeb93eb55b1c77fe962b7ec76f860
MD5 4f05f06e710bbbc04b53953d7144e0fd
BLAKE2b-256 3dc72843da329f6d83662d29deaebe349e107899fe407f4dca5ff32e91502cad

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61aec1d123dd17c6da3f199020d780e23b2b9de1941519d42d6040d25dbb6aa5
MD5 c846b367aca9cf1a1aba8de65e4e0510
BLAKE2b-256 f4737b9602e14757cfaeb4eb5cdffc801b475e55ced0f6913c5814a5c92763ae

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5799a6e858879338bf5b10f870ed21c2ea85609f24e0e35bca82ecf7a70fbd92
MD5 1d83e555cf7a08b0a309dba63e984e09
BLAKE2b-256 1b4aab0200719ac8f5822cfa0a28513c4da098f2f3957c96ac9591c86aa8825b

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91165213b873387c25c1ee6ec17e3d0a6f1a560650090b87ac27be635e8c0cb8
MD5 5b0faec28b44ee4aa96ab00cc02a6fec
BLAKE2b-256 3d9751c42d6f4ec8ead10a601415d2fc45606b5e8d2354530d67913ece21b625

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9656231072de5712d2dff5b553c970ccce26ee8561ce143d075429288204eaf0
MD5 e3bb7236b2617852f2de064a376b1bf1
BLAKE2b-256 1b36af09076e237c298f9ebef67dc90cc7597fff49e03ab2ae06d4a47e9b472c

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0f0d87af1dbed21c6a4d39dcbbdf58541c1bec2cff013ca7d154cc83e06eaaa
MD5 0628ecbadfb764f674585eceb7b82741
BLAKE2b-256 dfb7162c01922e9bb3086f4351bdbca3fb45ba603b3ed697949238dea975d7ac

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bbffa88a780a34738614cf9c7f927345339b1c8a52026ba9a334aee8b4eebc4
MD5 0ed1fa863d5a0f7f52de3a07dc4835a0
BLAKE2b-256 3563579a2301e16b0e5ff0b4b3e0e3c4b1270d0d35a2c51d1714f7e74b618a5e

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ac9128a772e4ddee750bb575a5a9df853a0f3830ca3c2e9e44a8a6c7bb85e734
MD5 9e021014802e23be917aaec6ea0d991d
BLAKE2b-256 fdb5bb5c9d0621868491ce1be655386f1701ad2f7fc2171c8c2bc2df2ad35782

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a5b52fa5d108e89fdb53f04c8b1dbeeb261da73faf852c3fb983464f47ee53b2
MD5 632d44fbdc4d36347f7f9c335c8a907c
BLAKE2b-256 67c8b7b6713b6c57154a760b6d65633d09f76a12e7bff887e977a1bb9a804905

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea7a036109c82ce74127f2e12c2330d6b0e02bf44806087cafeaebcff7d429f7
MD5 fc32db6869be5fa0a61007171a961450
BLAKE2b-256 fcb87d525035d4e91ff8dea6e20e38f58108a651133e91f5be1b660be1d4a8d9

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b61e66eeff3623baf78ff1e336f1c3dfa2d3eb78285fb320bfb40790bce1f41b
MD5 b42d8f5733dc88f99a390e9f4b247a45
BLAKE2b-256 1a2837bdcda7b70a352ba08347544906b9f4f3a61b407568133960113140c3dd

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc9eda68959d53deef09d531617444e661ab3fe2a7a62d52b791e7fa9f0955e3
MD5 738449608670a8a90d08f6094668c946
BLAKE2b-256 279e0197a727b6d7dc03f84efdb45862299bf52f617896367e2d45a7aced37b0

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68ffa6c27b62c2b23ecf8c584336a4c0269d7dde553ba9a137ba770490d27050
MD5 0cd922f0dc687bc9262bbf693af666c3
BLAKE2b-256 1dead310166386169b625d7374caa2b40c9e3536d50dc5bf104a11756b1f6e9e

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03b726dd53c3ef21622e09cd0f6cbb2c6eb20fe474ca6aaa99d1d1b5ec9a560c
MD5 bcab55e64e574471e3436791c05eca5f
BLAKE2b-256 0401dee8113d28e86b2d1150d824195d434e52a8830d4bae5394f91fe948691b

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 66b51bd0e1ddb465b175aedaf2865a936327d44dbd64409886ee119d882f59ce
MD5 8e06e327f7d53f6e6003df51818184c5
BLAKE2b-256 9cabac3df02462a75877c1d7563cc5b90fc8110f408f2f092e3664a77f5acc3c

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-none-win32.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 752e2bb68aacf0932e5ac45344b497c8cb88b5cf8103a68f4bf8ce83a9c98319
MD5 a90e7d693b2ed01aa22282fcce1a47c5
BLAKE2b-256 2beead79f239e6b7d6c73accadaf45e53ad072d47df9bfab35977e45253251dc

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0019862dbc8bcaf897b82e70ee0b9a6c28bdeb8ee692a0653c343ae9bd810f2
MD5 8682c696451cdf275e7a6d386f20542d
BLAKE2b-256 36da09dd607d94d7d3aaf2263e27f0f5cedd5914effeaace38f422a580524d1d

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8bc987cb33860e214fbd68ca0b6e2b21f3c93b02dd6ef717ecfb57c443548a5
MD5 28eb665bf49f7b938499dab1d220864f
BLAKE2b-256 b4980e66dbc9d2d348943060c09d685c83e008ad4fb3d5c6e503384f8add1566

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d394c25d320f4a756cb8ecc1dae1477549d25ca86de1d65771c16d76c66ad619
MD5 68e367008a803f4168222b275e941b89
BLAKE2b-256 5c53c3191af2f69c000547f584d052ee687ee8c8b1b659d98f1c9a73bc9a5ae9

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfbdb600b796502c17bac2035c556e054088cafae68e247c9f19301151ea18c6
MD5 48b32ad5f8e6f3255064e43cc36b727d
BLAKE2b-256 88664580139e939ac11053e4e0d71c9ac0b996479b5367e115c827d4b65d89d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbd4bcc4892cc06be56232d605ddd9c63aa6bf9007ff6b9b3ec8214f4dca8b1a
MD5 3493e0318d01481b5dc0a746cafb4662
BLAKE2b-256 7fa8cb2a3547cf81a02dbc59578c7adc2f25f36b7718ef685de8d610757aeb97

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 993240d6fcd78af6e40cef33f56ceef607f0bed1e7c903e5e3824d03df911b0d
MD5 7f8ec230a4a2a749f7d450d4bbb9e85c
BLAKE2b-256 6aec4a7a6471301aa249011c5a6ff636ac00e9c0620188cb28f242b3195eacb1

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 206c586205e47c9d596831007e1688086a4d7bfbfb905190db4fd138cfa3da96
MD5 24c52a3e38cfe5ad42c1492e549b25dc
BLAKE2b-256 630bd602c38792ebdca62e1f485d1297b9995bcba0cd2a1cec1473df3412e320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c1f54601b6873058d08b55b6e2ff486ae31dcb7c63551aa56c29d9bf0da98483
MD5 8f83d657daa074dc3a40e6c5f91e8b54
BLAKE2b-256 19b08622a1d54d19b6a094f6acb3c23b90f15dbba71e3d4044110a942aa77e56

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6972bfe8da6cf67b61802604918a673ec5dc83a1f754e205c71ac88c593ed16c
MD5 1216f293777006a3a60de5d4cad82b52
BLAKE2b-256 b4aa0b13975c3264e2ad5c9818ee52119dc8f4d5c69d052befc0ec9ac91443ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97d853ef822a67ce3c6563cc513f9eea3e64c19b0e23a7dc34384a62624f53c3
MD5 957d30edab34d75cd14d1d2529287cff
BLAKE2b-256 4810095e4cd82db098fd83d30a38dcc4cb2a182e17671ad9e71f7382ed481ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0583076eb135151970139c3bd68da8d1993199bf1c8f5c279859090b8df79a0a
MD5 9c3c89bdee9e71f89162f6b9b647c769
BLAKE2b-256 1e9f45bcbf67af1f219ba1dfa3678122f92488db03fb45bd0252b4e99c16335d

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f5f3c724ee80952a7d71b5add92504474a808c375e6c1cef767178957a5a917
MD5 a85a04657341765e8cf5558add581007
BLAKE2b-256 62ebb1ba04ea79e9003cb867a82905426a1fa8cf010d356d19b3548a0d72bf7f

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2158df2c570ca0422be3a94f8e2786bb7f56f8f7d9d2a2f6661fcf0a03132163
MD5 acae17ec80682dbffc1d2bd5c4fad2c7
BLAKE2b-256 146cec4e7e59f78700f5498fb8244a41c67099f037f6eaa89506a2b978b0f33a

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-none-win32.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 68fc8619bd8ffab625b611cba9854e911276f57f76cc974ab9cea2d7283c8917
MD5 7cb0b2d8c6e53cb0ef6d3f1d742217f5
BLAKE2b-256 673e25007a7af90fbac923352ce7c520905c936f2afbb97ab05a7f3b460d3800

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 792be8dbcc45f59ee65188bfe2ff29afc8b60576065200940d706a9b386d89ae
MD5 4f31fe1696fe3b61087a881bba66dc65
BLAKE2b-256 741cf3681cecfd940448c4862b8da863efc586bc56f1a40c2ae530a4bc9b0f3b

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a261e2f651f6b3aeece58d628c592e4f663958f1303318aed0779b5042004d6f
MD5 cd3aab6b99edb977f44f19e1d48361c0
BLAKE2b-256 b16e472c4263835d4dae2265066dd710aea9876844586c74919896705ac4504e

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d5e357d942f945c24282c68360c0447192e25ce891c96c8585db7469e8751ad7
MD5 8089663194de3cb15448ae553c903dcd
BLAKE2b-256 c68988e4f9c6216ec6b79ac848248c1f6e4f389f658e0b719fb858875f7f6bbc

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa598fceb206319333d4f46206bdb113ee97387f86d4fd45b74cb72e1c088f42
MD5 6d99b17dd423535a585cd14c1381a9e7
BLAKE2b-256 f4c347e1e04143fdd2d04342a22c612ae7e7962edac2ed9e883a684e3694b079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a024bc9fb7a44235fc8e07cb94e902208301584c189a764d0703020bbfd6fe2
MD5 878fa9b1cf92dff17a3e8e287f26f92e
BLAKE2b-256 7cb2d3f700cf3ed21f8f4237ac279cf8d27bb5db273af05858b871a2ceb39c4d

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86346efc7421e80f75d1cd976d3078ad398fcee049eb005cdd5fedf98943994d
MD5 273d655ef0f4de5aa49b6ca90e68969c
BLAKE2b-256 89a35edb654aab0f1562ff1bd138b9ca734b455e01eeee688bd6768c9b712ce8

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab6c563c1687d9e97b894bcc429e49e83e67c012e3c7c04e5440ffbe9b0a9059
MD5 9e08a4c6ee09233da795fc6c29906b17
BLAKE2b-256 1cbfe32786e31edabc5555a53910e67432b8348ddf9743047af607b936744fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf2bd96cd86a409733055f418189f8513631e7b10a2cc2a918170d9efb3a3c47
MD5 ffd370e1c58b421cb1b3ec2e44449d10
BLAKE2b-256 a01924ce436db1ecad1650ec1a655f0097b981a2b24632e527fdb07c243c412a

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 64f4ed92e0d59884a39185b4164b18e34920a756fe80911059dffb3e67026b91
MD5 5005e27c9eb557ab51df20989f8e9743
BLAKE2b-256 142c60cfa791446ccc64c1439cf2b829dc1cfe79e43f014875773c50f141ee7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47f14e3b7aa56d10bbc756ebf4654fb935a3c28396185fd99a5ada89fedbbe1c
MD5 43b272997d05bf4c129b0c31d545f3a1
BLAKE2b-256 5d5c1d3c4261ec6a1eb026417e3bd9246077e67291381398bca73642c5ad5e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 615a09087b937e6f68a16cfffd5591d21fbce5a7c0516c0305920a01a69cf375
MD5 bb3502d58678ff970b5b55dafec8f5c8
BLAKE2b-256 f806a174a97ddc076521a60923c81c2c015b6d39c88e01a9db4bb9aabd771bd9

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f63204d4fedfa7fa77bc32cf63771ca609fb155b50eb1ccaaad7c0e52f73391e
MD5 45865ccbada7c00097ebe207b7269548
BLAKE2b-256 025dfbbe60f2fda9e7ddd1fc8bdb31ad24391836772ae12bbb244b7ed5a13812

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 398799abfbd5dd96b4acd7ba2d86b5860a7d008253389f90e526443b80ec68c5
MD5 a65a5faa479b9b3d7aba457c140549dc
BLAKE2b-256 009ff981ee6e66b424b35fe0cf4c405ca338d752ab548ef2d08f04c8c93623f1

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-none-win32.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5fa71c791a8b1358978d7d4f4cca3f1f1e8ba95ccce7155d83e01ac8ecf0a7d9
MD5 b5d7b0f0dc108a73849b5671f65e0bcd
BLAKE2b-256 21324ad9924450fd179bbbf88cd004b7c6b639477dceeac91014aee401e703db

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd6a8143c35b323cfcd49fb5337a9f28ede604e16d4d4561fae2a8eaf7b4a666
MD5 d2a0db1937d8cf8a5f11c9297bcb22d7
BLAKE2b-256 578000600651567c05de4ae58f1ced5330b50e3f2a2a89ee445b9b9280ed8a92

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad40c8f431af2133481fd528bb3308b554f37c19dd644448a6912508a7ddcd12
MD5 08183b3b60ff9a95caf7ca231785b8f1
BLAKE2b-256 3d327536ad1257edf9a92bfe27e24de61abae1fd5759eaa95f9aac3a7e4a1f60

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d348c38e77bd6c1b99185edae64cde3c3354320caff28553c9996d07939416d
MD5 27c76a87c741d52a5ebc826a12cc7d37
BLAKE2b-256 f2114e359ecf17c610243f3a51d3c8c7a9a016f5e26117e96d9dbf7d23f2ddae

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4d5978d5efa65762c47289023ea1028d736a160dd432e3dbdb04108f3ef62465
MD5 7fa5e34c73dc8a29b6cf283dc47f382d
BLAKE2b-256 98f0d06ee9379d5c1a91fdc4715bd90cdabc3834405d2e50bb37fdef810a9f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 724f119a2685339911aeaf3aa6dbd687911b751282d1a8733e05f093f9a78b23
MD5 e1058f3ea9c6bb7a51b474183553c4c3
BLAKE2b-256 6ff33a7d2bcb5210765f7241c23048d82dad8baf2d804bddae2a893c6a655c45

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 769abe400e6961ac10d26cac91fb59909a47f78d963614daf2ed35e5fc14099a
MD5 424280b626a74395b635f9e68ec02735
BLAKE2b-256 0bb5187b3dc14b91a3b4b574a9ad5d94b8b961be17a1c4e451c33e23a6e160d7

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97672c5de81ccb251cf0c75690ce6ce3a0c7dc43db3fd957d4025c986af818b1
MD5 47797d9083415586211d6ea356cdec6f
BLAKE2b-256 19b730317a16f3292672bba79d25a9c2641d4f7f8c2b7b3b1ba699d3e9e80caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6764414e10f997a429ddc7b5921fb22d5ef3112b452f4e1c7f4709da596351bd
MD5 cc882fe80969d12e75c1687d5360dfe0
BLAKE2b-256 ef7cc751f39f9130718caac0299bb4ecba343b9b4575fe78e29786c8b7fd4a64

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d013f8168b9199ae15d8d9a8180b90ac846d6a2147a307e2072295842b536b0
MD5 3ca88c5789370129ac7d3d6caaff7792
BLAKE2b-256 8454bd383997c2e2c61c161def6da02deb14c7957922e240c6de7468a26c4e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6df8184ad3be977515b92506197ef317fe4758db9ab891614d63fdc67eb12dca
MD5 be8f948b330784fc27eb5fd8e48c0a57
BLAKE2b-256 4c09dcbde37567ab2f4631e3b6eb337b5ddbd70e31151ba2da1fa63abcf041cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6b70b26fd7f5eb0e6f0aaeb34184ea61a104db52ed61cef303aa91279d18998
MD5 154ae9f5f4c6d243c97a87d315b57dae
BLAKE2b-256 9be4e8081472f114565140c3e9b0038878087e5d0061d70aa5fcc51e618f8182

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 250110c1b92ec0d341132935f321aa965b3414664c2f2732df8801ffde2d2f7b
MD5 71da0abda220b39d5d1f54965610f2ac
BLAKE2b-256 982a4214d0df561ab760593aa7ffaf4f2a4f19ab2418a962ddbb9ecc358161b3

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-none-win32.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 58d383573cc752bd0c9ecfb47291fc5b7777de9522a334db192d262d4048b929
MD5 2c547c9eb77a2712dffde819c3222a25
BLAKE2b-256 289ec487579f9e3ad7f3d43cde7fb459a1d3f917411385770d6694114d7c6de4

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 316439d69b534fc35c27b4a78c37806ee3cd91d0a684fc21be12d97224748a6d
MD5 ad3cc19413e3ac7016288cc4478d39a3
BLAKE2b-256 7b9e08e3d5ea82df045e13e746bcf6e2145366a22bb654b310142a27803f88a6

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bee17bc1753a4f849701c403cee65b347ba7d7bf51e0cee29c50bb570ee1e96e
MD5 6cf5edc1391859bcb686ac7314b97440
BLAKE2b-256 f4ee8c140a6f7bda6a17ceeacfda78fa2c0560b564f30027cc3e1e257369ed79

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 440c9f37c2c144a52e1c02bf438a1aa740dc72f18875ca734aac54eb15660511
MD5 ae502231708b61858943e40c9539c3c2
BLAKE2b-256 d1ebf853f1bd42246cf5b7ee16490b5b61b6ee75c83cc1b81772958a850f293b

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 22c9a47fd8e7984356edd90b517739436aa337925647c31fad042481e8fbd6d8
MD5 5e6074fcf3850eaaedf3e12e89a67277
BLAKE2b-256 e3f19f3996dc4febd70150bf17d1813f22698f5c2f71a8240ed29275a387e42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84e726505ba6aa494aa04064b83982d16d2fae7a2d9722fc60ec6c0a94b40ad3
MD5 d8558b135a608bf7de250ec0c04f39f2
BLAKE2b-256 d83e067dc1565b12a52d9ffb17b4df2b72856b31daa30b7b7814db5862a785c0

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 614a9b2c190abc48f8be124b946591984339d0da91d87e19bee91520cbcafc81
MD5 8967823ee6a7c833913d8ecdd994c9c2
BLAKE2b-256 d44618cbae4e1e5e1e81050fc9c83f7c7f468bfa8581821fd9c0883de48b18a7

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe3b5aac13a829e41f24b5faf5476d6b055168f015d152835773597f699c9f90
MD5 6f3a829439b367ddf86c03c7f4461ebb
BLAKE2b-256 ac5f09a3f3b5c0c20e54ea346b59ef6802874600a84061226bfa7553a1776c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fbdaa6aa8a94043f9f250c6f20d342c81f0dff4271848d06152a8a7973e6c60a
MD5 e77c4797967c325141d83f114eaed954
BLAKE2b-256 561c576014d4cd77e287a91cb1cd76362b3605600f813f88afb527516361a1fb

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 689ab948e8fb872e4865c70d9bd5b943db6b4b7e240dd0c95a3cc814135331fc
MD5 b7a8c9e77582382bd98fbbbf7078ea4c
BLAKE2b-256 228fa52e218837292bef0d29b9d8ba4e3b3dab9cd811c64e46121db4f8f0646e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b675ddc7342e063668006d1861ba31fafd26400b0e27c196026c51150436d572
MD5 62c0f5954b0f765556b721eaaf834758
BLAKE2b-256 d4da8ca365bf03b746cfe18f25bf6aa9180436af54baf11e68edcd0f387ce287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08d7b2120f2096b14c4d4fa009999f7280a2a22c14ae02844481e1f6e7ca16d9
MD5 5d2ef10a15a593469d9ef92dc7b23088
BLAKE2b-256 47cb0eec20f88ad45b95551c3c30bb5e335209d69aec782d2331946f3b9d4801

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6f8849b20235f6e133e3fb14f3b97bc71668a1b4f70c6eeb4aee7427728be0b7
MD5 fe8e41cc142c703f3529f9c27f6e3e49
BLAKE2b-256 df241a7b980310a43c7ec98bbd08b72e4eb2329213bd6675eab4ccba5ebe634c

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-none-win32.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 099508486cbedf064447e653ebf70e86a1911e2b53dea1d2ee927e25c5b0c5a0
MD5 db5721c53ddb8c9e1abbb64139f96921
BLAKE2b-256 c9761b40dd889c859b67ca090ab255cbe2b879a1096073ef4d07c774b067c72c

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00903a72ba7af9c130073790c670698a2931d5149e2d36d1ba0a30dafa761aa3
MD5 968028325c4e2a574231a26c34e7bd1f
BLAKE2b-256 3d5b58a4f6922d9e971c4ded1e04765c29c1dd7d441e2e4f840f4d3398b8bea7

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80ae0f815d934b06dcdbb220961d47218224341c16c29a54e2f793e9881ce2e0
MD5 05419df866c287732087fb6315b0c48c
BLAKE2b-256 f42f3cf9c226d75dd124703fc2fadd0e544ce7348ebe97c962b5a3d07be78b65

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f77bcfbbc21d41e6cab54cb54481fb4d4898f538a35e55060d4b719ae95724ff
MD5 02863b58d9a020b727bc112215a9651f
BLAKE2b-256 4be93c2a4507695c48eef081b946addc80f8517ccb8165bbee0329de73184f17

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14542688b8adcac34cd3274536a33feca8dab54c588ac19a70497daf4d2dccc1
MD5 75d81e833b07a53a503b179434f002aa
BLAKE2b-256 d3cbbdac0fa02b60aa6d2bd53d0a065cab1575e2de205debdbdf5ba976ee8148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77573cd91f374a9bee47aa5916d7bebfca17c86b1639183eceb20906552965f9
MD5 655f57eb4bd8d0816c4ce40867381116
BLAKE2b-256 7bd0b336965a50a54154fb972ad97f7dbd9b445eb4c98ed6d59fb680db17f5ca

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 50af31e75abb7b1d73c816a3ad96a7fff67a48ba89d5b8b772b96421301e4bdd
MD5 a37e362394fcc99f426adf7e9adcc87d
BLAKE2b-256 46caae41d2052190ba08914f864ec2caadd26420cac4026bb535ca9f44ed97f8

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcb1ea314646e2c028b20b1080b80b313048ab945fb597b6b04efa7a3039e45e
MD5 5c8ffb6286cde93a38a1dad97fcff969
BLAKE2b-256 754883fc4064ab4e59fc2f8032b9f6b60da9d7b2bac8c6952ee22476ae775c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9251128783d48918a0384e3a36efe497f9f1019436f26d143e8096385affaa03
MD5 7c55b9b70fe7949411bf74420315495d
BLAKE2b-256 530caf03c17e902306dc281d9846a9e2f1b79e3e79485915ecbff529669e4616

See more details on using hashes here.

File details

Details for the file git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6120511c9f59754916cd85c120abee7778ff46429c94fa3484ba302006c659a0
MD5 c909caba37e3118f76631db86b06d11e
BLAKE2b-256 fda431c859ae7f83dc44dafd0f8f4358731b6b6893868253e1afa8d3f9688fd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for git_codeowners-1.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3e6b2bb3852169c729f46356b16a1d46b1d19b51cf9f3b4d13e9536f655063c
MD5 093222b250a42af954e7bf590854b2c0
BLAKE2b-256 9573411db42cbd6905d63848f9e5e9e90fdb2c79dad22bc439451e23005e99dc

See more details on using hashes here.

Supported by

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