Skip to main content

No project description provided

Project description

Chiquito

Chiquito is a high-level structured language for implementing zero knowledge proof applications.

Chiquito is being implemented in the DSL Working Group of PSE, Ethereum Foundation.

Image 2       Image 3

Why is chiquito different from other ZKP DSLs?

Most ZKP DSLs are based on writing constraints, witness generation and some abstraction for DRY like templates or gadgets.

Chiquito allows the developer to think in more high-level and structured abstractions that most ZKP DSLs, while not sacrificing performance.

What is the chiquito programming model?

Chiquito starts from the idea that every zero knowledge proof represents a program (the setup), which can have many computations (the trace) that is proven for a certain input, output and intermediate values (the witness).

The main structured abstraction in chiquito is the step. Any computation can be divided in individual steps. A program is represented by a circuit that has one or many step types, a particular computation is represented as a series of step instances that can have arbitrary order.

A step type contains:

  • Setup: a series of constraints or assertions that must hold for a step instance of this type to be valid.
  • Witness generation: code that for a particular input sets the values of the witness for a particular step instance.

A chiquito circuit contains a trace function that for a given input will generate the step instances in a particular order and use the step type witness generation.

Another important piece of Chiquito are the signals. They represent elements of the witness.

There are several types:

  • Internal signals: they are private for a particular step, and cannot be constraints for other steps.
  • Shared signals: they are shared by all steps in the circuit, and they can be constraints for their values on relative step instances (rotation). For example, if "a" is a shared signal, you could assert in a step type setup that a == a.rot(2) which means that a is equal to a in the next of the next step (super rotation +2).
  • Forward signals: They are like shared signals with the restriction that they can only constrain in the current and the next step instances. For example you could assert a == a.next() but you could not assert a == a.prev(). Forward signal has the advantage of allowing for witness size optimisations.
  • Fixed signals: Their values are set during setup and cannot change.

Chiquito has many more features, but these are enough to start writing basic circuits.

What proving system chiquito uses?

Currently Halo2 backend is implemented, but we are looking into implementing other backends.

Chiquito frontend comes in two flavours: rust and python, so you can write Chiquito applications in either Rust or Python. PyChiquito, and any other language interface in the future, uses ChiquitoCore for most of its work, so adding new languages is easy.

What are the features of chiquito?

  • Step-based, that abstracts out the computation that you want to prove.
  • Signals, that abstract out the data (witness) and how it is placed and handled.
  • Constraint builder, allows you to write the constraints of your application in a more readable and natural way.
  • Trace based witness generation, a way to generate the data that you are trying to prove that matches how computation is done.
  • Super circuits, that allow combining many circuits into one.
  • Lookup tables, that allow sharing data between multiple circuits.
  • Expose signals as public very easily.
  • Automatic padding.
  • Completely modular platform, that allows writing circuits in multiple languages and use different proving systems.

PLONKish-specific features:

  • Halo2 backend ready.
  • PLONKish Cell Managers. These are modular strategies to place signals in the PLONKish columns and rotations. These allows for steps to use different numbers of rows and columns, in a configurable way, so you can find the most efficient structure for your circuit.
  • PLONKish step selector builders. These are modular strategies to activate the steps in the witness.

Planned:

  • Nested steps, will allow more complex circuits and allow circuits coordination in proving systems without advice based lookup tables.
  • Gadget abstraction.
  • Arbitrary boolean assertions.

In research:

  • Signal typing system, which allows statically checking for soundness issues.
  • Folding backend with ProtoStar, HyperNova, and/or others.

Fibonnaci circuit in Chiquito's Python frontend.

But better see for yourself:

class FiboStep(StepType):
    def setup(self: FiboStep):
        self.c = self.internal("c")
        self.constr(eq(self.circuit.a + self.circuit.b, self.c))
        self.transition(eq(self.circuit.b, self.circuit.a.next()))
        self.transition(eq(self.c, self.circuit.b.next()))

    def wg(self: FiboStep, args: Tuple[int, int]):
        a_value, b_value = args
        self.assign(self.circuit.a, F(a_value))
        self.assign(self.circuit.b, F(b_value))
        self.assign(self.c, F(a_value + b_value))

class Fibonacci(Circuit):
    def setup(self: Fibonacci):
        self.a: Queriable = self.forward("a")
        self.b: Queriable = self.forward("b")

        self.fibo_step = self.step_type(FiboStep(self, "fibo_step"))

        self.pragma_num_steps(11)

    def trace(self: Fibonacci, args: Any):
        self.add(self.fibo_step, (1, 1))
        a = 1
        b = 2
        for i in range(1, 11):
            self.add(self.fibo_step, (a, b))
            prev_a = a
            a = b
            b += prev_a

fibo = Fibonacci()
fibo_witness = fibo.gen_witness(None)
fibo.halo2_mock_prover(fibo_witness)

This is explained in more detail in the tutorial, but you can see already how concise and clear it is.

Getting Started

Read the tutorial

All located in the tutorial folder.

Run the tutorial locally

Follow Part 2: Quick Start of the tutorial folder.

Writing a chiquito circuit in your project

To use chiquito in Python, just need to install it with pip:

pip install chiquito

To use chiquito in Rust (TODO)

Build from source

Chiquito is built in Rust. First install Rust. Then clone this repo and enter the repo directory.

git clone https://github.com/privacy-scaling-explorations/chiquito
cd chiquito

Then to build Python chiquito with maturin

python -m venv .env
source .env/bin/activate
pip install -r requirements.txt
maturin develop

Testing and Links

API documentation: cargo doc --no-deps --package chiquito --open

Also auto-published here for the latest commit to main: apidocs.pecadorplonkish.xyz/

Licenses

MIT OR Apache-2.0

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

chiquito-0.1.2023110800.tar.gz (682.5 kB view details)

Uploaded Source

Built Distributions

chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp312-none-win_amd64.whl (546.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

chiquito-0.1.2023110800-cp312-none-win32.whl (531.8 kB view details)

Uploaded CPython 3.12 Windows x86

chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

chiquito-0.1.2023110800-cp312-cp312-macosx_11_0_arm64.whl (711.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

chiquito-0.1.2023110800-cp312-cp312-macosx_10_12_x86_64.whl (794.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

chiquito-0.1.2023110800-cp312-cp312-macosx_10_7_x86_64.whl (747.7 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

chiquito-0.1.2023110800-cp311-none-win_amd64.whl (546.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023110800-cp311-none-win32.whl (533.3 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

chiquito-0.1.2023110800-cp311-cp311-macosx_11_0_arm64.whl (712.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023110800-cp311-cp311-macosx_10_12_x86_64.whl (793.5 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

chiquito-0.1.2023110800-cp311-cp311-macosx_10_7_x86_64.whl (748.6 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023110800-cp310-none-win_amd64.whl (546.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023110800-cp310-none-win32.whl (533.3 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

chiquito-0.1.2023110800-cp310-cp310-macosx_11_0_arm64.whl (712.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023110800-cp310-cp310-macosx_10_12_x86_64.whl (793.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

chiquito-0.1.2023110800-cp310-cp310-macosx_10_7_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023110800-cp39-none-win_amd64.whl (546.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023110800-cp39-none-win32.whl (533.3 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

chiquito-0.1.2023110800-cp39-cp39-macosx_11_0_arm64.whl (755.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

chiquito-0.1.2023110800-cp39-cp39-macosx_10_12_x86_64.whl (793.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

chiquito-0.1.2023110800-cp38-none-win_amd64.whl (546.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023110800-cp38-none-win32.whl (533.2 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

chiquito-0.1.2023110800-cp37-none-win_amd64.whl (546.6 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023110800-cp37-none-win32.whl (533.3 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

File details

Details for the file chiquito-0.1.2023110800.tar.gz.

File metadata

  • Download URL: chiquito-0.1.2023110800.tar.gz
  • Upload date:
  • Size: 682.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.1

File hashes

Hashes for chiquito-0.1.2023110800.tar.gz
Algorithm Hash digest
SHA256 89ffd18e49f9dc9b3c808ce5fa15ad32ea981ca830b8420c4c27d20f76f5420e
MD5 21908e11ed4c00815771d418cee2de46
BLAKE2b-256 140dac69d6f6825acdc6082ca74fcc84e3cf19add824de4c34e199c41ba78aa7

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75a9cf72eaf8eb109c6847fe2633deb4acb10cc0450fcf97e748b7971ff13102
MD5 f5b44a6dea04a5c1508d9f3915756263
BLAKE2b-256 700a33e4eccf75cb484bb4289e9f9470eddb0f6d50094a6e7d6e46ef48c47ac1

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b1e37c90ed36ed50d554492fee476ee8733a3c6fdfeb9044be7e294f244d2db
MD5 0b0d4a8200b03a09e61ac12a0c45d7e1
BLAKE2b-256 5af04dc664c8935d623dc12d28478dc56f1878969e71c6cdf3434607a0e0d0b7

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32ea459bab3af9ce067cd64381632d027c7622aded0a52c9a30f05324c7b13ea
MD5 721fbfafc96c503aec343dcf20d0af48
BLAKE2b-256 357de885e52a0ad384611a58420e901c720f922e11c573230d646a3bfd57edb4

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7bb85502aa86066abc6674306501def432a41900ccd8fcb0b8f67dcfea8c7e1
MD5 68481855fe1675998c5c5bedcd1423ea
BLAKE2b-256 c38f73919582b52b5b63f12f1a63788cb18ae0f72fa337d0dfb097a4d343392e

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81d87fa3fd5f47aa0bd89ca4a492d9cef276d7ced696d225aaca1bb48645e2d5
MD5 0b43309cc2a45df194b97ff02b6f4630
BLAKE2b-256 92afafdfaa1bdcbd1e8330024bba43517e4eff3164bbf66dd2a7351369fe4eaa

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dcc5b0182499535b62db1f5129f7cedf134da91fef3bb54da49d9d87eaa03273
MD5 113d214a0f2b52dc902e51e530a47d21
BLAKE2b-256 e37450503b2a69aa0621b0f9d315bb681d74c4d310495931faa26a4267facabc

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5b50257ff375e9efc22d149c72e17689d6815ef8a6486ffe58fe461b45516a2
MD5 065d6ac8384c2fdde97a43f3a2f55562
BLAKE2b-256 4c41d2d8bdb16e9bbbec8cf78bfb00e5a4f90914f056785c25f6ec5efd177d2e

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edce4c8c5886e901c957e8ade3d5778f3cc14f497bcfd1a3652c43c0a35dec68
MD5 89717da5db0eb40fa76071d6ff5c38d7
BLAKE2b-256 263c1fb802eb99993d8674340b129113dddbbea0c1cea07f2f3dfb8e580d600f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 334624329489b0617b72e1d71ecbccccab57b625dd4038809b63ea4be9a84541
MD5 0dbca5c0da45edac2a58fd6a3d7b4604
BLAKE2b-256 96c61151584eb18e462022b8792591b3a7d90349f843b8f465275c87977bcf53

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39511f19ab12f9e2c9f611af4e4cbcdba44c901ae802709bc8af15a2e646190f
MD5 4491e566884027e9deaa415d0a4ebeec
BLAKE2b-256 9009781cf3eebbc17912185824afab5463cccbccf89c6c2e26a383462f004bff

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56ee144b906acaad5ff2180724fad325d61611e5297a373f95ad62352eec357e
MD5 465a28c947516b0f4c31e7f60de4d0ec
BLAKE2b-256 392e73dc6dc7b76488a6c2e047e419e05b31bb3238c1c53f7ff092fefb73d33c

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 68ab5deb39be437e0e5f056d70f1a29bc47d4dbfe3d76f4f2c5995c5f875e57e
MD5 45c1b649f6b986ede6b4612b6491237a
BLAKE2b-256 ad60ca8116a23c5f431ce3b9a50b4183e5c5121965271b2e1ea25e26cc2c7f30

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 82e98424efcccc1a0c9bac20c5b5b35d22cb312c4e2dd4b22008a2dfd576c42e
MD5 ea93218c2b039e9d0ad5bcd02bea383e
BLAKE2b-256 38a65a320dcb4776025f98f623f7fff3b08f1916defd202ec68ffbea1a03b404

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f08d72a1bb186f5f5b0b22c71d5750093f4f2e0320bdbfdd00322c6fadcec513
MD5 df50b978cfe09fe1023cc9ac90f4800a
BLAKE2b-256 8d995c890cf2a94081c484052426206fb23b15c858fed23efdb2010a061794c0

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcebe7c4e68bb55f73f9957e4a320d3c3d87764b9a3b9a58f00bc947a24be810
MD5 0a728ecc2108923c8139833dc980765e
BLAKE2b-256 d6060ae0c02ddf8ad01d33ba67084e02a9b48f57a8879e8e50b352fe290ff2f8

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d9871d919b4bc1332bff4ff0379e08a981446730e27b97272a7a348ebfe987a9
MD5 dbc5a0fd33de3976fe45c4ea90826983
BLAKE2b-256 d5c328c6b5848149b269b85e2b545d0744a5de65d8e0b4c572a3a32af53f7bb7

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af5e7739fceefa5462046d234aa25756735d7393dadbca7820e073a152ee7914
MD5 c34e33ba5b954646bddde174fa681cab
BLAKE2b-256 b8ba93a74ad2f17b8f0ea2f0034677e3f4f41cc336c3c765041ea7c6f043c4b3

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3a7e258185990b0e86ed1120e263a9ccede86625bd70fd3be129f0bdde0e730c
MD5 2ab077e754831680bfdfe5fa52fad21e
BLAKE2b-256 4567c979b8d4e83a1189699279c5da71d90e8ae6a8757181906dbd44de43a6d5

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13b1140aebb7ee4c3c4bb017d1dbd1cc16ed589994e7280bad223254f114f3af
MD5 762b9685a12e2051f14c492a3a7e0033
BLAKE2b-256 82ed81fd7e7a5e0b45a06bc2bab6769e38d993f6474d40711b80be3efbd2ec79

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d54be5359f02441031559c2e6dfe154fe448c70a9d1e87fbb14d15ce023bdd38
MD5 a43afc919cd807aec93c3ed82166d729
BLAKE2b-256 aa174668d4369c5f05e4ba4ecc66ae808ce77cdc66a176cd30306aeb55ca9f6f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3ab61ab178c534ca64f566d0b8c35646b1a6882095d2ae50daed2ac851624f9
MD5 68ebe908013bc23b656b02baf42615d1
BLAKE2b-256 525e23dd9418493596c01125e73a3f599e9499c7cadc094793f5feb30ec7f8a4

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbcd77d4db2fc87056c5d6408635c8033da1b3a1d8511b965fdfc25d520df86b
MD5 d6e8e6fecb64087eb0e5ba4ecbc313be
BLAKE2b-256 9da8a86a6dac66cc60b58d8de116abc353c1f794aaf45bfc9286cc18852ba858

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57fcd99cb99be961a7043bcd18c54df2b1994c699b57fd2afc53c8f596c9afab
MD5 2d67d56cae1a868b6e9aecdfc72c4ad9
BLAKE2b-256 0759f050645dded274a4deb28ea36a0a78c1261668f4adcf1df3ce5929931784

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 391f94b187dd26123af4b31a5ca9edd5957654672f04abdf2474e57be5a56d4f
MD5 c687dc1536d991a85fd8ead1bb1d9d6d
BLAKE2b-256 50744a0629d76ccead874063baa208776875eb5094dcc2941d3b050bfd5c919b

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 05cec6bd9c1520fd880a7951811659ff47268ca904816f9c924d32f805652686
MD5 47117795813f97fe8f07d31470b70d07
BLAKE2b-256 71bccaec398d39c72ffbe082eae6473037d226f7f71c04c3f149b514f697812c

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73e1c91e82189f2753cd5424e42288783e28ca45db331f41a24100b5e5444b6a
MD5 ddbeb493aeca259a024a65236826a952
BLAKE2b-256 6b6ef7da52ea7b29ba50bcd8f9f0098af11dcea122aa88e43870cdeb6dbb799a

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 365002d9ff09a269b25f519a91ef968a90f96424a030f77deab11a8d7bbd4a22
MD5 9fcbd67d2846f2ebeaab26148408f793
BLAKE2b-256 86018e59a4121f0c3b7c49ab32f774525ac565a6a724d4ebc0ae580b76e91e15

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ae995707c6da85b410d56531f940faf6dcf9560d996518465cd70a3b5ce8d00
MD5 d5d6701ae1b9104f9f3ab0708a8d08f1
BLAKE2b-256 20ec886b52cb2e5a35118ecacb1a7366161d180327ee4a5bafe6826a71c9b378

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d8da087477bc49045783a5e0a00921df3c2c678b0391a615b869ffb576e7e61e
MD5 38ecb046eb0d57efd49fa9274e15fa5d
BLAKE2b-256 4ffb9de3236a2baa49a1f4ef22d086a887cc61cf8a9d705e3f9f7f19d7a9e3ab

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-none-win32.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3abedc6d06e0c9b0648fea8b6b4c5d58ff58b753e0fbb3a5b2a359255dc4f4ff
MD5 f994bc6dde6cf35f234dda62b6b7e4f0
BLAKE2b-256 b1f3bfa6d394dbef0b9dfe94e0bc890beb1ec3bb8cd967e5e82ffe54c717439d

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85e3a19bc3373d91e5b3380a6c58d2ca24b2cf9626d12606558c80a37b67e7cf
MD5 03a65e52373f0291046762963f75d5ca
BLAKE2b-256 94aaf147384ec964b9f7b95d1ce043858da9d4fa9724b60ec86627fa208163d7

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 768341d0e25adb2db14f6a18a5e50977c714d84e9d80d473ff20d9b8a4c80a5a
MD5 72f61698faeff497fb1f75a6ca7d2174
BLAKE2b-256 863e5a7506da3df94abc8eb347ac2643510ecade81d5471440a71fc7261624c7

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16b2527d07c3b6f2f3f4a0d6655ecdf9cc8b41b9e9b7e1d1875821c21a4146a0
MD5 79434ddae31ff7a96a44ada29c5907e3
BLAKE2b-256 a938f9c448c2fd0a1000d34ee7ccab0fe49f5b61aa2b487db8e6a0ed030ea70a

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03b373c5b733a02593a9f9ad7a3e699f040d7d547d42297c88502861840b212f
MD5 4cf1a74dd3b22486f3dcaf17653af681
BLAKE2b-256 926c1c2907da71d943470689f3341e66ca9e19a03fcf261a7a4965783cb60677

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44fed62ad05dbe8e761761a4faff43207ccdaa7083f8a28b6fdd7ded6b6cdfb3
MD5 ed3a76e41c62543994a9c32c9fcfa0cd
BLAKE2b-256 81213740361809fbae172414a1c81d60e00325c54b18e8b8af125bd40c832caa

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f4bf92ebadd2e8323148d5f268843e02c9a50dea06616db26509e12cd0c52cad
MD5 a43ba53529ae85eac16f17db6db0102f
BLAKE2b-256 4baf92726f8f1314c51b25bf3a2d81a2adacb3b7e950bc5d54a368656a431208

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 886b4464a3f5b2fffebc3559afdc4b4343dfe918b35b2a00b57ca50753a9f2cc
MD5 610ee2583a12284b3d1ebb6e1da4a9b1
BLAKE2b-256 d591e74383dfe87fd631bc260991f094c2360051ffcf69430deb44fefd6e17c8

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fa41c452343ba079e687686ed2da826626843499d392aec7518dd00caab4cb5
MD5 274e5b063aaa805b4cd4a662f0c33b0a
BLAKE2b-256 b1f1027c07044f1010f362a74927de40bdf7abfad5d2c6059f8a00ee77e40ca6

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fe101b8e5112713479f3b083ceb4f3866aa17651f8110f124d41a09a4f45eb7d
MD5 3c0f4c6fa667b751c4e81429a7ce7b28
BLAKE2b-256 057ebbfe791b24ecc23cf364123bdf6178cf3cb47af2c66311520eccf49e43df

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3e2d205c2e434661414e4cacca61a5d3c357cc9493a066751508de5744663d22
MD5 ebe59bec615598cf47a90c92d6f22d90
BLAKE2b-256 ad7c4ab57450f288219416d90d44167b0adbcafc12ed9678a1117eb6911d25ef

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-none-win32.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-none-win32.whl
Algorithm Hash digest
SHA256 5f0db8f0779d52361bb198b7f60ef9338b44119d0f1b15de22f23b46542c4669
MD5 3b56769124bd009ca03454c0b8e55be6
BLAKE2b-256 d3ffb4bb11e9d6b64bcecf65a96d6623a0f6250338ac6c64a044f1e2d6a831c2

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c9f27f70b565360f98551b0ae8b5f64121249ab8d3e0e8e0381d8b998370789
MD5 ee8c7eda54ce95e6b761ac643a86bda9
BLAKE2b-256 2ba32133e1828bf23096c2b6d5ff27ac8182a1516f4cf73b01578330bf9d5765

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2111cbb817642f3f59f409f89cb7f78dd5265d7795a69fc6a2c40582ae380953
MD5 dfb156cd7aef7868c291669a6f2daebd
BLAKE2b-256 3b0abb7bffe52190c1b21732684a035669160a834e59c3bcfe9a1a552647e0f4

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d08ecb5f7b4b95d123ef33c4ea18bc7f71b53151259e8169642dc6bc03a42e74
MD5 7a9d366a6527d0db10955ce6c8b5451f
BLAKE2b-256 555d8e418551f3fa015d15423a62504882cd55cd2bc594615744c1fd68c11ded

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63ff82345806f061c5311ee2d4d3286ce30e468e22594da3394383ede9c076e4
MD5 90adbdfc76b597979c9fea511d8b755f
BLAKE2b-256 c874be41001336bf3571e5722d778c405116283c4d90f529d609de2707f17165

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d4214552de262eb4022a61ed6657da27e59c82ed2e0812585c503b904ab33bb
MD5 39c864220c0ecebe4cc517e9a036e7c6
BLAKE2b-256 564dd307d3a2b3546ebfe75a995d4003193662539f82a6d124b2a24b6a6591a4

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e66f60b5ad493aec9cc7ad6791828995e7f3cf8238dedec187dd4d478b905231
MD5 982985bab247a2e10b4b1f161394b314
BLAKE2b-256 839874ae8ec15fcd28cbc7a95a817c4fbfe98b0408e26e2e556e62e1997b2d75

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f12660f5db9b5c2d4510b606e5367b89447d9cfcef1f9f580079c882427d5f5
MD5 42440a27d6b7f0a3187642590cd270ea
BLAKE2b-256 fe4ba911745a52ba1cb55484f223eb9573660c309a35da6cf91714585e30e5b4

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1b6d665ed48176f091ff2947576e7d3d93ba9524a2a53da378efa8e682f68be
MD5 50bc3cdc8908f61f151221b9af688557
BLAKE2b-256 6c3eb32640885dbd18fca38067437f30901cc3fde377a6c0f8abbc2048238312

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d4f4ed7756a7fe4bc6d2e4fa73f28b4af2940863413679da0d1b16259cd56f19
MD5 84bf209d7eeabf4f8c5eb44d6dc57e04
BLAKE2b-256 e3265c4211cc48f0c7f8b1e76255f69198afdf609b26c968a96eb243674cdc4b

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 565e73f4bd9aa3b81d9bbc8b0b2b11a5416bbbff69b1bba40877dcfe0c9449fe
MD5 3605453e6f2c7e46c7eca37b9b82dcd3
BLAKE2b-256 b9adc91030486ef471bbe845871f3549977eae9473c56e063ac41c3bd5a40c80

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-none-win32.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-none-win32.whl
Algorithm Hash digest
SHA256 eda2396688cbd414eeac9d4c6b1bb26a601b045c1acc2acf12b870b2e355c411
MD5 85aea1393f961c2daec8adcc56e72f77
BLAKE2b-256 e90ba48e1ca9be2fa07e1b6be90b3e0bd29639b609ee70b7bcc7dd756e556504

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d278f39a116b54ff45108a3873e76ad724e873a4110eabaa3b7414bc0bac070
MD5 712bb0b6a5b39d0b2baa2744bd36ef5b
BLAKE2b-256 a1309305743c8ae69677a5ad1b425a2260ef659c0759c500e9e7309a8dc8af8f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80b3548e1121d6fba64bac8dcbd99fd845a5d9e476bf833b075f4f4361e26840
MD5 15cb43ab5e80b0b4c7e48b34781643e0
BLAKE2b-256 7aad10135864524a63bf340c18a9e0445b4d64c3a5def31ce9ef28888691d307

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85333899bdd886bbba50f85d3e60aff20001b6d3b886a557c609c16333105c64
MD5 a90024bd633317adf0b3336d6eec1a3b
BLAKE2b-256 f780d19707e16754102b5321b7b668b3255d7995fce750d61314af3c068db070

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaeae4b40ac2d94e372d845b12168c06fc44fee812e9a997f55c0bc744cf4fd8
MD5 c096d7a1716dbdd5e1d8898169f79720
BLAKE2b-256 f756bb57ada3878ce625375d7233858ce87668c91a3f7786d0a6df7d763aaa97

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83de00ab960d7fef18419a0022b12edbfdbd8b714739218c95a454000df57c08
MD5 f6434d7688ab983b33a234073d0ac35b
BLAKE2b-256 13259caa8921710d9cb7f76f74e4dee6e6700e0104faf1b20d80b12c17a6979d

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 63e3b5913adc824b5f42d8a63a3ff3a605d93fec0afdc0ec77b60c29db98c733
MD5 f0805d2d5eed4d03cef9b8900c1291b8
BLAKE2b-256 d4f0f9751c120f44b9bbc9ac537fb7de16c4b600b7d50b68068526d91c8fd9e6

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f75a6f8d9bdef94010ae57610af24c2cfd2abbf2afaf263be31306bb4170abb0
MD5 d577369d43cc77a8a1585043bfdc82c0
BLAKE2b-256 17594eebc5a9282e3d634209bec4647052914ffff71fbc213c0ec68e217269da

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4505249cb083cfe3c9341a25fb96d9b9b86a3c5bd2d479a1faccf3a97ff4c34
MD5 c71c24d9cdb9e0c846611e722deb8714
BLAKE2b-256 9fc57aacd6dd68a0ec8ef8a78e936f6437ca0ce1e3c99132b75003b37f2b4df2

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1c895a2c3f8e283fb7bd46aa55ec2145389baa2b9222c8007d9dc77fdf127683
MD5 b9af2d3c126ef0ed41f25c0f8631e0ef
BLAKE2b-256 70cd3a8d8192a617fe51469dea98459e3bdab3e9166bc2e1c8256bf0d9aeab3f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 297937b5b8595063152f9408d9e74a58171e92a08a48df6aa6041506f8153855
MD5 98329810dc450fde361fb6ad424d260f
BLAKE2b-256 5e08476f2ea8e71fa680b6784b4287eaed6547544dadf68167c1402ac4237bbd

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-none-win32.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-none-win32.whl
Algorithm Hash digest
SHA256 86a4511c448f7c3be2707e52c8ad4029c6c48201ee33fa97e8663cc5b55a2162
MD5 7aaa8d8c733355640fca2030cd850e81
BLAKE2b-256 0d95df28acd19c993114d777b3fb5d2976d7688e0347191772acb443f609eeaf

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6cd990450b60c8f7e9b949b1076d9a78247ba7d06165841aaf02b65ac0adcc78
MD5 3991ee56360152daefdc0c461b0428eb
BLAKE2b-256 d03cc74b354af64262f95b6bc8749328ca2d564268daeaeb9992630a91a81e32

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa3cce46cc4de6837d6572a5ab3f7561c1795553b8c782b35f4dd590d03f6785
MD5 47118baa65b25a754d18d05aef9f62ca
BLAKE2b-256 4ff318a297bc79ee1328cc0e2f822f9dbf56d96414fe53c141a5a1606f05cc2f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1778bdcc014e3ed712081dd44290e5679ad5e8432d178f1215d7453e29777156
MD5 e63177fbbf8fa87e25da6f43a0b98542
BLAKE2b-256 5a424e0ab828fa067d1d3cffacc4f58b01b06118fc02da121097f0a9b1866e03

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f20ce61d66c58dea4f255469d766fce2c6ae5773f02c77911649242756d5d88
MD5 91ddcefbbae0830c65fa89d86aa84283
BLAKE2b-256 9ff99509cc790f58c2298a63219446a2015a36f19ab7c5974e63e298c87cc896

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38cf949d713abcc2df8d432d7563803ad35167ad06e75b73cffe87e4f775bc13
MD5 f6b31001b5fc3ec703551bcb5c187671
BLAKE2b-256 2c0f823a50594232f0e572bd1cb58cbe5f905e9f1d96e0a1e496c62b8c95c70e

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4fab1a9b0623e1b1780234a99bfbb8ca9a8016bfa52e15f421c36d7f9930befb
MD5 93c3c35e2c1d912075a0276efdfe9d46
BLAKE2b-256 2a81d3d86968c15d404bf234fbd94488e7f770e6c52c15b6703d6a0598ee18fd

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b138fe7531aa2839c38db937949481c7a2fc7c4395152c7d93cbddc017d348a5
MD5 c29f58c7e6e7b4bde967be62cc305cf9
BLAKE2b-256 64344ae20945d2d6c5bbfefd51039ef756fb547eb9f6a16ee3049c11d373052e

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8301b6ac87d02d1c8157c8c21986ed5efd6861ef8ab4b861535c781000507a2c
MD5 2273545196c23d5be8d5d7766b7988d1
BLAKE2b-256 f622d4d058ac9647641007d224eb0550605fc8d6d42e1c7087fb4a814670a58b

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f17860cf059032cd7e3259afcccc4d14e934ef1694d6d67fa2568a690e682fcd
MD5 f4faa45bcc30f05c22e1ccf8ff203cb5
BLAKE2b-256 cf92383ab27018ae8dab74f74527f82a6637e371ba6c6e61cdbd576be570d80c

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-none-win32.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-none-win32.whl
Algorithm Hash digest
SHA256 97b990b651ef770559ab78de5c95c466d1faff7d27e970bd0f5d349f10874019
MD5 a7009aa66764fde74dff07744470198f
BLAKE2b-256 4206f08e236e685f134b920ef17df3bd2027760e1421a0ec0e7c1f1c095dd983

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02b921b8a0159f798023968e195c830eb4895a7a4becc47c259995b907b3fb08
MD5 8c9d036df291e92e9374fddee287c690
BLAKE2b-256 7f363c4b3d79110f4b58a914206e8ecc4fd2801a81d6e7925fab5f129d3e90a1

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ec55a5ec99dfb20e658899ce63e400292dac01ca043fd9e28836919c26b8639
MD5 efbb4eb2edcaaeaabb1a0ab16f79e4fb
BLAKE2b-256 3f6de1884f2e7eaaf30ba4d663f1342202a05a067ba8f300b1dba5f7df773874

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1915daf9472e30f3ae0887ce3f29304cac1498c21b6209644a4f86ae82c67125
MD5 a5d1067f18e78583952baa4cd3c1dab3
BLAKE2b-256 fc7ed7939b437d53b6bbd4e88fa68ce96b15f02c7af3981d8dcfa7d722c3ae07

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42cd75ade78cad89abe4a121c38774c47b21e291450f2ec41b100760097e1b52
MD5 62e8550b132913cd0bd124538275ba14
BLAKE2b-256 fc57dc53e40bb69a1b3b5752843d4c24326d1b612ac3521eed87138389b9c20f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00db76ef202f777b536354b7edbae9035ff592f7aebf3248899fbf76f8dc2267
MD5 6a50db815aad71036688d01fde35edef
BLAKE2b-256 81433d01542fedefda5bc90ca37c6ecfc1c4bf55b2138fe67aea5417c82ab05b

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d9f3a3a3236aa88aeed37faaac3fd838f8115b76f7917b340049e16c928467f3
MD5 ebb969a8c69fc1baab32daace2920a2c
BLAKE2b-256 8a488f72a6f99becb2638c61892bb2b07dc2a078b127cf29f68f6ebd87fcab31

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 830baff89e8d44b2ef7e2bc0ce2cc60e014d53b20a24e19f3284523fe1e2da65
MD5 8901988e4e8fb23bddf5fbd176e7a251
BLAKE2b-256 2ba3715b78180dc071c243ad431e162b83f5339fb52f95cb5e0881b117e3d73b

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-none-win32.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-none-win32.whl
Algorithm Hash digest
SHA256 96b35d862fe79d9cfa2e9f40770570c6f22e4a118a437dd6b0fa179433c66663
MD5 5c82a1c3d2ffa4e381bee8331e001b46
BLAKE2b-256 9ed998840053d767a80c5f03f73c8668e3267e5540e30ed28ad149fbc0599f65

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a89f327c5b03e912ed00f41715d10734c5b90265a1e409ebd1c6335f490815ae
MD5 20323d83b92ab95968917128bb287881
BLAKE2b-256 c253e846bd4ffcb65fc21e48b2a9ea83ff1edf06a70c48c50319adbb291d680f

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1c8717dc5bc8a07cabca173dd90ddd42d827eef00744644bb4d5cff7ede3ff1
MD5 48f8b99f729bffbd60b40ef45783a86c
BLAKE2b-256 e85fc5ff1f639d442f96d3786898b9549ef534aa90c8d7eafd64eab87030a03a

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44c905f36924486de96cd606d118fda3544e8de7c561f3cec78114408b284550
MD5 9f864d29e82b8724f46b9b2c57be9518
BLAKE2b-256 cf13d41d515fed58ca31da95be591189ee4a11e9308a8b4e6809c9ea26803a78

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a5dfbdd9fc12d5f244ddcb3b8610ee7eebfe362efb9a662d983d887ffe11cf4
MD5 2a002a2e1be2a9df5a64585a8c21f06b
BLAKE2b-256 f1de85fe69791157d3957b4df971126b5717f62a0b0849755b2ae55abe11dec6

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d095dbaad62292075f8a4fea525987ec110830e0f7803d1f457b0d67f9de616d
MD5 690448cd53994efc9a762ee2732353bf
BLAKE2b-256 755636d6f5e59f765c9d781ee0b4917914b9dc7ab0dc7bf0b40df54a57d9eae7

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110800-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d7df0183d92f34971c7515a1a21c2b11f262d4b4fbd552a6bb5f5bf7858424db
MD5 3024af4d6d92ff1c41e7fcd5baebe475
BLAKE2b-256 f222c5b3bb9c31656ebc1930cd9a3f9f48e60c47d55adb0bfcf186a6e15e3698

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