Skip to main content

A python binding for codespan-reporting

Project description

codespan-reporting-py

A python binding for codespan-reporting

PyPI - Python Version pypi PyPI - Downloads LICENSE
ruff Gitmoji

Installation

pip install codespan-reporting

Usage

import textwrap

from codespan_reporting._core import (
    Config,
    Diagnostic,
    Label,
    SimpleFiles,
    StandardStream,
    emit,
)

files = SimpleFiles()

file_id = files.add(
    "FizzBuzz.fun",
    textwrap.dedent(
        """\
            module FizzBuzz where

            fizz₁ : Nat → String
            fizz₁ num = case (mod num 5) (mod num 3) of
                0 0 => "FizzBuzz"
                0 _ => "Fizz"
                _ 0 => "Buzz"
                _ _ => num

            fizz₂ : Nat → String
            fizz₂ num =
                case (mod num 5) (mod num 3) of
                    0 0 => "FizzBuzz"
                    0 _ => "Fizz"
                    _ 0 => "Buzz"
                    _ _ => num
        """,
    ),
)

diagnostic = Diagnostic.error(
    "E0308",
    "`case` clauses have incompatible types",
    [
        Label.primary(file_id, 328, 331, "expected `String`, found `Nat`"),
        Label.secondary(file_id, 211, 331, "`case` clauses have incompatible types"),
        Label.secondary(file_id, 258, 268, "this is found to be of type `String`"),
        Label.secondary(file_id, 284, 290, "this is found to be of type `String`"),
        Label.secondary(file_id, 306, 312, "this is found to be of type `String`"),
        Label.secondary(file_id, 186, 192, "expected type `String` found here"),
    ],
    [
        textwrap.dedent(
            """\
            expected type `String`
                found type `Nat`
        """,
        )
    ],
)

writer = StandardStream.Stderr
config = Config()
emit(writer, config, files, diagnostic)

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

codespan_reporting-0.1.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distributions

codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

codespan_reporting-0.1.0-cp312-none-win_amd64.whl (188.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

codespan_reporting-0.1.0-cp312-none-win32.whl (178.8 kB view details)

Uploaded CPython 3.12 Windows x86

codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

codespan_reporting-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (324.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

codespan_reporting-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (325.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

codespan_reporting-0.1.0-cp311-none-win_amd64.whl (187.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

codespan_reporting-0.1.0-cp311-none-win32.whl (179.4 kB view details)

Uploaded CPython 3.11 Windows x86

codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

codespan_reporting-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (325.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

codespan_reporting-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (326.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

codespan_reporting-0.1.0-cp310-none-win_amd64.whl (187.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

codespan_reporting-0.1.0-cp310-none-win32.whl (179.4 kB view details)

Uploaded CPython 3.10 Windows x86

codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

codespan_reporting-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (325.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

codespan_reporting-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (308.9 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

codespan_reporting-0.1.0-cp39-none-win_amd64.whl (188.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

codespan_reporting-0.1.0-cp39-none-win32.whl (179.5 kB view details)

Uploaded CPython 3.9 Windows x86

codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

codespan_reporting-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (304.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

codespan_reporting-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl (327.2 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

codespan_reporting-0.1.0-cp38-none-win_amd64.whl (187.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

codespan_reporting-0.1.0-cp38-none-win32.whl (179.5 kB view details)

Uploaded CPython 3.8 Windows x86

codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

codespan_reporting-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

codespan_reporting-0.1.0-cp38-cp38-macosx_11_0_arm64.whl (325.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

codespan_reporting-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl (308.5 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file codespan_reporting-0.1.0.tar.gz.

File metadata

  • Download URL: codespan_reporting-0.1.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for codespan_reporting-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b31cb9f0deb215a7030ca0b74604e4bd54a94151a8c6518ad4c1222d252ec042
MD5 8d77274bab61e87cf26dac5435f90cf5
BLAKE2b-256 752b25db76f69ff04c0702ff6530432b7683d9801e102190b24cc9ae88a12b92

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d94a14a140637cabbed5c4c8046cd6a48a93ea986561232631933d462690739
MD5 ce2ce55aef543677c46a5a107ef71e97
BLAKE2b-256 4497b6c5a782ff4a77b70ee2f49ef5d01614e8c28f79582673744bd8b2585cde

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b82fc36b9c0a9af4e7acdc2edc7a822f275e14ed5d4da500401882949f0357e
MD5 6236e7fa4d3be281d1b537bd0509a817
BLAKE2b-256 135eb53b6c77811442e8289c5703a2bb7a7f8114e28f78ef115c9ba288da2ec2

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3877e55ca53288986326f55d1a5a1feda52621be9efac8f936cf82d63f28e644
MD5 35679219affa39709d779f94ec3332e6
BLAKE2b-256 72d82ba08d9b88cb39984a978a3aa806f7d90268f7d5fa16389f57171c220ec6

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6797447e219405ee2879c32108e678609bcf4bfc9e02a503e4d13ea77668dcf2
MD5 45697a3ab93670fd087f8d4ab4648844
BLAKE2b-256 8402cd85df85559c55380056dd790b2f1aeed581c3cf9e62fd4f69e505768b94

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7675f36f661ccb2ddc2b337f48998184eeb18f45760036d431393b7e4b2d9e88
MD5 5d4624e70f84558d2bda15e6adca596c
BLAKE2b-256 13b09c80e26a61811463b512a6a2564d87b4b321620a799b3156fff726d7b7cc

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d5ebc0bdca61e02d2838e1118501ff334500df58ba2a54ac9f79b1299769313
MD5 eafe7a469fbf36f0caac74367d7ce3a1
BLAKE2b-256 998e38f4ed7786c21a3ede3fe0d2529cae34b9e714a9d1ca7ae30108f354e077

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46f7cc8b290893dc7a8db303befce837fa9959a35321c8b9fe8024aab678e096
MD5 a73f984ae35b146bdb41718d9ff535de
BLAKE2b-256 980a7c4376ed2969be59113c7854dada54d645172e3f41ebaf17367d6506a9be

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa299bf9a7b93379f1864283adedaa747ca7d471f99154a130037612580c4bec
MD5 a68b1c09ec3e9ffc4311514d021cb5a9
BLAKE2b-256 60b32d60106c5c3ef09ab369c54086075960f59cc3698b690bc537a52cf75a14

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86e79c03c2dbd170de853d78e48fc2c4b178c4a71e06f2495e4b45bc1ae77a42
MD5 4fc9f53092f370ee37ae0b9ea0aeb2c0
BLAKE2b-256 c4599270f279397b7361831db4255070e85f1fcbd983591e708ca06ec45bd13e

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37b81e0f0b671ac9e030f152b1b3ed3db329857715491bef4b3ba95fee173805
MD5 9d724ed902efe4530541cfdfefc92190
BLAKE2b-256 622398470b1d5875326c2e2663bb54ada81f55c32042f6158227e33fa7ab89cf

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d6b17e3bb8bac19852aa2bec008c77c63b7b83154c22f8ce93404edfbc20645
MD5 0786549c5f5acb041c303d16e8c5f7d3
BLAKE2b-256 55daf3fb9f871718b81fc15dd6fd1cd56a7b2ddce52e263ca55fec86d9caf0fc

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5643b39b97d74b0494b4c8a4917df2663300cf0e2a4c1ecbbb2f72a8681d715
MD5 7a9045ff1701427e255f9f684604289e
BLAKE2b-256 39a3f565cdde91de7064befb84b3a5d0e9f12d7ab9e73d794f8d31e4842901f2

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7daf4bb238855b329cbada7c66a8a1f3ccd15986f3c56eb834c830541f5cb390
MD5 86e658467812e8a1221cc68ec5511d79
BLAKE2b-256 e42ece9bc85a8e7fd71d3f071d582d6c1a4f5da3af6dc92a60eda559b5548a0b

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e612677a7f2ca29a9f2ca2224fe2b56f151715ab1c36fc2db5f6b6e57da11983
MD5 a7f2f144a32d3e1a473cd5592fb9791a
BLAKE2b-256 1980592f157695f5910af213e44239b74b98ffe4fc70543bfa1bdb30f235fc59

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d4079d5f65a445a3b1031b768418309e76590691bb8c8830df089c7f217a1b8
MD5 406a66a4f6aa1a7e4caf6c73b7e55958
BLAKE2b-256 b983a2ff18c9841617e48015de0e62e68bc0fed22f59935f05d0f14385441efa

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afc0a7d476046cff1d2c30ed7ee8195da073316a39b1204bfa67c42b06823c66
MD5 bbbd9f78ef634730ca29bc141588366f
BLAKE2b-256 a5b0cea89f4b8378dc4b87426f368dee5f324822079acba350e9a1e91b2e50b9

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46bd947a04632a503ef6c5578324d74d6884495d6a148d7f7344d045324447d6
MD5 08da58a0cec42e1b90913ac5e8b3fbf4
BLAKE2b-256 fb4701da7ad880b5acf38486f7bfb296fa60852415dcb50ee376a5fbe46894ce

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4284909b0ac8bc61bf37d786948729b65e4f82eb1b509a65592d73acec1e92f6
MD5 ae760efb5797a949d1fa65a7f30cf986
BLAKE2b-256 a3269447c53b46e837be926e128213021167b0bb90b9a03b132d1e16b9b12105

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcd65d762a5750b4affcf6c03af7a02dd94b4b147f5bdb37f827e956c9651fb8
MD5 716daf8eb6a4e12a7b23001456456345
BLAKE2b-256 9962ac982da6219a8287874eb6c2e57add715d92c81e4c0ad037c36e89200316

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a324afd06e3a5f276b8796b8a5ee5e663637012ac3c3cfc912b37856547299e3
MD5 46dcc8b723a3eec3b8ce155de6896f58
BLAKE2b-256 e7e3944c9b7a71e8a8ac9e2efb0654ba4a1c4917eab09ea26829c3a0a464c606

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8278c724b988d02912997464d53f5a0499706dd82f30112b4c477337f0ef17de
MD5 ba393d4671094c640466ce52d0149d8b
BLAKE2b-256 b235d305e3ec5b75719484b6dc677e8012ba58eb5b99294d922d6583f8f901a0

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26c7dceb2cbfa08e614b51586d4e5ad7f61ec49155ad38c74c4507d561c590a2
MD5 96c07849d59eb19e455699f136a663f7
BLAKE2b-256 cce294e026a5dd9dc6fcda56e8d2a621067113e9162e698d9c0da35737beadc7

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3b5718873baee2ad4256728c5422a59c1af5ab6c7d432a03aa19f58c11184db3
MD5 a193d15055e5175806901fbd2f86193d
BLAKE2b-256 afe5a36db2bad68be8eb3bff6eec30e770e48306a5ac781f3414a3c223589ba3

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f202d860d7bb790cd950ba8bab4cc4e76d92ad86f883ce421436b5f2b9fd3f70
MD5 e3e04efa74db47b731ef644500552af2
BLAKE2b-256 a71fd14dba3bd3fd82b4013322e94142e1d0452c9283a6d2ca0a0d9fd5f2fd6e

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 944c9b1e2ec764c87633bcc43efb975c7f5f12d79a870acf447e76add207d02d
MD5 93679b3e39796974cb08d90fbd914aa5
BLAKE2b-256 e10111e24c54f8c7d0c56dedb996292cc90f9a1add7a58d49acc75ac4ea9668a

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08fd28ff448c503bdfa1498526864880e3e4780e30b7efc3cae6984b450c0c6e
MD5 306cf78b1ece8de9f0d15ab8a8e1f7b9
BLAKE2b-256 42ca548e45e44839b520642073a8af55643facc00841bb2ccbeca911e8db5ec1

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86cfe15c7017c1814d1372a04b33a7f0d7874c9fe8d54610f889e9f4c79f8440
MD5 3a137bc3c4017a74aee694b19b727897
BLAKE2b-256 89339f052d13af4631b2012a11515a111bafe30ad06b75a6374a4874b2b679d2

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f1703c70280cc0dd3564a70fba64098c8845acac65d32ed09a9229df505c30f
MD5 416f1abfec56c1df5f16211b811a6eff
BLAKE2b-256 8b08d1e2d4b4718e9d14258b7e668148cb7309a968ba4ff13b3affae0c2eea19

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fa531701c50e79a0e61c1cc3d3dd0200b1a773e524a54a6b0da50123770d79a
MD5 57b06c8f1979e55e4086aea1be67f782
BLAKE2b-256 3092ec900968fcdf94f1d866866028e5e172e2482c73affcb728529c9e06836a

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c7a51428dd48c0507e84a842bb8fe55c6f62f72958d65f337259336c5c6b9dfd
MD5 3a30a9f9b7148584ef87de3917deeae2
BLAKE2b-256 606f703d7c4c3ba77c4ebd65c7601f2a5add19f3ff06fd15dda1126432e0382a

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d199a12a9fde6b485bb3fb312058e879a40c575608043caa91b96e788749b0be
MD5 e8047d1590375e2e2f32d8c1166fe813
BLAKE2b-256 8b0a7d72163e76a3aed1c6a5c431b10c44b8b9b9b4a49daf676d0fcaed166781

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 452460a4e98f75f3e1457d0ad55c77e4872ce770afcaa9ab0620f8cddff869cc
MD5 7f679f1fbd8c2bd67adc6a00bc7f2694
BLAKE2b-256 4caaa16e836d488e8c28eae9973ef29f41639084a2af5c9860dac1c5cbf28002

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2ac710cf6726048444650aa2a73c36f167732c99df82484704c32d3f1f629a1e
MD5 521c2914d0ac23bc12c5b383696e4ed7
BLAKE2b-256 bd2a3537d25bef6b515816ee4c52aa9cd19377466786d19d82a325ade45089f1

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 554006e406d71ecb72174d41a51b5a5f4efcd04aa2fce417492e48f4fe82b696
MD5 94b0d4c5b16d22fd2aa5597da85a2af1
BLAKE2b-256 82720dc3a34470900caa5297d9c3edd3e1867f04ca4783d4d477503ee760249d

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c0d771c4bd062f82342283dbd96b3b02c6aab3180a15a1c3fa45c01ae0e991d
MD5 20eb5b1c224125f33ff8bf4c41cdabfe
BLAKE2b-256 88f69ae5cf6a1b790737712786bf0ebbcfd6faae96d63789192524bb73c4d1d3

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1415900aa031f4293082e83cc1ac226a13538580cb47b34e087e773eac380dd
MD5 a69f428518bbeb2ce77b46e440c806cd
BLAKE2b-256 6d4f4f81e46da1e6fbe64a2f9b1715de2f8ee6566b99cbeb1af8a2bfebe4f26a

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05a617e82cfc79ec26406c46437d73b16cda0d39b6994ae4244edf5d2e18e661
MD5 ed8745c88497ffb498ef1d7a5dd74de3
BLAKE2b-256 3a4abfe5d592e308980266ab448b96003b004d1f6d3751d3b32e3afe551a8d52

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 594f308731efb23f48b9b8d8b419aac7a2eb42fcd061a5505462090bd0d2a97b
MD5 cc82c018a6af1681a9d9af05280fd58f
BLAKE2b-256 7797f0c0213710b287bcaf33eccf02d8a7aad0e3391e5d26090dc97431b2a462

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b8aa52bb527aeba786423b050808cbb0b7ab016794986171748b11ba721e29e
MD5 6c9c3692bca91a4b95cb09f0d13c60a4
BLAKE2b-256 914b3afdf60d1e039c8e384c6914978723c0f8aa0fa13be8269e4dbd03a58d17

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d8fa85e994ac9442abd021f0faaed0a59e43065e3cd6f4f841152c590c22763
MD5 0b733144490512d608de580cebab2f28
BLAKE2b-256 a428a4e03f4f8e17e89654c2c4e32dc46cb56efbcf499978aae48109006e3989

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca54653028454c37e2390b16908657174c32e3ffdcda13197ceafd7bb798dac1
MD5 f07ca24a8ca781a61a15ac1617c3285e
BLAKE2b-256 d4cf18137380c0b98ba3d1c5b2b56667cf27187d845112b3a21bbf8ea0963573

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae627270d583c3c85a9095e9d78543ec9ab0839548ddfc1a2ee8b48faa3192c2
MD5 db3f99bf804db79bc86c3a57df5745bf
BLAKE2b-256 fccc8769f9452b0ca59d11f55950dd7b86e2c43b69c9be8513e2a9d285a0fa59

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5ba1d752ef7e233fce8e47968f5cb62b53325f790192ce7ab713dae127e0ebd2
MD5 43f4c1651ad7f242249c0ab8db9cfe53
BLAKE2b-256 f09c6b565ae124494c285601aa1a7b65a29d94eefcc74c71c94f15af4aabb863

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5adbe97daa63b65e4e3843b03d7fb1a248a102de0e57704e824b2f7018769a62
MD5 605d594ea5da049be05474813b7e3ce5
BLAKE2b-256 064eee3c236a08f48c76330b8e6e337ddd1e33f5d469cc2a6aa94383c99df548

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 054254fe2dea8f0bc536b1734000405ca9364fb50cad76821898b86499f13759
MD5 e537af36588129b7fc049840c496c47b
BLAKE2b-256 40dd5182fc779e5e277776b1f569aa031a910fc914faf90258e2fe411914bcd6

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3d1efbcedc87c57024dc5e6f59e43d0d9faf41f2faa444184e3ddab18d7d5bb
MD5 df6d263c8b745b92d265f37cb1feacff
BLAKE2b-256 39c3c79b49664988a63998b8c54142fae7eb3a9651e5801c6f8608bf6f731a19

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59592922b2d5e5a573dca7ef3f497ad1d3255392aad28dfe325276cbe9c978d3
MD5 89d885a813473e00431d72719492dd19
BLAKE2b-256 93dad466831171c876a07acbfc8948a3ddf44a55e5be09cf477e32812835067f

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9605965ae040b7c254c58fb9c865245c49318c8cfacfbcb94d71635bd43f42d7
MD5 3377022ff66a03f576caf3cb183ecdce
BLAKE2b-256 e6e408ee55dcf6c8ad262bceae3279620ef44adfd1ca29b8df4276b940412e3f

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c5d85fac3a9aabcd7aa10a9cea5cd26b20cd1bb9df5c3fbc23f16d13d9f7586
MD5 213f8c3e74fe75e88f610ceb01fe59a7
BLAKE2b-256 fb85ab98e1f2d3ae234312bfb0a0bc9582b16116a90cec6dc021d1eaf6d87b80

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b8f5af6c0f3b67e5c2fa03a0e42aabc78d7541fa6d62e559f8e7f26301fba1b
MD5 8e567ffe621eff3ad696b963a53057aa
BLAKE2b-256 45091fa99e8377ec99c4e61a6613b991b98af8436256719a8e7e737795179a6f

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64ced087a79efcede5863239a87e3a5ce88a956b1db021a62dd35e41b952c714
MD5 d567c5f950db0aeec158924ff5aa9add
BLAKE2b-256 fa22b5be222b098900a6bcb7f631fd57bc0310fce547a8a7c9d94272a823b46e

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca9b2c340993df0546282955d5b9513de301d25faf142832e71f049d1425b6bb
MD5 7e4e629e12fe15d4b39cb4cd7702938d
BLAKE2b-256 cfca07ec84a5dc2cce55cdbbeb1bac9766d67ea067a8c7fed35f7dd2c468776a

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 32a6b0eaf9b56c561066dccfb025dc4809c709a7efd64990eb2b24c10f761076
MD5 1003536808de53f2763c5b4218b301d0
BLAKE2b-256 9c432980a847a21d4ae3f42281c09291fccfd5de11fdc7aca0d2e5ccdfc75742

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1353c8664b268e0e686c2c2b6388ceb2ff0c0eac29dc0bf8954c463f64ac59b8
MD5 654bf8482fbe58dfc470fa44aac93f9b
BLAKE2b-256 372cfe0fa4433f0b220202cdb19a9a4e472fee404337f24db8259c08f771c06a

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe0738fae5c18fd81df719344510f316656827c2af3d763f5f5112141c0e309d
MD5 4872bd9a50db50299249a3d8a2c00e00
BLAKE2b-256 2f3386e47deeee73d71292f53e2d0ca13c82331ac750d5d7bab8a92c784ae5c9

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b721ea22ac6a9f7090f6e161d42251609cfd8caed13ddfe8aa4902c8ff7b8c41
MD5 935844debc0ab88925c4a9bd38cfcfe1
BLAKE2b-256 6659ed0b92af945f108218931f369ee790727da5e5cc272e1f91e0e2a36dc2cc

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f727d3dc2f2caa50b5a49def6c3478dcaf4beca6e1131bc21eafdadf058a92e
MD5 c5eaa2ceaa3f9e70a61288b1a3e96d6e
BLAKE2b-256 4cd401b14c052a46a7ba0409ef2ed5043c44f87e6b6167ae1cdaa1774a64c0f8

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9c78be690fc0ecfe4b445e8e74194ceeff7cffb5d41391ee702c040eac97366
MD5 6344620a85ea7db4ff2b75093448ad11
BLAKE2b-256 c8c3dcc6d37bca1b33a6a737b9eacc69e8a93a3271f93a71d6b7142ab6308aed

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 598e49979211dbd58bdf3ced2490b0ffb7ce0db33c727e80a60494dd8010b05a
MD5 a7b9780e2d98e87af94386fba1519bee
BLAKE2b-256 7080f3ac1f556b37fc1002b97cf5b6c35b183b52cd7a16197c0954d84a7b8fff

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9710a55f2c2ceb3599be1d5dfabcc6d3add048cc4dd87907de608a2d1daaf1c4
MD5 60aa19b9e3fe01e0bcbfd15ae3ebca5c
BLAKE2b-256 9f24b995897547e8c4afba0c47f165480a0bee5d8ca5fb02d5e176d22075b69c

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2252967cf5706078122f0b5ce16c204b7c68f4c9959bb9f8ca2e88cfebf97644
MD5 b794b1624d5f4ebbee0befe3b8b2ca68
BLAKE2b-256 edb8e08f65ecb1badc95c7f28726e01d0a234aa090c89c4886635460e34670c4

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58bdc4349aa79429c1d26a7df0abae25378f48145b7907f060a9540dda9470ba
MD5 88e7c999050f25b6f7053b956c9abd70
BLAKE2b-256 5e74af951a83daa5f816ea70549052113eef57e50879e8bdd361f303ae4896a2

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f05be1c31e77a8dd2cf0ce14f76bcae41b94f228dbcafe7f235bf57fa8d1534d
MD5 394679a833b356ef211e4a3cc73b5b73
BLAKE2b-256 ed4364d6578062c8a0fcac13d6144d20f5c4de7722d04d2fdbe95b547197e356

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6d6e665008b77eea41ec9226aa94affb5fb3f41cfb6e123fd0c0fa544ef59a4a
MD5 94c49b0f722734e4da8f313308385c3a
BLAKE2b-256 45c564b0a8eca8b142aeff2327a8f1ee31d29d44442bf23230d5820c56cf3055

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f35a4fd1c9733441ff447d53d8ff439c90d05793112b22edf4e5d5e86aaf23e3
MD5 0b61de491b6646b705f7fbfc7559fad4
BLAKE2b-256 81ce9c6048f63dfdda7af3258c949ee1dd92f8d6f85cfd1c5a97ae3e85546d64

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e2893e99a1c4d63784eb2432bc79e0287612789f8137ece668a9cfef711ae52
MD5 7a468b7fbed42d31341990a49b6d71f9
BLAKE2b-256 6f51f3c29ee33780b4a8b606bb350122deca9780d20b3b4f0aba5c7221a2dea1

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24a07e911094408bc86b2295b09a35e5bbf5f47f8589bc060057d11909cc9d01
MD5 930e46d0701b24b3c5c23f5637b5be4c
BLAKE2b-256 72baec9da7352f2972dfa4d823b230bc2df9f4c10925199573e4eda62da2c0d3

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e523f1dd01151024def8cf4733535a2c246fc3118583032bf7c924072401e461
MD5 b1e3ecc184e544c92c8c3bb97cb928de
BLAKE2b-256 ea5663aa921f7d2c952e42687627e0790e55df0da154c30bee0f92c0400bb357

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dac2d4f9a4ff23c76f82618d20cfd0c0de2eda9e51cce00f3ba4c64d1763cb30
MD5 fa27b454108f73be62b77385e6f505ce
BLAKE2b-256 b0c5045629a2328560718fe19898889e1b6d04e13f60e153a21e5f92e89359e7

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd7236f785cdcc2eb34010671e0a589893158575197b36c03f82dacb2c2bc543
MD5 f60ec40954bff90d9af47645df11c70c
BLAKE2b-256 20b972b8608453a273bfc1f2b970db8f7a61841947c9c118380abc8218e73957

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3def99f27bc452ec1c1246dd3fe71aee57e3a37340e8f0def07e68c8591846c0
MD5 ddcfe67c49613768db52445543f882ce
BLAKE2b-256 d5cfa7ecb7d038f1b2202c21658018f05073b73b9a277a33e4234bc3920e3e69

See more details on using hashes here.

Provenance

File details

Details for the file codespan_reporting-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for codespan_reporting-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d45cdf5706ba83d8c5fbef1eedef6e327070ed2624c1aa4209e9e1d3be7f1bf3
MD5 6342a488d0485e79c16af6b0bc40a7b3
BLAKE2b-256 eaf26141db8906356ff810b66eaf2b0c033edf4ad896bdf94743901fd3edbafc

See more details on using hashes here.

Provenance

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