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.2023092400.tar.gz (591.2 kB view details)

Uploaded Source

Built Distributions

chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

chiquito-0.1.2023092400-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.2023092400-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.2023092400-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.2023092400-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp311-none-win_amd64.whl (534.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023092400-cp311-none-win32.whl (519.3 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023092400-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp311-cp311-macosx_11_0_arm64.whl (698.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023092400-cp311-cp311-macosx_10_7_x86_64.whl (733.7 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023092400-cp310-none-win_amd64.whl (534.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023092400-cp310-none-win32.whl (519.3 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023092400-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp310-cp310-macosx_11_0_arm64.whl (698.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023092400-cp310-cp310-macosx_10_7_x86_64.whl (733.7 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023092400-cp39-none-win_amd64.whl (534.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023092400-cp39-none-win32.whl (519.3 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023092400-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp38-none-win_amd64.whl (534.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023092400-cp38-none-win32.whl (519.1 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023092400-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.2023092400-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.2023092400-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.2023092400-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023092400-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.2023092400-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.2023092400-cp37-none-win_amd64.whl (534.2 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023092400-cp37-none-win32.whl (519.1 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023092400-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.2023092400-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.2023092400-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.2023092400-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023092400-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.2023092400-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.2023092400.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023092400.tar.gz
Algorithm Hash digest
SHA256 5a7a80b28ff9dc5f7ef110baf42bf3a98af54b83615bfee514b2c09e25ab345c
MD5 1832cdd926fa9f1e66f8e2ade8c04323
BLAKE2b-256 536cad0ef1c8d93cfce0b190e280d8f1b4a052343bb865aece9a11facca0e926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 019dc1639fdf7fc53be8ccb15ce4a29fe9a62289883938be29b9b10c51aeb6c0
MD5 fcdd7bc2a521ae7d67cf78d99c5946e4
BLAKE2b-256 f099fa7d8c36dd00e6487019100f0efdcd95818db39dac216bb1d2cad1dbb2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57c2516acde4a47b0bf1163e210b0e9350b33a9f133d26c3b27209e14e212439
MD5 a381e508271f1b7282d55cada46bf33b
BLAKE2b-256 6bdeb011be5a1835e4ff7764cc770f59d9e8bcdf5d0ef4f379895d687e406f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 174a081c239b37898ff65a186006f469985b76bfddb3823be9393e20986f1d45
MD5 894331838459e1237518a3b608b19c00
BLAKE2b-256 5ca48ab7f8a7949731c0dbfc4e1f39352589ab50d5ad09d7e94ff695ce4c3bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71524ec7d41fdbaa32d19dcc6154afb84c98fa3d45ea8fb38bf302bdca74932d
MD5 8ff4bdf16ebb71ad13a01595cdbe7920
BLAKE2b-256 dd245c50517e0c4079b584f1099a87070e4dc75aa76228bf1ddfda0133e97c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38d384d2dc5343bd82272e4937c7c13750cb13ffe66717fe77bd2215d36d4f28
MD5 6067bd89e33497e551df59798666f5b0
BLAKE2b-256 43f81227d4a4d0c6f10f30caf0df8e04a286d3e36d852c3351ca4d2a751f1df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e4d1dcbbe4f2b0c3512bc4fd080e342ea182c93350e6db4a3f651755ca401313
MD5 5ac8f0394cf812b51856f61718d86e31
BLAKE2b-256 03cf8629fb14dbed21b4a617ada460eeffa8eb8c3cf09be9c8ccceee735fd782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96dc299faf921fed90b32affe6ba9cd686c27d4beb9ccab6e27840ad9ed8bfb8
MD5 5b6c88aaa51ff467b79a02ac5a716a24
BLAKE2b-256 86d6a12ce52e21bae984b565a70bf94759d2cacc5425797fa3aa0cadeb6063a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cee39710daa8cf3117f0b8c0b37c4c2589e9bde06f9d4b5413a7b1ec87a7837b
MD5 7fafb2a5df0ba028eaa7302dc8fddaeb
BLAKE2b-256 dcabab4fbab09e677c38779d740b7946dd34eb6827487a0a08a61893bb71e773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c215b3ce04bb681b4595ef89660c703a33d9dc3da0ef0a40b3b58733f64e689
MD5 58b2e7057e6344a3785101dcbe8e341d
BLAKE2b-256 85b5a62578d048a965ae3da536f6dba7660ca6200d2ed855945254fbfe080529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3414cb51de13feaecf1317328847f91a7e47ec8e531be8fd6af59b8b9282bdeb
MD5 c24d58babec75a4b7e032185316c4e5a
BLAKE2b-256 25beb52e0830cf94fba05624339724e6b2001ba26c88bd49a0c62061562881a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a60625920649367ef144da0eaac0728815663fc9617c8a5065e046d6124066bc
MD5 20866893ee814df617db2c7b1a12e7ae
BLAKE2b-256 d678b55a3560337af6b1e0100dd59aae6e8e21422805b8a50f6b2620913ba2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 411191265f7365cf3a38d19fdc87f18a15ed53b2bf3570e07a77a1e0e62538e8
MD5 9b8b65e7c40f8d3e413a46829195025c
BLAKE2b-256 03e821a5a14550160045188cf501195a363963667885c449ce88c34ffc67d91d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d919cbc363ba5a7aced0dcca0f5ac277c024a59f2412ce32455edf06a25ce91e
MD5 c5729c6c6cd02f6370fe2af905864d1e
BLAKE2b-256 1cdd9b33c82c851efc48f52a61f4d6e8614a7afde939ba33ab9d36bc4698c019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02c2210198979c2c1cdfc0b2fc69a6a86e878d0f96d9bcebe0bd2fed528c40b9
MD5 d2a0d7c6f8fb278378cd551e52f518b9
BLAKE2b-256 181643e879e21ee0afe3c18c29490e8749cbefe27378a790fa574d487ab109c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8bd2b47b67022b36488dd4f5baf41e5cc2a13a696ec59269a7430ee8f500f89
MD5 47a47366c18ab88a6ca2409d7bcac5d2
BLAKE2b-256 0d76ce9d34a1541cc507ab222f45e77f6184144da86767c11f09d0fed6b9bb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4490bcc89ec3a24dec13cadcc5953c03cdec26759b98dfacb0ab31c9ec6d5d39
MD5 679b9133279f04eb9bf403d79c4b34c4
BLAKE2b-256 e6d3086399f1a07a7addb086bfd69b616a6463b5adc990063ab91d3a74c24c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e37dea2a7f8e435908f2298553981482d17b83bb523f1b5334a48dc7fbf5d2b
MD5 1f7f59ef824589ba523b7c47c099c898
BLAKE2b-256 7a1b223b12f096a8616dee13b327fc753f1fe2fde970846b20a3c03315e18ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2b36c6e2c86dd0c015ce11bc7b343b285453b1f30468fbc937032ed2dc6c1904
MD5 8800dd2b193de2f1ba851912583fae37
BLAKE2b-256 8384acd3b49267c9fe2949a1c57404ba29d02a6365c5a3cc331d57ed6b9e4f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8862a3376396d809e1a063cbcc50ad65254a59c4a642ce21d886c78e45593589
MD5 f784b8a53124d27393f11db63e3444cc
BLAKE2b-256 1ef3d8256f6f2fb8493d42e16aad375d165672fc254727edd89c305ea0becfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b13f41cd486dc921de1f1b7e84e1de32b67110c38af6e539d6a39ac513d2feeb
MD5 8ec8d1eaccf74720072425d39a2ec852
BLAKE2b-256 699b5713e72f180bbf4663cc810ffd77d264c1396bcbcf9f94b37f60b8f47545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa9e105171909951c69e2607d1ba45e4278af727033c4cd1eee7348e30f5d678
MD5 23d70c2fc7dcc733ac70ffcd962b050a
BLAKE2b-256 abfbcf83f9c6e5243f2a0c3944b123dac2e5e52982bf8296ebc944a0b9a06350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63a2c674b202201b13027e794352ff068a866035a2a8ff05dc23ea561c64ce24
MD5 68df51402ee438fba7652470a8b8f0ee
BLAKE2b-256 a156e2cda126638717e9c66a12a57970bbff8ac37887b7c34f4768be95b41d09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08db9f5b439308d9a68543472ce0299fddab76a1a01188da58baffd15d961518
MD5 27509ff2ca0d0cae21d2d8b897bd7988
BLAKE2b-256 afed9241fd27ed01dbaa9f856244c5c3e13fce0eb4e312f3bcf9b7614be075ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c3aaf447746877f540dd8c51a6e552a4fb15f169e796e493bd92d0091a7a6fbd
MD5 ebf9bdcd2c47cd7d9f487d8dedfbdc20
BLAKE2b-256 dd815fc99f203cf2aa158879925dcc11549b5edebbc022f25d58a1c65cb540df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79550e239ea9fa138057d7947f31bdb14470aba39f32e9ff1ab5d8457795cac0
MD5 a438a7becf266edb0722543d6f9b1e31
BLAKE2b-256 cb775c166859f44d21e4e10b00a416d1e85d87dd07b256bad983286b7ccf9dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 557a9884ff09c05c802b7bef3c2e82b6a3cf91559ee5a6d2f125ecc75a5eaa71
MD5 798a716f2326de2293160ff74a10f5f7
BLAKE2b-256 2814183682b936d8416b8f6f3b098012bb8feb3a26e2ba8ecc1c1b18db0d5451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae039b92f254bf61048de85890505e86145fa4a5db091906523e0973b9a02f83
MD5 057abd8f7373f798c1ba54e6ded67bde
BLAKE2b-256 9b77c61628b8f3a9ccec457236f3ed70b6cab2342658142f340ba45344490dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b938a36b73d8dbdd4b591f84cbd75ba330b0366c6d9fd5821c49bc077fb5e070
MD5 e819bc54a8a92dc1b13bb9dd06d67434
BLAKE2b-256 2e634f885fd865f6a0ca6fcb1c9f2dd2cd63b1484d75fc31959c35e8b2367a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fb7c91ec58a7d926f8fa5b2784a3d85f48c569a35fa8951628dcb88d7b0db5e
MD5 a475c4d087a43bf24fc75c97e0422ae4
BLAKE2b-256 86cd44371f8b1bd8be4b234132e5b348c15c57e71683f91e79137b651c73943b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dfda97975f599d46f2d67d922a90caa86c6f91b814c97e6d3905fe061b311ae8
MD5 cab98cf908a656a797e2df0f6e4074d6
BLAKE2b-256 012002519750795097d3751217a624a15fe0fa5a521f5af02988a1c440020a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ded10f5efe7a9b1b5c55f4d07b792f17e02837381bb1ace08df6f830e7936296
MD5 d8d3d8f8d55c55d4df45d41c9ec25506
BLAKE2b-256 87a219e0890641447c2ac0583ad88c428aedd3a65161a01ee75e2d858aed5204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f59e9b1783b9b72273a3bad0f9abe698656d6faa9e4a0f574ca4b7efc0d450f2
MD5 4ceb2ac468bd19ada25e06b8729dbd42
BLAKE2b-256 d679ea0f430786473c8512eb14506666a7926690c1b401ae134cd6288d0aea41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785dc77f7f0e05a10902a1377977cab1c045261e7e719c93e10873ba506cd5cb
MD5 90b1f428705f4bccf05e8e121cc09cd2
BLAKE2b-256 faf40560707478cda46354af32ea40639f0a4f9e0d41a2804d30cee65eb595b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8018c9df5953d33efe198a01537235629df0dffb9fda4830bfeb5e698004c8d9
MD5 2857402dbb4cd3b34851eb0ea596517b
BLAKE2b-256 6de1f1e873f15bc08fe57099662d0150c93a37500bbc0ba44d7b23df088c651e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7adadec3db543bf7818589e379eab36396392eed024cf52845d79b3193372def
MD5 44d23a90ceeaf4dfce2dfdcaca4c4138
BLAKE2b-256 3d6361b399eca95fb6e16617e3d843fd5524b76b5530635250aa4c2ed165d9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a364e290f15177b986b17421ba07d777f34488a2176bc24cc28dfd736796763f
MD5 d9dca94d8901971106f8dc7367ad3c82
BLAKE2b-256 ba01a2f67ed9a20cb37762d3cb5fcb9f403546f8795c355a6b6b7e7533804bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba4a44efe08ad83563308cb7bf4297132f7951d31512e10b106b77ff5c4862eb
MD5 75651d3511cc68eec8d25ab4f9d2838c
BLAKE2b-256 dfa300b80381e31ef8cb4335e764056363e18e4f45d9e36c6a7c504b985f7184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0d9f70d3c4ffd755102bbdc4c93c70905ba05bed60267e91cb9c325cf2d2db50
MD5 43189ca96a3f5e402937b985e70005ad
BLAKE2b-256 922480c493afd24f1854feb211366db8955eaa7140d9f82e1b2270d3f21f19c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 157f467342bad10e73ea77f8ea3c2810f54641323ef6f46f637d6839d2ed0f0d
MD5 4e36cc8b72bf3f6ab4ac541b04f0b524
BLAKE2b-256 2414f6deadb0fbd9dbd61d075ca3d05e55b0d58272e9b917a6b865d01afcd216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f3ef9e470192958757abfb4311d5dd693a0bcfc45076197b7d065c37129baac4
MD5 a1ffab52e5bb1e277256487180849ba1
BLAKE2b-256 93471eb7b32be3cb169cdd445a043d6e16bc6f2d6a8b9dbb1891ae5d330e9763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 421c21ad70b38c1f663875895a9ba5c95c302a0e2f6879526e4b2b922ce32b0d
MD5 4a33c2ee1ca038ab7b8e2193ae8f9ef8
BLAKE2b-256 f374a4c4bbad39a75f660c0a48b875ec43bf70b213b741535701e9b191e8a578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b9a8b0600c88e4257b0793030e71f4b8f2e3d2c9afbb0f5bc88ef1d275e598cf
MD5 39544d8ec9ef3d588580ba9aeb14070f
BLAKE2b-256 53cc54302d0de034b3ee49f23f831f14c513e79592947b69eeba334501b8a21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ae2484edecca16fbe25519634bad4714f37fc9642ef6eb59cf54930b47b800b
MD5 edaeaed6e6ac91bc638da970722e92ce
BLAKE2b-256 a2c96aef11b914c3ca4601c7da8950182d136c219ed482d454ce60c2899c4a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1be702eabd1875def14277d0912ca1f78450d35f7e12d37b98355bb58b3a61c
MD5 b5d7f2fd73c0b2b1b954120b38a51582
BLAKE2b-256 79df7544af03495ace69c104859e98f66249d68a8f5de7a9a4f1c0be0f237eeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd29980f536af835944adcbdcc49a847b7860bf48e33f8a373073826e74a377e
MD5 35c45c4770efcd965779dfcc9ad87659
BLAKE2b-256 1849e3f6c157b84b88aceb3fb163fd321f4736aa54c83edc2d07637d02c049b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec78afd0f99b783f589f1370b931e8876409e7232e37c4b94dde1b3c0bee0f64
MD5 e69f70d75c409b19e929c0a92d51a901
BLAKE2b-256 ac660fb7b0b7070f535de9f38a715007d8259ccab5050277ae467bf2d35d038f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ec2a9f584c87e5c7ce86cdace0e1eb735257ae59802e291b3ba8d0072e76671
MD5 8a31f615f87db292c3942ee8780562e5
BLAKE2b-256 802a99a7e06eb51877ecbe5c57c7d655c1efbcfee73574d5288ec8974fe2aaad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 256012740f7d578f0957c3f70ed0472e18ba3e2569a19581b40044c465a7587e
MD5 3e2f2e0f57d37e47b0812bfb0c8d1b19
BLAKE2b-256 6366372ad638eb6bad7ec3287c895ff9bc8c67a992c8e9b1eb381471a14d29f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6126702f99a116e439c0b0c5faf66f00baec3a1e1ef75480ac83eadca8cfecb5
MD5 f68a4523e2e229e3f3dd6fb44e3fea71
BLAKE2b-256 fa9e465840cbe94fa489b7e1388d2869c79bcf2b5d7e327f0e44e3c310d7a1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bd380983b87e32b23e18389d52571dd3dfaf85ccda5cfd78cc50a5cc0da9c298
MD5 f0b60fd94590590471466645480c909e
BLAKE2b-256 7dc491c5a9e40a3514760431f723a0e46247ffa9cd0a1ca9c5d1552ab19d68d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f1c4af436b0cca3ffdf90c45fa06f448f7d26fcf85b3932bb69fed0ce90e78ae
MD5 03eb5a0306283c87fa1d88c0a7a88032
BLAKE2b-256 5855c5e9be980f4962f838ed2357f067a6169d57f86bcd184c1b9cdfca9c268a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-none-win32.whl
Algorithm Hash digest
SHA256 351fc83eda813ae09c293bd367088e23a80e63af47302c1e5d20fad124a1d810
MD5 1d85ca96ae1b2f566bb046bd43cc3b02
BLAKE2b-256 e8af952c92c735dfa5759b2356fea4d76eefe6b8951a4acb49ee0f859aa1dbaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d44814c5ce0b37be6bc906a1afbdebfc883f9f9da125b09762e7aabaa267be40
MD5 61efbb47d4a8adf88a5d53ffe79905c1
BLAKE2b-256 071f00a068bf7812bfdf32590eaf8ac58e08adb19951395cfed29907263c3e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d25ab51dba66752b0ea53043194c8ee9210efba5328001140370d5257b7a848
MD5 fba4af561e1927b4b43500af811a6e1e
BLAKE2b-256 f8db3bd90a1a70f25f04ec0250a6b5d722acf64c7220d4624fafa2669484d47f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2d90e09b02b0f79d4520d351bf19bf18dd8ec0cda6295a26b91e0455c208d99
MD5 b921162d82cd3cbdf90a63d8e9eb6f84
BLAKE2b-256 3c05dab6cba2ee7fa7dc0a2260aa749a022772577faf2b136489899a521d8aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7cb414e8b641501eba6cdd120a1598a4b172c8b1b1773a7a0f65ac6f3e87dadd
MD5 1fb7910c9cd283493856fcc1026e0e73
BLAKE2b-256 847b4ce1766ba012f90beb47521940d44d6b4d8eb78f0654fed294c708c47495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d7481d1d929f5b92b0e800a3462628cb0301d348f45fe80d9b874056a7ff43b
MD5 459a9b067a2c1c7ca17c92416e1ca144
BLAKE2b-256 e4eeacd1b280d3f44dd807cfe3ea1615106bc76bd4c02fa624783be4c17211b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 79ecd550f17120afa614b1911a39dd53abc264d6252ffb79e09c2bd712d18cd8
MD5 50b0ff300069dbbff99c945cee6c74e6
BLAKE2b-256 ff94e5fb65ccfade9b1053098c1d708854b63673293f32b4f70cf0b48444ff72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2063e0103be9fdb2e9a044e700feb6161cec16cf700cb0178d99ef299cf17ca9
MD5 590197c1d214a3ed034c107648763493
BLAKE2b-256 9afce5a543c100e11546fdf0f266a20522119f6713b15d1e793d7c362ad6c871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c56b39b73952bbddb26834056312254a7196e732ce5bcf8e390c8e438f46fb91
MD5 5cc3ea01bcaccdd672e8e10c6e291dd6
BLAKE2b-256 58b09a47b7fdb2d3d06565f732902addd34c871b0adddc38947397a6321358c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caba5d2e0956999163afd1fdc1e192643ee973d14fbeef5e36ae5ed199e89579
MD5 7400a76e4d4b2a8e10d4c76b50f36ef5
BLAKE2b-256 19a7e23f4074904acebba0e5eda8d63a4d39f176c02aebb17dabf6fefbcd2f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0dfb892c6be04c381e59d62247e0cf57055860915097dc16ecb655b2b352b952
MD5 7f7e830a07e3e211250641012fb351f8
BLAKE2b-256 b96c8e5bd94cf2a8801964b3dadd5378fc85d794db44fbfa6552a0eb4a1e92ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f6e61c7c79a8aa1ebc7f56dec30dbf3eacb23a86b2fe442167fc744f9ad8603
MD5 6d850401a3bb6699d5f487e511ae0f45
BLAKE2b-256 f91105f8ec22481b5574ad505b7bcf2bc27b223117458d1ee7df30123c15c2ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5362cbf95722ac18e4ed00b9430bd46e839cad93be7fe2f2b71c8dc8661f3c4c
MD5 ed0d3ee1fb46c5e7a604e31c65081ffd
BLAKE2b-256 bd75f9947e97c362b96f9e0c48829af7b24e986596aae0731760e3d2aba37659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 251565bfb5d95b68c9872e69121fbe7dda88c90e0f5ac47cab35afcc2e8f3fc8
MD5 79e70aeb301cd1bb951f397ee68042f2
BLAKE2b-256 a49576903f9b3eb5d70e32ed3515ba17f21fa7f820a286f4f87516484b567f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a37ffd7a4ed62da668c90f80dd039a92d290948c3a5e3d42a0fdbeef3df8da4f
MD5 5636e4a346b9049d981a4127144448a1
BLAKE2b-256 82046929b114ee9cdafd357e821f0ee1a6d069d7086e9e3f266896ebe2a8f6d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 a57f29deb74c6caa88b077fcb1b34d22f59f16ff5872a4ae5ec0e6556c9b3f39
MD5 0f9a0941dfe9210664a551852516b89b
BLAKE2b-256 55f6f5eee2b6f7aa669b66bda4ddf5375174e93755aef7f83b4ad7b5f477c029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b5c816fb1c6ff9d8ebdff0ae3a64cc002b4fea3954544dda4ce5cb5209729614
MD5 99264764d685b5fa00a6f07e8f2d4061
BLAKE2b-256 d2a2be603f01ed9278c2bce0f2a89be018a87bfd456d39b9e3890be12787f7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 406b5c930059c96686d272c77f55cb8d954587e327c42f1cfd5f81c56d260d3d
MD5 32b741adf4d7e352e686269e0bbf6f8b
BLAKE2b-256 23d962af937ad830161761c4b89146e6a3f9698304d4e459ea5016f64c46cf8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 510fa23474d7b7b96ce3c51c890d9e9c6de37e9e4cb245da185668e2861e2144
MD5 a8bd717660453922a295d20e0e5f0419
BLAKE2b-256 64868353e6d440c111a6b1c1d05bd5c0d9f1c1d9d19aeb9be79a5c7b463f9e11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d57373f79f7c413f61386d1779a6fe11223c7ad08dfead265be086ad63bf209a
MD5 4e79134211353603d57335ad95de8d58
BLAKE2b-256 8b891612efde5add4380db0f97388d50726fd3ec50274ffd08cb5182e60acef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a4372e9c36fc2c35e226e0c1bdb662ba521ccd9895d8654bed9d7a29f6d1b92
MD5 a3fe351c20776bb593ebfa1a1ab891aa
BLAKE2b-256 36da3acbdb530d80f81c0d25a713dce025d3ace01c2fb06c570b45fcbc9e8201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cd85b16e23e6274376e156415ade250df7ccc1d3271a780f3f44bf8d29599af
MD5 d9b33d4ab6462fefb2ebc65373007c8e
BLAKE2b-256 24abefdd2df4e9bb969f2a861297663541559c596e4537dcce5fca1037b31466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023092400-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f6b71fa7455bd1a0c8d4f3571c6507a5161a7e88397e6bfec4a16883de7805c5
MD5 42c74a823cc41c3ee2cfde0fb8f8add6
BLAKE2b-256 b25445cadaa6f075b39a3c5e0dd930a12d78cd2c6737b32d53e7bec24bd35c2d

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