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

Uploaded Source

Built Distributions

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023101700-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.2023101700-cp312-none-win_amd64.whl (534.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

chiquito-0.1.2023101700-cp312-none-win32.whl (519.7 kB view details)

Uploaded CPython 3.12 Windows x86

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-cp312-cp312-macosx_11_0_arm64.whl (698.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

chiquito-0.1.2023101700-cp312-cp312-macosx_10_7_x86_64.whl (732.1 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

chiquito-0.1.2023101700-cp311-none-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023101700-cp311-none-win32.whl (520.9 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-cp311-cp311-macosx_11_0_arm64.whl (698.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023101700-cp311-cp311-macosx_10_7_x86_64.whl (733.2 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023101700-cp310-none-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023101700-cp310-none-win32.whl (520.9 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-cp310-cp310-macosx_11_0_arm64.whl (698.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023101700-cp310-cp310-macosx_10_7_x86_64.whl (733.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023101700-cp39-none-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023101700-cp39-none-win32.whl (520.9 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-cp38-none-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023101700-cp38-none-win32.whl (520.8 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-cp37-none-win_amd64.whl (535.6 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023101700-cp37-none-win32.whl (520.9 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700-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.2023101700.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023101700.tar.gz
Algorithm Hash digest
SHA256 b8c9b5d5952b02acfe0aecec7d41f53e9f129e78fc43736f476e18fc7389858c
MD5 92fe10fc954eb98efdd1c27abefa2086
BLAKE2b-256 b26c6ebcab8ab942ee2c6c5406e5af80599eb68e373cf34fa3e83c3a44c867ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aa337665fe91a1df432817a871927ac48692565f54ec47d335edbb57a0664eb
MD5 0f924876715071d5a17f48ac08f8382b
BLAKE2b-256 2d55b7965290edc613980828bae41bb9104232d0c85eacf93e8404ac3dce00d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c314d3ac243c90112c7ed9878c7ac2f78caf87d43ab60b52877aed843367733
MD5 55cd8681175dc81dc9cad166383dae62
BLAKE2b-256 a918fc448aaaf1478f9aab7454b478258f53b7c45fbde9eee7472cd7b82cba37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d16de352f2298d3396319fdd8182ea08dda537d6ad6a0d2822f193640a6e7f5a
MD5 9002e44787c7ad0af396570f31088eea
BLAKE2b-256 9d3e2f1e1d2388a9a77f07c885491aa8a562775cc0ff20876e3d1633c924f141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 180ea78e707310b4e932f3fae486baaeed095025ad4092600b9f3fb2bed96f78
MD5 eefb706c19251b0f483963e70712bdb9
BLAKE2b-256 1bbf4505e17e45ae2c35f17fec747cc768a7777bafd41ce24c3e4a3af6780201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daf0bc497280a527860d6ddb64f97a354fbe3aecd67312e37c517bc6be469b63
MD5 cae8d914456dd698a0114278e28903e2
BLAKE2b-256 f24f10c7e588560fa90f58470906b170db14890bc88fa8195aef49fc6f8b8cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d0b46cdd99488366dbb55ef1df894f82734aa26ad57ebaf1075c401226be8781
MD5 1e9106f7ccce3b75792629598a92ab6d
BLAKE2b-256 32065911259c6920f187ea68de088962980a7e7d1f63be7e546f208a3f27abbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb153785e466a7cf4628b06083a6526471853eef827d5be321812898bc32c26c
MD5 c791c039c887d9e91cdb07175126dbda
BLAKE2b-256 36137de7f98aa2022f57965a3e3ddd3dbcc6a1ab57f40e457e72ce97e1b39200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d46e3f79a0e66ac3d494d136eb948fc85381c10d8621f34e9cf83cfb264bf2a
MD5 e35ffa0649775d5a241cd9c9ccd03694
BLAKE2b-256 a2937403b06bdedd45b34cfb9c29ccd67fa699fafb7cea9084808a42f8e6cb88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31fcfd47ff6a77209afe227ec8597af507bbff335d02e1102a5cdebbcccffbd8
MD5 dddbb4cd37d217327e7822fd9582898c
BLAKE2b-256 355a1b28224575c5400e2888b92a5939825d9e627799694cf9e88bedddddb404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c36e41525a626736d26ed6b1ad483c49597b2f1ce25f89643b5d1fc967727c15
MD5 bdc7a0fa73620d995a3659bc65b11b91
BLAKE2b-256 2bb301733193d745a9773151b0f4d22ea1cd46b082e9243c0e0519cb7f859cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79f9f171fbdee53b362b64aab203ac7bfef116bac6c2a6b5cf15578d354f9a61
MD5 40e0e73828639c4138e512815b9b383f
BLAKE2b-256 efbfe51c1ecaa93d70564d2c0eb1979cd9a412e3c8a8c298a7ff1fc801e6bde5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 783e7ab35b97e678371b9c1c95f6389cfccce7d184259e78c65faab64f32fb8e
MD5 9c265643b16c36b5b9310cfee2082b68
BLAKE2b-256 6f56f5c05375bd25802722a937bc8b67e8dccd2d8a2873ce645742bb0290a1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef0dcabfa1c932aabe671733ad10b8cb7e0a4bb42f484fccba4ca5a7c1798529
MD5 cb9c3a3d31e417e6bda90a21525a77d2
BLAKE2b-256 c4b7daaa91ba0954b3bf35b589e45324e4f710767d6f33dc34c180a8319b15ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 121b9291c288b31dac74fad591d284f04347c63f3f7cae253d5ad2ebffac5625
MD5 16e152b9e2aeae2e31f3ef1f69b6ca89
BLAKE2b-256 bcc4d0567c94d059c3fb869c9c3fd56f6863be0951a3065dfed38d4819cda608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fef207a3cf802a246663c318b8a4d9c104140277bff544596847d74c28757637
MD5 d805bb9f7151f3a14fa2a28b4ee0aee0
BLAKE2b-256 035df0dc03538f73c433f55f38ef559cc2bf3b910f0d1d5555973e4e8a0fc681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a057f51d503900c76afc58b9cd2aad394a5ac11bd8d709e76b75637d7d9455af
MD5 49a82a7b1b294c6ffda130a7bb489220
BLAKE2b-256 12430577d50a32cbfc827d05800ea9efab1cc67e8892982f8f3b58f924e1ae72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7962ce08922e17d6e9fa793f77e668d7518a4d499851165ce0a19015913d88d
MD5 25d38f76070c247171d3931e84104489
BLAKE2b-256 c322de7ce77e416e1c9b103da9a050c0346117302d049b4ed0a2767dc4627d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 aa30533dbf747e3be9bb74b8f4c2ec479655a07b7108c71bdc8b7d0584ee15d5
MD5 90f848467e4d628029873de67fa19cda
BLAKE2b-256 fcb9011637bc5d89e732d521294bae1531648936321099806fcac4596fb457f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e476a72de3c19d03674a92e56de811e03c5379ed0f5cfc1f9ea289458cafe89e
MD5 a20854ef051c1800b29e843124b0cb79
BLAKE2b-256 642cfd2957fef51954a9e4d9c67b8d5d5e7458eb325d159735d30d3aaf677f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41e723c1776bed058687dd3ba40bb9fbb27a551be32fc9d652e72d1d24e00508
MD5 abb106e03d6993e095f19f173c9d44e1
BLAKE2b-256 bba6a25e8df42776c6d2b643f6062f0a23b7c0e5ed0df449c95517edc9dcdb72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5989d2b0e6a284f05ee0143ef868aacd0bf53cf9611b2bec73881b43babd944
MD5 90cfbed6180c516298a218621d8aa224
BLAKE2b-256 114a0645b3ce26132adf3d6944ec034a7d8b6eb799adaac97e4e16b057e67856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb73a77912898240fe58962c1d650d887f370b7124cc4843cd07cdd5b73f9a62
MD5 9a17955f83a1b86faedfeb043b806384
BLAKE2b-256 c31d95b600af811efeb7add8516723a9c6d6c849d75854e707a6b176c097c0df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 945fd1d1174a90c6e05548fde3d6dbf8e4e449e9347e8ded4cf525d153aca656
MD5 09b84a19d9d6b0da9374393084807eb6
BLAKE2b-256 bcf7447519d0ca95ccef8fb54a1a0cdc3305ee36471b9a5abd6b4fbe85cfa607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 37f38b819f728576f7d5c833c436bbec972b7aa26430f4be0e5928d0b3e35906
MD5 fb978fce0a408470b3140096e12ef331
BLAKE2b-256 bc2ee0d13c71c4bd84a47de9101a4e32a59ad420ec70d99bac1d89bec184b20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 99f0e7a0d581c270d5767d9de232e49691208fe1aec0516783a8b02adb13a68f
MD5 fa14cd5949346cf7bf8b7b8780c52029
BLAKE2b-256 1ceb2b5ed668411b5db1f6454de57ffbd19bebc49c895533d3d66a8e3c51bdb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae737ba34e904b238ac5c6e6aef46befd47629f6ec4aadb873be015b1025297d
MD5 4b68cea671eec7390ede081719d1f174
BLAKE2b-256 8ff635e205ff42068034932c1020c31833c4337d3a9ae10c6890ed7c4ad90e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09616ee23e2da3133f29aab07883c01cb267835862a4c43d0088246f468268d9
MD5 342d870cfd20e3b9e1d82466c55ac37f
BLAKE2b-256 aa320b316ffed7e05e4a4c39d904e33b3298231e91bbdb9bac9fd58dd465f482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41f623ed89f8a2bad8197fa1082ceb99ccad8bd6ea7352610816ebade585e927
MD5 dd6cd3c58a71aee8112865c1c9bea326
BLAKE2b-256 25b628b68f40820a57e074a6c981aa62ad88a35519e1d6df0499cf5940e78f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 716ca941e534d176a7107f2c509ce55170d6e3a0365eb9ed21bbcf2100ff4b99
MD5 88ca0fbb752b637b419cb94b745f1979
BLAKE2b-256 590e403697d0ff1a4b894e108aa512a15f9e9e091e51d6a1cccce6643fd6ac37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ee4f7f73a615b55c69284de9fc6bf8bee1e6dad9892118cda1221e2c0a52600f
MD5 2f0758a546f811cfd0fde0c60cc0fa1c
BLAKE2b-256 41c5214b41bf408a844d8b259cbc4a4495227de8c7bea1c1e6aca43b3e9152e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c7e8af948f5d14bf629d8bb6f157e3282f00d227703a4b689b2723939ea0ef5
MD5 2fd47596751485416b5258eb10b7a7d8
BLAKE2b-256 c8e2438630ba4454382457def2771ce3bb297ff9298927b9f333fc4a7a900330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf87b9a8b83a1e234bca1dc28c574e57adeec13a6b1fb83649b7697354f127b4
MD5 2eab4da892c78048532a65c3ca37ca53
BLAKE2b-256 66e26bb51779e8a4bb9fc3dc84cba8d82806ac4ce3b919640c1485cac2a6082d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8363242f01d3be5b79e6f396b8fd9d345c889d808af3bcd243200653382df6d
MD5 07f4ae60597231ae35d8035f15950273
BLAKE2b-256 091343364dc5995c9bea125a8655177e17c726852805b1987bb7ee0bcd991a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d78d55ede2825ca271c60b7eb92466c96be6beafddeeb2ef381e5628e39ba932
MD5 9b998295d542cc8d5083c97694bff6a0
BLAKE2b-256 4dc5959cb33be8988559892d283bb6151ab2f7477f47678c13375c5feba74c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e328bd2484683cc8df36e046b2f09343093b88af172092f60a605f62e5aa5e4f
MD5 de52069651f8a969a60593b49aa59856
BLAKE2b-256 b8587c7488445499ced838afbc8010064726fbb27dc2b213fb4cb26371fb535d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 771007ba547c51dd063505a1ba18a20d832280b22e0136ea7c194f0ff29212b8
MD5 a9aebd0da982a187f13a8115d9e7fd13
BLAKE2b-256 d44d17fc29efb92937c21316d44c93be17f143339ed581465d3357bf9064701b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 227541fad724c24bba2c17c07a8d1774b46c6708190a96f8c5dcc2c4b6580b19
MD5 cb4f700369ff581391be8309ded4efa2
BLAKE2b-256 1360716471c5055bf7c5260d610d217b001548c81db8a472a825cd1e931153ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 52be734da98f9778f56a1e2d167b631757d0e8541a975fcf3d9b79ce2d6333c7
MD5 0a39f1437e8a555e1562310383f5e7db
BLAKE2b-256 6e07756d70402d4fa894ccb568e6d27c62cc490344ac07f99423e414de689d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ab34308a8e740b29087fce9542f4351559d610c8e5e5aa3e834cfa2b851c603e
MD5 05bac0b7854f1858ee21f930411d504a
BLAKE2b-256 d20a0ee84d6ba405dba6b0e3f1a2158c49933373f60261b0f5f468de90c92d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b372ac531c89998f17914037c58561544d54a06a7d3ac478bf0cbd630f9d3193
MD5 2dbbb47d5adfea0ec593ce7f16802288
BLAKE2b-256 f913451d2e5a4e56494dfdaf55c177e15315898c2637c127f1027bf5f10c020d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8517e72063f81dd39900cd32a04048dd53a87c53df9ee7fd412afc82e43c3ef9
MD5 816bef1a275218607a61878d0d62a853
BLAKE2b-256 49265069e2614a9ba82f5a5bdedf93f67fac6068357686a3f8148787faa8fb0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e73ea7e826c81aac70725ef0dc7d2eabbca0a9d7c0e24caa21dafa67f3cce796
MD5 32e4790a7edbf88e93b75ddcc81e03aa
BLAKE2b-256 ef9de24f297e1ea08040fff5721a6fce0ae24a2dbdc20be0f510effb488d6439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e785e74772560a1ae3b90a7013f294cdbe8273154be7691bbf3a1217a40b38d8
MD5 07bb8d67d2d217286495eee08a3189d0
BLAKE2b-256 9018a194314bb5c95826a811c2128bab077ea097c1e026a8c0d3480bb24e6263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25457def5cfaf26eb4f35548a5fcefed6c82a548a1b0c1344b6492216259218a
MD5 8a6f666720beffa99412c07f76efda04
BLAKE2b-256 980414621a880bf2b07c4e352f648f24557cd9c6469dbb085c9196d5f3fb3f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ddbe72d71597bc9d675be329cd5c65382708384d228e32fc2c6c99d64c170a7
MD5 983cc0e1bae81ec035e418d990d60070
BLAKE2b-256 8158018c30577fddca6b9969ea6298ef403ff7e96dc4a134b79e396ae82526a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3413d6a628d1dc5e12384072b555618611f0ade1faa9608a7bbf15d9bdabf579
MD5 ef2caed07d482005af2bedb6046b67d5
BLAKE2b-256 565a2e7bb36758a9b23ca33203930afbae0c9940f7ee4258c96a65f02519f9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a9334dab17d28e4c4971fe7c6090b07113567f0dacabf578caef8886ea0a78e
MD5 2e19b191d934c626fbff8cce036fef24
BLAKE2b-256 d17b9048cfd0e84ce802108b04fc7f6aa0f4aa77a7f67354730466eed76d3d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1bdecadaca8d57e44b35df06fee151cca161803cd36893833f2fbb671ba33ee6
MD5 721e4f34188919c09b3af5553bafbead
BLAKE2b-256 850b3fb6fadb8347b292da75d4a64fc4b273b73dceba75e4ac570f3983ff97d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 092f401a9fa24ff67054854577588fc42b77849b3f17f92cd169992571fcfcb8
MD5 499ee33921371d729ccba296986bf57f
BLAKE2b-256 b53d51bc5d1c84c42723e6754a0ce9006a2baf86c6496e8a1e4bc4db3b9c5b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-none-win32.whl
Algorithm Hash digest
SHA256 df56aa77f5a87b4469b02dc9026b8a5683173f9b794d0dcea838e033714315e5
MD5 7b3e8b484480cef13bda1d1db0c3d9ed
BLAKE2b-256 b353d06e1bc4bd8b64d67b8b3957ae6ad825f53940a63638129b638ff27b3afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c33bf6cd18f2c7a0bb2d06b242f431857b348e1eaf3a84052bcab2fe73cf2f2
MD5 691002ca1dc72f9ada221fe32d77e849
BLAKE2b-256 3bcc261376c0d98aed1d3c4763aff35bab278812f3b31833b611588004979437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9464f5909ee824c42f7f811e7d84e962b96d75cc7e816b9c12722c162efcddd9
MD5 fb67d84721a46a7b28bf86508ba8ce72
BLAKE2b-256 794e0d7a410889a0b2366e976e7ed40d04a667a46881fb38e41d2869ee80cc95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 567816011355b39f595209070ea63d5592ec2b058fe2da4123d996643de523d5
MD5 71d59dedcd17ecd057d11719b312e071
BLAKE2b-256 920311987813f08b2cf80b874f35ae978ecdb143cae5fc7d915c1ce901a74797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f901acae8dc3feb5b5b73427522fa19b529c80e6eda0bfe6bebba4e87e9122b9
MD5 3a4e2563d52afbc7db18827442b1934f
BLAKE2b-256 28becb2395bab28b063ca8622058ccfd1191a99dff69f8e7029624768d77f258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 687b2842eca68a17ff6d136191da295d7af00d43f5ce15916a98fab6c5a604e2
MD5 7b583299863f0b8da3875dfb654e0a61
BLAKE2b-256 3247e5c4e7f8bdfbca370cd09f5e837a53101db8eeb8d078a47ee1b57973eb83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 408a35f1531a96d1130e2417cd57865badaf4a27e276c700cfb148369fe45b62
MD5 bbaa229c548dbc5d52b213c432136c47
BLAKE2b-256 305b5c92006a8f87b073b6d03b86a558350c4a8c35da1b4fca9f1a1d993bc2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0572fbfc335e929cbf30e5bbd3fb8c4f502a39a0b639b8efaf457467c15db55
MD5 f91527e914a9d93868d578a81c5ad0b4
BLAKE2b-256 a20ee76550ecef29ab6e23a12be315d59c288d265b9d8a06a5b253b2e7e3c8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cc838dfcc3c9f5f4a1fcef44ce17b7c67cb0586f5b1bd833e19380868af9e13d
MD5 45297543ed4a39f834627f2ab6441f91
BLAKE2b-256 c5e62539349c6e565d6d1ce04e49ce397565fd148b08e1d688a955ba08c3057e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c6db94aa2685ae1fea0cfac0d5f69a9b0ac966e488a71692d177ef5385c1dac
MD5 0a0b8863c1e561c31098e903d6f2e630
BLAKE2b-256 ffc762880daf6e0266379b3946ce7af5c5b8a1c5462602643072716c6cf5d96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1fffbe8974b7698e64f587927d7386c4b83e2393e78e3671da8eccb538cd8b4e
MD5 d65c9a521b527c41beed6e41560a9d9c
BLAKE2b-256 041e433fead6ba9ed5dca8da5e8093410c3491bacb67e876cf4ced9928bfe0bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afbd88aa36722f1bc7aa6a38f4727fe88206d99ecfd9d2b24d95c1789f043766
MD5 09cd85c9640ed8dade8015c43474dd54
BLAKE2b-256 6b00fbf15f2f601a4f29be7368c1d88c69d7bb07bebbed3459008991e40187ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b8afc97eff30746283dd4455c3149a07279da4cc43eeaaecb36abb30a00a6c10
MD5 145cc639937823e266046748bee6a782
BLAKE2b-256 b349ea3569fc94102b2893589e35564a801278a50f57b2f80735e74c04493b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3746aafa4c11aa801a6ff7f1f85762d524cd2116974786ab858c1b4a3487705e
MD5 384aea54bc0ddb2471796a28e739386c
BLAKE2b-256 cfa16991801d642669a6af5001a03c47d36cfce8616e234912120cc23afd631a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2382797891b263f59cd302244c68d6d4f7aa27b561775039e4e7784572dfac92
MD5 f10a60fe835580fdd6c09837f468ca59
BLAKE2b-256 74bd6233f45b79d76a15589a449ea8ce587fce083dd05bca151a64cec7c46eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3a041ec7513f3aadb969ee9e29e6a672f4fb932df86dcede3901b8ac7c9ce82
MD5 c4476f6f80f107f7d21da1db5b1c27cb
BLAKE2b-256 e09f1e8346cf1f0748290ad248daa14a975043b0af6fe42c559478150914a0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cd7f84ac65be8483198e3f690453fdd46d2ce027ab4e62c489ad9bb01118b9b2
MD5 f809536ee44849a47ae51b1f01fb5795
BLAKE2b-256 31c081c4029abf4de16e857bb8cd69375aa21caedc4835ec7fb4f5c006abe5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 df64ba40f92c15d8a56def0b07d85fcd9ba0c0298c4d69a0fa91756a1bb43fe0
MD5 4e365b1ed44c3573f4e49425d8f42fa4
BLAKE2b-256 ca813096a0aa61490e4f7c09bc186abc8f63effca6c4510ecc96a26dc466ace4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-none-win32.whl
Algorithm Hash digest
SHA256 27900f5c672892522ca5a40858ba4e5ce2152694badd5764b97a39bcb4b8aa3d
MD5 23227bdfedd32a7eaa453351dd27aa9b
BLAKE2b-256 93e39067f40368a87e1dbf5207d4e7e175733d97a1dfd67bebda5c399bffe9f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b1951c0d9c9bbd7044d4d81b59e1156415fdea8a60987759b3ee2d001ca396b
MD5 dd86d15b8007c104534e0a020626bb47
BLAKE2b-256 683f7bb2ddd0ac7da0b229dfe6f52f3e6a15c40fb9b0fc8b6fe87fe92460700d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32162afde1d3070f53f6c326e8f348f8349c1f39281ef7814a95af2ebd19785e
MD5 1c0b0327309bc4a01ee05339cf81ca15
BLAKE2b-256 c991194c713dc068039040d58a09cdc8a19113bcd389bc7e3c7021155119bdd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 065c2b016db063a2490ba55f95f2697f9534f2f9b94c2f428fd8efd1bac857b9
MD5 829de4bc4c6b909590a6f0b02d55adce
BLAKE2b-256 d45f36c482193e8844e1a76e59843fa64e012e4259dcc50786c7877c211a98b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a10fe8af154a029094aef82e03299b0b78a59b27cca2c6c6949e252906fc3ef6
MD5 58157279c93be04176f238c2efce5e4d
BLAKE2b-256 6626ed6b6c0f832607c88477be639e01528e6b4914ffd49ef576063a3fe79ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47c38f8499810613f0049f8a9c895db2af6958981408ed726858a8f105f589e
MD5 eab794549f148fa523e50aa94bd4040c
BLAKE2b-256 b8b029353a2aab45f1a1eddee7d979a09fcc946b4cddd346919a2d3c1d024a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3e1bfa6e2c8eeb7e132051405e06e84b5d113568196e0f575a335f2cd21693a7
MD5 f0c3c6b1fd5959ccbb5811a19f14078f
BLAKE2b-256 7d3377f0147f24f0aff0f826a7646044cd6c8c9d9b285972f94d2237d157f607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 d5f181c944abcb00cea1cec16c0173853efd1e1eb2f0df024371b5b6d455441e
MD5 af2ff6e1d17ec5d8588f213799b24468
BLAKE2b-256 1940bb3061fb89015c9db589a4bfd5e90289ec213b282782ece10be79579f883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-none-win32.whl
Algorithm Hash digest
SHA256 2f1a75e403f932db7e9fee93d4e25016cfe87130cdeaf5828f722b181f0e3560
MD5 f235bbc827cb467eb77f5b103bd8e4e2
BLAKE2b-256 82e6b980736795d5f62e7913b16e420e88f4a40b6240b8d631135a18b2e8f913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c9eb226fe957cefafc679dcf1c55e71b1e8c9c58c983b205288e8fb63d4ad91
MD5 1a16c8c8e973b8a6cc72dc3da67085ac
BLAKE2b-256 03d92a1db658b85e043124d77cc19da207806ad793075dd9e1e49239cec43b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5207749e66b26d7c4ae04fcc0ce274f9278322daf7a0c34bebb3b4192dd865c4
MD5 f693633e9290a2b909e28f515c608901
BLAKE2b-256 083d12ed50a1ce58fdb2911ed90d798766e91efd0e7543b77b3865a399cc9584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8bca202c2911dc0dc2d7822bc4bd397de348f64cd8bb5e7baff637ea63836832
MD5 6deb8ffc889377bdd707e123cba161f3
BLAKE2b-256 352ca6192895d257d2aae538d0020d23ef0156b6ba2120590edc46da7144dc74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a2868f736cc1bd94fe162e5adc1d8e678902f3899fb975ddceffb65890c8c09
MD5 7a0abe4993d88c8ce04d8b6545143c4f
BLAKE2b-256 f58432f5af67635787db46182e14bcacfae34362cf5026c9670aec3f22d6d7ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2668923251af374c1d3a61cf9986df1534c9c12dfc1b066821f939e90cd6277
MD5 6f67205af5ab00c6f360ff029f6df939
BLAKE2b-256 40e5910e6c5b2b9a10d776a072c87887f3972ff7451dcc1621a6b795c6a60f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101700-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d335f55469cbc32249fb82fb9f9bb69d8de4c58dd8b964fd670e89f79d18c241
MD5 dd8e60df9f95f4d2d67d1cf44015a2d0
BLAKE2b-256 f91b8b20ae17940526e0b1d1a0eab85e47f04033c813c24a33bbedc625df5702

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