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 circtuit 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.2023070800.tar.gz (584.7 kB view details)

Uploaded Source

Built Distributions

chiquito-0.1.2023070800-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.2023070800-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.2023070800-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023070800-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.2023070800-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.2023070800-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.2023070800-cp311-none-win_amd64.whl (503.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023070800-cp311-none-win32.whl (492.9 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-cp311-cp311-macosx_11_0_arm64.whl (658.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023070800-cp311-cp311-macosx_10_7_x86_64.whl (692.9 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023070800-cp310-none-win_amd64.whl (503.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023070800-cp310-none-win32.whl (492.9 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-cp310-cp310-macosx_11_0_arm64.whl (658.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023070800-cp310-cp310-macosx_10_7_x86_64.whl (692.9 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023070800-cp39-none-win_amd64.whl (503.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023070800-cp39-none-win32.whl (492.9 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-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.2023070800-cp38-none-win_amd64.whl (503.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023070800-cp38-none-win32.whl (492.6 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023070800-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.2023070800-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.2023070800-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023070800-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.2023070800-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.2023070800-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.2023070800-cp37-none-win_amd64.whl (502.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023070800-cp37-none-win32.whl (492.5 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023070800-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.2023070800-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.2023070800-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023070800-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.2023070800-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.2023070800-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.2023070800.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023070800.tar.gz
Algorithm Hash digest
SHA256 9b2126952d1e8bbf6dd072e669dcdf54a14b18fb94541be9c161e5946508de84
MD5 da130dd1815dbc89ba5b469687bfba5a
BLAKE2b-256 9863b646062290d1dbf2b8aa74e4637791225a508d3bd6fede0f0d0847694b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ac98b2916f86cbb0cfd4ac1676544873de03cafce24199984515a1728c4b582
MD5 f5864ddfbc2064ee76e5a428a08939c5
BLAKE2b-256 2d2227039bd61030518e84da9bb6b7551a9d84a5405010d0a26ac426eccf0d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5fccac1acdb421279fcd8bc40136cae6c031787b7c160708dd303ac6ed5f81a
MD5 2c7cf7b52d3af88bfa415ac6a025e8f7
BLAKE2b-256 c176341415d0e7251809741d6c6f227a8330ffc139899cd88628d65f4f80204f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90bc60d28124be633735ed295c367564706d61bd3d53e4cb7b8a33b6c7eca98f
MD5 08ae486f9e4c848acfd653d84590151f
BLAKE2b-256 904218e4b1c512dcf70f57cbae7c5aae05d22e4b5d966fad6174c80650d7256c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5697e18054acee07b5ed087afc930a41686b4da5b67b7e8d8584a5e5509657fc
MD5 5c8e3a3501d4b35e7f03db0e076bc39e
BLAKE2b-256 65515ef009579db41571b8e46d65e787e96cb0601f5f0350ffde0671effab39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1d8b2ea0ec85d2b3f138448390927426cafab4401428a4709b3de90ec0d35e6
MD5 dfcde082d87e560370e00d76f4a3d1d8
BLAKE2b-256 2246f53d8c6fdcdf0451a7458770d5cc8e245e5356875a22312e0104985cb848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 35a55e091ab209b1a166f33599139faab2017a279a1f02ef6643c8e00fef49e2
MD5 2568a9a3b1f9371acf181e565c27a0e3
BLAKE2b-256 f5abe83c991909820519e4d65a5002da52c5f5f657f6773fdad516121b7d9e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71c185ad3f9e7cbe4d9e008d89c3477f40fa53ae0954b620d7dd1200f7c8d737
MD5 834cd38d90ca43f0d0be48607ebfe190
BLAKE2b-256 89d85ce143105e940f61b700f1dc8009f5c1fec8c4206aa3f060de0ca91eabdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2944109cbab725d661da2e344ae833f891e3472400bb27e8ed47e9a1737778da
MD5 4313050efb510e7d581082acd071cf97
BLAKE2b-256 5bb54f02a6cd8eeb886904db56b87a7361f886554f31e5994124c8d922b5c662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a85d7151a28721b1bb3b90652c5af9fc4e3954a8fe8960e9379c8092249cbe6d
MD5 905b6dc95fc698859e7631c619bf5249
BLAKE2b-256 143483930b928c135ea48418251eb3b4cc91de9bc6d3ff549b5c6b4fd4974f8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6f35f6dbe4a24e0da35a6e20ce65a6cc6a832722fca5da9b7d85e1666fe0ac4
MD5 30a68f1fb04b8462324eee867a3830ff
BLAKE2b-256 f2c4d1d37bc98920564e6292e39d839d43e503b2423ca6fd7885f1b66a4ce5b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67f2828251d5565a0cd133ea625eb37f94c00148b5045dd793a5c936b1435288
MD5 bf4e186ca8ad2a738127b27272f47512
BLAKE2b-256 2db63e9ad0bf02aadbe677e6c8da8bf22e64f6e7915be0b90931b47f8dc3c299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f1bd5f265c8f79c97b387f8f66cb969497ff0a5aaa95e7b6553909320bea515e
MD5 4ebf5784a628c3002d76a602397cabc6
BLAKE2b-256 ac44b792bd61d549a6a760d98b09a2a09c668046d236ff6efbd3ab3bc00add9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9efe9c384552e6ba232dafaddbf7bf9fee4e97edd372fa0c9aedb1afdd8a9e78
MD5 3504a96fc282a213c0bc693a6e124844
BLAKE2b-256 0cbe72ad5277472ecffdc9a28236c008f63b6bfa576cb486622f185e0948bc85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3f0663f14843905e9a047206b4db3c19c1ef65a458d1187caa60e783da51903
MD5 d68726d7d252e45cb5836cfb055f8e00
BLAKE2b-256 192026f7a5c2b7b37183041a9232c114c13adceb1ad2eb79c63e2d266f4dd6dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20799027be230087445d3e380ebd1af28c532b991971da0b508851d30003bd3a
MD5 f6144cb82a521f2c1b3857bd3c8b9d2d
BLAKE2b-256 78198dace4b85950d1ff9e39773ee7e9a57480dbed868c36a29a69f9c3ecf799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fba1bde1574d01ff8b322fcb0101847e3fe2ef9beb3f722a724ff1029eed6301
MD5 66b1c9f0548be9dd58fd249dd97d57b2
BLAKE2b-256 8e8581ea6d918afe53ba3d81e2094f5b19905c0cf64fd7b6ffa637fbe4b7d005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16e737c5e58da7c2ea0a571735dde1e6ada5e66331b4bf27307d758d6cf56f3d
MD5 3eb640f2ccf8b4fea42d7a7d6fde5441
BLAKE2b-256 464c7369af9e4d9acb6bbe7b4f961d6e53a9dc60d989d6c58a8ee69e064a8201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1819783a124e68d4c41802935e179c3d02c4db1f80a9e850d6461259483e718d
MD5 c3806f5bba671a77f6b94c7c0226c8d8
BLAKE2b-256 bffd9cd21293c17633f874ef20475ea845915bb69bfbee99865225276209998c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24fdeafa6cf4bea1f1ff11692947233e0ce5ffba25ed8f96dece7828f199bf1d
MD5 c9f765cf24af7dc588cb3619b18aa03f
BLAKE2b-256 ae30a0e6b76d455430fc8735cd590c671bc186cd293f1f2f516fb2c320e3023a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef1ecf13af1c380caa443955bada9ef30100950da1eab7693db17b36dff12c5a
MD5 c9ecc256be945b34d3a55dc81b08804f
BLAKE2b-256 0fd37adac2bf3353ac926358813f347980c789a98d59c4a48cd3dba817ecf049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b1f4838204cc7b314d1163a8b7c2f9810799d8cebad29820526e88f1f04b930
MD5 709dec2b942a6dfc9dd48b1ba5c188fd
BLAKE2b-256 cbff044faea7bbd5aacdfdcdcebdb279385c31b24954d787b3867bb67cbadcd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 518f8cc55c285a4490e379e5e9e604d9b551e50e3964edc4f5e1489a700e1a80
MD5 37ea802afe5c64d7a7f231b18a543c09
BLAKE2b-256 1a8c477bf6b4fb8f777a9537ac0d7ea385f2628843f84c78b2ae73004d976bcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 269e6367fe12bf918d4f88a18f30631101b8054851b30d99a4665a784c616b36
MD5 e919b806529f14f6aad3a6354299d214
BLAKE2b-256 e75fe52075002a4595d41accfe608b7e7013b2e605fcd42e8bc0b678f5ff6cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5906e3650afcddb291778af1a801201f547e6c65a14fa17fc7abf9920d66d611
MD5 ad93331035e9c83bd1aab90d270dac6d
BLAKE2b-256 1be771a01b7a6e7ca1471f9322012b7f84c767cc31849a6286132ca2f39d12af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a5c98ec6bbf1c14e9ebdeee0ce2044d59481467de1ba97a84bd93236ff485e1
MD5 cd605efd7397c869d87efca7847b1242
BLAKE2b-256 361ac38281e3e1b8a60d1c093d077623860b1d82b9708f98bef2e4230c097afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24c7a17a9cd4c4e8060d81ee91ec190bac5a258e5360926a95ef00bc26c832ac
MD5 9d352d7c23ce03301c67194b1ded4e85
BLAKE2b-256 f119eb6eb6f9668fc8ed07aefcd19ab791d5d9131ce2292f2db7b16d956deda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d88e878567cdde34eeef76c9c2f74d4fac0839a91234d7ade6819b1da3aa1774
MD5 f079cb5da7d1cf947230fbabe8181b74
BLAKE2b-256 df016b96f6d2916dfadc897445f9441da19fbd3cd8dbf5950bf1ed8e6ced761b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4632767e1299a7b17b392fa7dd89456c11d9e321da39cade9e61f889f7460783
MD5 76b706c6f1bd43d65030fb5026dfc3ce
BLAKE2b-256 569499c3f129e4e045e612827454b92745210df1972c0f317da76bcd79453bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8eba35419dab71f644c5ab88b6d9cd85f0f55b3a84ca7b3025025b447c70059
MD5 fcaea330e4a68ebf15cf2c32a2616a3e
BLAKE2b-256 4ce08eaf3ccc7a8fdebc750ab030ab58a0c7012b06866bb53bbdf7a99cebfe99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 edf70e0a237ba083c902e61d5e0857f007e06ba10365cbe78a13ef91e795fd68
MD5 1d29fabc73815c9032895b40ead58b92
BLAKE2b-256 2f5cb47782ea241a15064d21a49aa1ec54b003e46f1f57d79733c552a6620900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0a5d78134c05aac1c4cb734e7b148d27e852099e27cd050e5e5d5f16bbe8c574
MD5 291df0fb35e12c1dc642d0ceca2ad84e
BLAKE2b-256 c42618a35b826532c9d1a2ba3ab950cc81e2e7e96b8b43d42bffc63b9609043c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ac6a8be57db62a9e8d83e556cb8e22280325d993ec356cd2f8335e879bf74c0b
MD5 607fe82ce843101a1b10785d15ccdedb
BLAKE2b-256 fd3dad50daf376d9f0a47dc6e5f7b5ac58bd964791c3fa490550b4337a87adb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b809e0d54f740d51f68d5fa0dda274b652d8f46ca1a3a6026eef8c8e3fc26b5
MD5 cf39dd4ecda3254c8f498b63baf00846
BLAKE2b-256 1623494aae98db80ea0211f1ee09e77a5473cde9fd479a26b19732a8c2be04b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e670413209f77a6e6e5990c11e320cda2a049dbf5a98f1967a03bb5ad36a1db1
MD5 77aebe1a04b08d81f0acc40a698c9a97
BLAKE2b-256 468ae4c3a160565827c98d84cb82357f43ff456f1a3a7b3b8b4fb1d9e2dc678d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f181c6e53856c64d8dd58fa56202b43f84d3c558b2cfa94812f2778a39fe0840
MD5 8116d6f64dacaf53b489d3a2aabdc73e
BLAKE2b-256 e1504cef79932c2baaecebe1ba706d5f3c0636fb6f588ec03a2dd2df9a3817ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d33381c34273c692a5bcb73f11c0980dd7cebf8a0936b813d2589cd2eadb187f
MD5 30837386eb94821318a85bbeeded18fc
BLAKE2b-256 20cf9127105209a7ff27ae5dfcc144d5e4753c6699f40fc4ca842eb0f28b9138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae6b3573be0d5053f9bd2263ca15a498572f8ffc7f2da569cf887d290cf30a5e
MD5 a23f4e4119858a694b1199f1e0d7627e
BLAKE2b-256 b23effaa765765efcda81242efe17fe764be0bfc180b2502f3b82ba58da671bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cbe6392f4f5f66aafa6cb022d773a57ef047c27fc69472eb7b2c1a3031c91422
MD5 ede7f4dafa1a754e9371f0b344e5a7ec
BLAKE2b-256 273d9ccdc27470ef3a02259204c2373d3e64ddce9ebc0b9f00e2ad793b96329b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1391e5623bff2f189b5743996a85400e7e90314bb5036b1f83b8799a16adb279
MD5 5c920182b4ff8855155331baea300f12
BLAKE2b-256 b52f08c3d91adafee1b56e4ca6d4d1c1256ff032d67681d9debc5b2688d9e6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f37a58403348cf0a75ac57b0e936fc557e6cb9046a56a1718e5ec395057f96b8
MD5 a0a627ef75d609688cbfb1eed9a392c7
BLAKE2b-256 96bc606aec6f737ab0cd54afc41e873f892ea5a385c391eaa093afc3da99ab15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a0244b6b9443cd8a06008125571fdf90e815ba1add4f5b7548cfa8857215ccff
MD5 9ab21ccec0ba11b2981a345257497c2f
BLAKE2b-256 74358f563342645e47732758b1b8bf1b86ebb9dbab568822eba80475a19bb313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2c8dd4bb5b0c276adc1ed8db3782d38a878025d2c5caa1ce9c5b0536515b30f2
MD5 ce17d51371c34966ea836fb7c001bfb8
BLAKE2b-256 1a4062d93af709c2e3cd425755799f67d04821e8898e0e33c442613dbc7b3c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2bba9d9a84e7cd51acea547f00367d2165d9d5e5ab5fe2168f23023e907be05
MD5 e9ed620beba32740a37a402c903675e7
BLAKE2b-256 3eecb6c9654d88f170eb49d794849c268ebca910a53d6d0a7a53d76ee27587cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89d749da2cdffeadc5beecf6c5cd89c0241669862326223dc6e94c73c4d29efa
MD5 8e14f88ffb1a2450eb5363228f7902bc
BLAKE2b-256 a566a473fc1cc05633507e1f31019951dc5179f01167a6f32e1ff570b37d8296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c61bacf9d88b23c42f99287bb3142f1c2384b33ad4e8e7f769b5a237d8cd9fd1
MD5 609f01ead7cae50256dc9e25985bb885
BLAKE2b-256 6ebe837e154cf2911856a375c3079661276e3ac580d88eb35262f6c9b71c7d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d00d1c3a35c078f1b4d4d250357b406b2b035560521b9136963bfd2345e9adc8
MD5 97fb63eb83ee341165ac82645ac45182
BLAKE2b-256 d9a87ec17c9aa0ee896bdd4f8aa712c640d2f64850a6dd62e65ebfcf240e4b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f896bdcd02aaac35921d1169ff99a723f99aa8f10cf6a82f244a1a49afdfe82f
MD5 31f794e516a688ade27bb21396bbf7e2
BLAKE2b-256 f4f9e94232ff1287ceae297cfdc082aeb858ac29bf61b880dbf426387f378356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cf1250db5e8a4ab59b8aad74ba547ad50ce56caf5ba5fe43bdaff1a323306ffc
MD5 525178569198e5300fad960dd6f57bb7
BLAKE2b-256 1cb8f7053d61b2166b58be1c3464f873a1122c7440b85fdb4a4b4691b47b67e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b900a07dc543b6337fdbcc0facc711f334ad2006c17d2a719ec0607d787436e
MD5 c66b1e4f40ea68cd6350705e620b5aa7
BLAKE2b-256 5bc8025c734571a88e93c83e33a688c801429095496596920b0545c5fe0038af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 05e05c8475f3b7d741c61963af27fbf431a5ac13080563b671e2617422928324
MD5 69cdced9becd47c42624830486413666
BLAKE2b-256 059ca3a4f2b4f430ca0b5caecf66f8b73058ef0c8241bb2e26e1f1cdee1e91e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c7ee3a970af0f884f360c0a6efebbe8313c3e9b8a0fe03250447eb7cb6169b99
MD5 b20f685bffe2d21da8e67e62042bd623
BLAKE2b-256 6d56f16201c5bbdc9382db36258ee2ed8b83965d105e6fba4af78f8d75d7812b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d06b9a9c41004fa142e14116a3ebeaabe63391626456ce17789eaf6a5b34764c
MD5 96b7d0f53145557e3f0aea37fe71b89b
BLAKE2b-256 1f3f5fdecfcf8bf6a20595b46c6a9c09e8838e679b11f08068a17b7b4e43ee25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdf15127b0a8381df6e3e5fe205c570e88d2c98f322ae515d1a1f954827beff1
MD5 e19e2a96e24f2ce859f457f164dd53df
BLAKE2b-256 25acc4d73929920328129a13b6455c8cb7670234f1037867f20df5f088f8ceee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86a71540ebf2b2bf0af99e956b59de1e47d73dc7da1e7d6d2669bed333d9e471
MD5 2f4c000d224a4eb9b529f4e2daaa9931
BLAKE2b-256 311bd90bfedf191e3753e0eda57ab72c5d5714579f87f94feed9696194ad1263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bb27c5559f12b4bcf41481e316782d6fb88ace5dbf5a68177eac3addb7af3bb2
MD5 dcb91013e5637071b58ee0e21b99d3a5
BLAKE2b-256 03cfee5c968d38b657f202690e788390f89460c869e5923128b196e11c6a9f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11417bb88eb4cacebaf4d75cf92e2917171872f54f64935ba40815a87c572ffd
MD5 15a762ea657955cffab628f28330cb1f
BLAKE2b-256 6e03ac173c787b0d2bcbb3ae8804e97f1cc06dd9b6b21ff304c7b56884328797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1838a67456b99f028c53e4fd18f0b59cd564f749f5897cc51feae6960e5caf90
MD5 0cfb8268e9495a6a1ec43b746d238a76
BLAKE2b-256 50f0713407f771160a5583ad5c41651088ffc69d30cc2e734271d04522330188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 62cf23260b8e4043b998ce60ae0d453fe590f8d2a6dfbf1df2d242e7440858e8
MD5 f2c212c7ef95960820d07cb65113bafc
BLAKE2b-256 f65a280bd753d1ad883825f61202065f8f7c3056caf95ad5624af29d4edcf807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0813f324ec7891a9e90c21776efcb46738e12364856fbe753674aae00e144003
MD5 6faa4fa7a64126e86d6ed233f01c9e32
BLAKE2b-256 261b9171d881973afe41f7a637bd506172c0ce9bc76bd4cdc781f941e49207ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6f09de11da44602bc73ca8c614c46eaad19671b296061ea616e9f7a3c150df50
MD5 c89ed8f6082c9efa9fcc5c52805c342d
BLAKE2b-256 ab12c6b35f472a19cdee758320d3aaf7b9bbaa5dc84d2b8de4e2002aa3d12908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f594bcbd12986c3a0feafe00820612b1e0d0ea29094026ba45baf0c317354106
MD5 7c2fd65d209ef6d569e403181c5fd43b
BLAKE2b-256 02f5ba1826e72d3ce4f86292ed332e4f2294dfe4cdfa641ae36df9d0dbbc910e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a47d20fdc7ff98e18e1114fbe388ea7d36b4e10b781e27c100b85689c8280546
MD5 2da633036074f111e8695954971aabf4
BLAKE2b-256 8de237ef60d4ee2085b255e99fe9dd6c669f3ed648c938b612f86f7bac03e80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b8dde45fb314afe183e0019a1d0a80d2bbc5e206b4d8910036b26a79be46b57
MD5 67b11e1eab77ea93016b32798779b136
BLAKE2b-256 774b94d5131b2e60f2d414c6b7ad1470a574f5769732e4039775a8cd477e95cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0547d36c4d0b494ecfc3b560d248ab4d4978c5f22a8d7d51994e750559fdffbf
MD5 8252fcfd85a3a29c6aa74fade9471c92
BLAKE2b-256 141e231ee291a5ac276c3c3821302ed1c5e3e8dcfcefb650182e1a3ce31ca748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b776260e908ac8b496e1be9a8d9e5b3d5d49fe5700539cfc440659f44f2befa4
MD5 d1920ae61245620db65c7b6c96740ef9
BLAKE2b-256 51a61b5f5e07d5946cb0c0740698aacf0ebc979def4031e72f6f7fa991ad84d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fd66cf3c1c2725eb67a4f577565f5be73727badc4b2cec1253e93e658a4958e4
MD5 f50e11ae2d7f198022cd3302df4988da
BLAKE2b-256 704e47ac943325ae82f631031e5e36816c09d1bedb0b786f2b43f5d0aff01ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7bcd8924dd319515f6549a9ea9f4ba10a16db79c515a4ee8df078072e430460
MD5 d4846ab0b5a1bd0a709ab3d3bb172cbc
BLAKE2b-256 4b490b710df353424a1a7659b506c96f1b752da82069c1a11e1b29c7c1647a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-none-win32.whl
Algorithm Hash digest
SHA256 6f578229878feebca2fffd688b64bfb9766b72118f3d0645ff6600701d65b2da
MD5 6bd7a61de26e3ffc4c19a79df7b07679
BLAKE2b-256 ae8e47d29df832017304d0d2b4c6ce2aa7c05746f9a19f626a29c96b6c03bed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f40537bb7ad10423e3ffda92e33460cc9d7d961a4a798fb95edf6f026924209
MD5 7ad2f4a48f24b8137e5d273cda92d9fc
BLAKE2b-256 da0969a0ea6358f155a76c998d71b29bef347683a3302f7505c32f678e7002ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f78990426beda27c9d0b09f43bc23221520feaff72edee2fde7ec66e524395e8
MD5 5c72de74b4706cf8c6ba5e1598b0dc9a
BLAKE2b-256 2b2a59e7abb9aa3a7eb7aa35ad6bff3a270b25f1fd4788590ecf9acfee579547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 936b67fc79ee3a480cef0c10fecdf7b9b0fe5f1ba64ec05f1215fd98806a3037
MD5 a59c578cf13f19bdab1c2349e97dd663
BLAKE2b-256 4d0a1d583460a8d9c297f1503e0424513fca80e3be978221162e26cbd9a7b7ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 946f0c18b63cd340cf22edc5810ed80024245ceb7d0169f26077c122421d83b5
MD5 da173b1b23ec87ad538b6a6dcb71ad04
BLAKE2b-256 e6ee200f0ce0d6aa72e1fec41355b9e7a6ff52d1b9ec416597bc7e82d8b40f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b04fc5331ccf3489672cbcc2f1b098cad13dfff2fbdf18951b2f469a23355919
MD5 ae654a65f7355d9190433e216da121c5
BLAKE2b-256 5cc17230c9d91230f54b29c856c6d0ecdc742cd69f5c3635d21cd4e62f19d8e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023070800-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7ef990d363ade8de0848569a2d6fa802e76b1199fb03c6a7daa59ab8da36004
MD5 471d60ae27605d69b35d2e2c6897dede
BLAKE2b-256 f5a4ca646673c26055bbc4ca482f32e3023d33076f1ddbbdf139f534f6d211b8

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