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

Uploaded Source

Built Distributions

chiquito-0.1.2023110200-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.2023110200-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.2023110200-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-cp312-none-win_amd64.whl (546.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

chiquito-0.1.2023110200-cp312-none-win32.whl (531.4 kB view details)

Uploaded CPython 3.12 Windows x86

chiquito-0.1.2023110200-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.2023110200-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.2023110200-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.2023110200-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-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.2023110200-cp312-cp312-macosx_10_7_x86_64.whl (747.4 kB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

chiquito-0.1.2023110200-cp311-none-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023110200-cp311-none-win32.whl (533.0 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023110200-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.2023110200-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.2023110200-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.2023110200-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-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.2023110200-cp311-cp311-macosx_11_0_arm64.whl (711.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023110200-cp311-cp311-macosx_10_7_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023110200-cp310-none-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023110200-cp310-none-win32.whl (533.0 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023110200-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.2023110200-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.2023110200-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.2023110200-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-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.2023110200-cp310-cp310-macosx_11_0_arm64.whl (711.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023110200-cp310-cp310-macosx_10_7_x86_64.whl (748.2 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023110200-cp39-none-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023110200-cp39-none-win32.whl (533.0 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023110200-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.2023110200-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.2023110200-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.2023110200-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-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.2023110200-cp38-none-win_amd64.whl (547.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023110200-cp38-none-win32.whl (532.8 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023110200-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.2023110200-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.2023110200-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.2023110200-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-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.2023110200-cp37-none-win_amd64.whl (547.2 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023110200-cp37-none-win32.whl (532.8 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023110200-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.2023110200-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.2023110200-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.2023110200-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110200-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.2023110200-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.2023110200.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023110200.tar.gz
Algorithm Hash digest
SHA256 42f8be0e0cdc5d13ea71bcb8d0f66e45ea5f8c9680eb2c9449c7108d7c477bdb
MD5 a1f7d536afd918b62b27db200242ee52
BLAKE2b-256 1493e1a314087f7bf14f674ee7accee54432a4fa1e23bc85fa4e99d79a18634b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47176810a018f7a395f7c36430123a5a696dc275b984e8573eba18c2390547cf
MD5 34b565fa43ac8dd38120ca21949c8b87
BLAKE2b-256 630e9ea3e792d1ae186fc02704eacf79fec488a5bbd92999649431eafc2dacaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4d8e3413f1751fdf0049e279c9f527d5f6e1f89dd28125eb6af38c523c460716
MD5 dcda86e01e0b24237b39fd14bef19d93
BLAKE2b-256 a6810e3e0c07446203789750764a7a8f3156a0af6bf23d3fccc998bff855b514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b9b203be4514d77814fbab75d7af491fc94d84e74fa43b040a519e3c507eb89
MD5 ac793e7a6b361c9de8be632ddb233b0f
BLAKE2b-256 18b3a8093bd2f4c01cef1151bd18a937795076de2a192d4094a0f8b10e18ded0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d218a51e5a8b303f642286b4cf51408908b032d29e6b4d3d912e562ab72c90c1
MD5 77befbf9c980e171fbac8447aaab016e
BLAKE2b-256 99834f5124c00dc27d68fbc192b717890ba5053ec635e8efbe90a8b61aa1adbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29ed4c276639bc3a33e33369368819582e95ce1b87c4dc775f5a3df426e9c733
MD5 87c2df2334a40d44ce530250e06c35fb
BLAKE2b-256 89da2d20ea063d5fcdbfd2b9daf756cbcac7fde93da5654a1edb219de4610018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b65fa3f09d533ca90ae7a95b183c8a40e6a311aa768f152769587737c383360e
MD5 cb441790265975bfac93525ef8a4f268
BLAKE2b-256 456e47ddd01593942edc82bb5eff63118bbd629fb8da6f5e54006b633536c250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98907e5efa6e24c99bae3e7ee5036e962fdf5665b51b2f187f7f25e80b0db08c
MD5 3d97ab08115477fc8d0e51659cb4b2fa
BLAKE2b-256 c742a32e15e7f2409e656421b88a58c130052af9f72375f4bd00aafe7fff102a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3339830c89eb0ac63d5efa6424c737f1934ecf111fd47f5c173b115381595415
MD5 8c67331060f9b77e8a472a224fe07810
BLAKE2b-256 16c0096b4d86fafe3156583a4b8f89477474a4b42e382567412d577e2e89e1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3c558b7cc9f85bbb3426b5fa548bd8f847e7fb6f1ee13570e6a2b7f7fe448f1
MD5 fe565f59aa13c75f6755c173d2398957
BLAKE2b-256 25e4cde5a4c8a2c3490b2f655095bdd5d59f59572144310e2a2cf6c41b2178a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43a170037eb59a9793f0350ccef7ec2257b964c0cb23b6a69f8b4be612671da5
MD5 1535311ec8a1f5a2e5b8454f518fec51
BLAKE2b-256 438302f3150ee8abb02d25f9ec7fb9783766cb3703fb1d8405612fa7b176c9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0810cb199800b9d78d22edcf0c71c1ed61b58f4764e2fa9695aeae36724e7c7e
MD5 23117f73fb799b49388e52fd6c7ccaef
BLAKE2b-256 48fd5fa69a18f476a63c12c9b42bfc2ece0d75a02d578caa4e2b71e69bbd835b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 676cba5d59b4b350de1223e97439d6281a6f68929924454efa255c66f00e3383
MD5 450b8ee18a2e0808af36cdcf0b9bfb1f
BLAKE2b-256 01da2b3e9433617c6c5babee796d97efb65aac81d4fca18f70119039a543b432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15c180a8aae0464a148070ef92b16db357ccb84b6891ef28270ae175c16fafdb
MD5 589282fe979053416025b3d4eeb17bef
BLAKE2b-256 6d4ca6d62924b01f52f4cb0b5c498d1c718318dc227cbae3e50cc6c19cbefcbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75a53f9a87fa89bcd047d2e4f9bf5b37d0b5c17f8c23b64b1ef16134f571a37e
MD5 d564787292d17a454602108209fbe38a
BLAKE2b-256 8250089c71fa5cd0e72688334b60ad52762188cde9abc7e74dd0fbd6817b020e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f7becadfbff39f88fe90bcd6af965672ae6b31737c8574983cd692cc0498ad6
MD5 7c47a3a977cf3a87fef9eca1a130e820
BLAKE2b-256 6437ee914dfa8c6bd9a7df265186b7058cba12edcef90f0da8cbae1a1651d9a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f70e229e0263d442965e6531faa931853000e16d6f9abe18800354b52dbdede
MD5 96e2cdfa3315e1078a9dc091f6854075
BLAKE2b-256 125a749d0f79310569c88c31dfa9659ba939c3d12e204ed336f9bbcb9bda106a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f1be349c2e9c20074fb332c2ba18ec8a02346d4727243219a36fa58da46053d
MD5 920b3ef5ffc89580fe6ed8961093f528
BLAKE2b-256 37b1515c80ae1a3f53e0b90f3a7a11d4c427dd6f1e471c4e183672ebbf83a271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b4810e66d5212ae0cf073efa949439b138100689bc692fe7b18acaa543a620e7
MD5 222430d51445343e2fba6df034667f32
BLAKE2b-256 f3a7116365008da9df33fcb9e4e9c9d593131a2eda75335bc83b043d7d4fced1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63dc0b118776c706889c30ac812dd41f24311396f28301531dae4c7bb32b96e3
MD5 bf63d1fb5362e71b68a71f9aa91da37a
BLAKE2b-256 d715f5c4b6de53fbd45d1e0b00ce79e652132606a008412845d98bed95cd9499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b55b859d97dd20dbb94bec8e80b668605cf2dced9689184468e97f3841c14908
MD5 e30ae6de56291224bf149a10efc97dc8
BLAKE2b-256 0561a419acfce4f20352bd03ccbd99628c17fc09875299212d8aa7b182fde396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 748c2abfed8a7518a5ad5f3a794d72b5034721066a3b897d806ac93906ee86c9
MD5 16cf8be09aa396245b79290d39e8d3da
BLAKE2b-256 a82f6a231893d5d589f1f396862a2f68f47f2437800aed5375be9a97b1dc5077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a27717641239240fd91c704cd3d3b2be4a24007102a51c8510557f754382fe7
MD5 c6124a3a724d0e9c4d41f0f690fd1713
BLAKE2b-256 b3b944a857df8473f3160086113d237972fea90de882455d2cf1b43026d796c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b36ac512c01d3c5ddbd7424aca13c03f7e8c512dc82d3c93345af25d12774716
MD5 df6eab15878105eac0866df6eb9027e7
BLAKE2b-256 0c4d32b101e738349ae0cc4a7f7b03a68ee9b699f12f714b1bd53800328c7a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 17ca17b6da2ebbb1e8aee5096fbf517b1ca07fe71cfb2559c69673ff24fae14f
MD5 4c7c337d4330226a09878075391ffb4b
BLAKE2b-256 1ac00266a432d59a097280a5e0c097870fa206bdc3ec801308ac4b4cb957843f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf8c348edee24c014657f8ea183dce22d690f927d2d14fa402991f6072cfad9c
MD5 2357ec77cc94b3ee4fece5660d5f9aa2
BLAKE2b-256 3f1c4ee94257ccfdc4fe9448ab1b6eb99aac924e0241c8b026cd6f171cb06960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba679c7067abc49f1c88832927e94417a757cf023e4b8de2efaef35f8581999f
MD5 fd7882bdf1de3e1c59b0a4fcb5b7f7c2
BLAKE2b-256 300482c12c70c6dddd8499e7481867bc046b12e3a029142b7778a677cb780693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4094552a2d5b5ac94314a236813e50d37ba30730e8939eecb6f7030c548b780
MD5 502fd63cc658a4f49b1af4ca7b7564f7
BLAKE2b-256 dc54b3506d88d79a311cf0a7f29bb2406f219479214f21c871e3c016176d9e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58d963c80fe069ecaac7940d0b94b1dae4e5729091a2dfddbdd3ff37abc7af70
MD5 e6eed7a53294a368b3a9964bd25306ae
BLAKE2b-256 f0f85d6cc5b9d877525a14c1111b5df8e5f9015df4c44c406cafe8aefa7e42ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8a1a96663e5b2e614d01ad49569d7d05b5a2f8af77e59e057051149d89146cd3
MD5 67e9eb3b25baf81bfa768d14d05337d1
BLAKE2b-256 597f62afc4e91ecc23da0436295d2662e81f4d891069cc22b7bcf07349fef260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-none-win32.whl
Algorithm Hash digest
SHA256 489fdba61d3cf14a27f22ceebcccffbb9ae3c0b0d753f3741f25a42e869c832a
MD5 1fa78650f83f70c1f1c6a3b0fdcf5dc3
BLAKE2b-256 d841bb4ee19f7bd65d68d8bd8e367ff63c209e7725f89029d1fc115c1ead42eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c4ef0fda44d59a8733959066bec16aad25ac5561502c2f370f245197ac0843b
MD5 3858c513991e5fdc1358b76b5d6187a2
BLAKE2b-256 60db8f87e3537939ab1dc4de42b19336d80c945398ebae5f813ded319a83c0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f1593d79629f48d7df6d84b0bca7b42b8a142af0eb91dc7f7a5bfd1cc52432f
MD5 04adf201ed0d0f722087048b67595c77
BLAKE2b-256 3eb0655a51860ca2e6dffc884f02878159b720d887cb7e08e51cbe047f56df13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43bace6f9f62cc219fba90afe3481c318288d218638692b7b687a88f0b46345c
MD5 19a6b1e8d64c44b7de6f3b433a3e7a6d
BLAKE2b-256 87e2ab6155ba54289e6d4350a52d663fd941babd5542240a771cee0f38aae3ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e12ee33ea313aa8c564ee01b0bedc6fed72a9575fbba4bf7cc6f44a7af7ac26f
MD5 3107fc49e0c475df90e511fe661a7076
BLAKE2b-256 82764a1bc2d0809c4ace531b82b36cf07dc0ce92708c3b67415c363a71b17ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ff1323771865e9c17fc5116ba9aad5e42ca24d2e0ccd72d2f37522b1c8ae3e6
MD5 1221cfcd7f496a70f1cea6eb8bda938d
BLAKE2b-256 8860a3b6d56e7f21e4e0df1da387778a1d88bb74cba7e27c668cd900a03e3d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2007863b4df8bec5b436d8dc92bd7fc051da5068674e3fa30b662f217130f5c
MD5 e2366b1e3e763f7989d6c8748da03aa5
BLAKE2b-256 c5b2ed449451dfaa65c27f74570f9bc78be9df21c372a1122afe7912fdc050d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d8cf58fe88584d8601497723034eb0fd2be40ee18045deb95916961f2ad60949
MD5 0a6f97076ffe9dc4035961b129e2e4a6
BLAKE2b-256 8231228d1126c0c74e3fdb87a30b05d0cbe96cbdf4329c4529d0681a3037ae15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 01a5e937333d4bf46d15e303723c8a9d6c406f61344f314e6d48194c3cf90e75
MD5 270759284f0ef643286d342ed9985a87
BLAKE2b-256 b125db61700a97f0d369de8b9741ea01e4a577534092cf0019e13b41807449ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-none-win32.whl
Algorithm Hash digest
SHA256 63ea93843261307ea163a2533b26e8e702252fac26ab0e5ae91729d231eeb0db
MD5 0864af07eafb7091d80764b069840c80
BLAKE2b-256 a8551c69f61e7726d49a16365140ca5bb62c9fba6bb22705d20ab251a00ec37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b2b0f5b3d8fd63b36f5b8a317a43956b49cfece2ffeae8a793e1246704f0b1f
MD5 60cc9b375fdaceb77d434a21944b0fc2
BLAKE2b-256 e559fee7340aff335b917d2ea0e26d2f6765d2c6ba4fea1ceab2e0b570e20082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6316e063a1a11951cfb18ad37b45bcf3a0c06f78c08af6e9dc25666f44725718
MD5 b51b8ad1bcd3ea3b169aa213467027f7
BLAKE2b-256 72b6a6d04ccdb797ccec1dc7cf7946c0295f1b01cbcc88db99c6aec3c2bd9bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8b9441aa015ae3f78ccca00f31c6f1a16c7610c4d196f25eda7c43db58be17e
MD5 7ff4d0c6089bb8d7b098ba7423add1a1
BLAKE2b-256 3e08dca272cbaa840883073d3a6ad36d03dfd6b2e4a79b3e4e61bd0aad594ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34a1bc1c4983c6ca6ccd91a3d02dbb3b84d0a0645a81feca816b63c0cdf64d80
MD5 a9b0b15c65e708f6982fc108dadf2bf5
BLAKE2b-256 16eabcc097d5a019262199523bd2fb96a331f9bc73b29b5ef1b1eea2fa7aac06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 23b504fd81da5c40f703c55e250386f1d46587a0741f1ddf214354a25e5f8504
MD5 43f8819cc644922d924d96a84b32d11e
BLAKE2b-256 3a7884e06a04c4d3ade3ad73042ee03da50dc57bcbaad865e6fc07e8001785e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e22bf41eb1c14a383b6211486f7b0ec71f7400d67c9af2a8103ecc62c1238cdf
MD5 deb16c684b824f002938b10589873a27
BLAKE2b-256 97d99ee17acbf416de9948bef6e896db5558e22dee370f074576095b5d687b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00ccd9a070ed9b1f7a38d5ed13dd8e67a394c1893b3391b8bd72ce23f29af306
MD5 1c3f69d36e1a497d95718b02ac776c54
BLAKE2b-256 ecca638a060404155b355a3ef43bf0788737686f625d417ecb88a68b78b4e9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 423cb998894ce2af5b9cb8e033a69e92622d739991684bf6599e60c025b2ecb7
MD5 72679255fdbf2436ac418e1f39d43e2f
BLAKE2b-256 a21e17edd3a0cbec08cfc8f1e551d97f6de310dbd3828ba542291f993eeaf28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b3a3902ec3a575feabc102bac81ad1d0cd4e169994460df13eb7b83288027856
MD5 51c6a9380a5b9222c697b4bdbf55c2ea
BLAKE2b-256 412adbcc09d95d98022c4057c50e1b1d61343ea83ee0b018bb086fa672372cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a6353e21ba6072ab47e989b72e8598ba915f6cef1ccb67f5e31ba7541c2fadf5
MD5 ec6bb586f36c7a4ce7ca31e52d08e81c
BLAKE2b-256 f7cd6c2eef71f60a6889d504bd7572844f55baad4521d78b90609a70e7f3b120

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce680b7d04e14567575c1d757cb2ce6c7d794833ddd17b51f46a8400723c174e
MD5 b0edcbe64e14835cbdf94c2c0caf12d5
BLAKE2b-256 4486a546acda35f065c1e0ca1023dac0f56ac468ab59b2923d8bbf61a9205225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8267e93114355f61a1bf610b8fc4dca2507f4d0d0ae6c335649defd138bba6d1
MD5 8da1febd8020dbebc6da5ff293cfa3e6
BLAKE2b-256 db3c6917ae238ef4331d6f1b5efa65a244618671027abfa8b851e6217c3c11e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98138c8acf54665d920fb788cc976dcf7b324c3f7e80596daf866393f58f744d
MD5 f861729fcdf2a3cb79403bf194c2de67
BLAKE2b-256 af9b3435bf5bc5b56708d45cc7ff4b7234d08b6a641e4224ed0308766506fba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a249247dedfa01a8fdf496badbfca9e01035bdfb635c0eaba081c12049e2f867
MD5 8b3a66415da02035d37e70f15ac39309
BLAKE2b-256 31e1886ccc310ebcc0b846f77e6fb5671deee61b01958e64492f1bd763468c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e13f9bb04a0d77fab39633a5ce65bfd51702b55a56e4b80439a047f9f14a40f7
MD5 5a8d15a5d85e213f7cb06a66b1e1ddde
BLAKE2b-256 c7190c1dad86e5bf15373626db003d5234fb505a0c1bf7c80c408599f5c31014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bfee5720f3fe929c99697877ebb03f90023632f3cf36ecdd77a9383ed6752236
MD5 be3ad4c7d19296166d789906240fcfb4
BLAKE2b-256 ccb13a162dacaedad9aa6227d0e9b8646c20fc39642f113b1a4b8816bf850f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ce6397f2380cacd2499341fe077a3001988314d97a882e4d728b8ebb7f5049b
MD5 e71818572ce3a5ba4a1fc9a7f69e5db8
BLAKE2b-256 4f27d47680169d21415c5dfb64ccc24487658998d8b2fb3764dcecb9d76edb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7e663bde36a489a022d375c587876a4aaa0107680833e203504fb4342a49ec05
MD5 746fd10a676898a41a33ff4ba14e28c9
BLAKE2b-256 a05687a86153eea927286422aee7bc63f3375ecb0560fa63e4c7dd80ad05c4b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 09fb420b5d59d8503649ac47fc0870bd8db4ceb5c222a18967c65a213298ee14
MD5 e741d7ff29ba475f2474ec6291e6e277
BLAKE2b-256 0a44fe256bd7db3ea5b5602be0d79d47bbaab252a86cd5b974adb8646d3a50fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5b36008d337865f0a8a688c16e868f675d32c8906fda860d81816e7ab1340a19
MD5 5ad89e69a676d2e1f8e642e9df664e94
BLAKE2b-256 8a7641de72fc3ccb132775d8d6d24196d1175eb16b90181c69d7f44fa5785c55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4095f094e3d9e0ce03b3991305932c90d9f4fc58dcef1086ff40b3e448b196bc
MD5 7aea3dc03df34df90b6936c2409dac11
BLAKE2b-256 8ad59a80eb844dc024076f7c3962d968eb4bfb43d7bbac74513ed08c4064b840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e1fa33b69ae7fda9fa99990aff663b6e0b02d98869a5a8c87564a9c0ad58927
MD5 31866f909ce9d4528032dfae00775d7c
BLAKE2b-256 1379fbd4bd76400a65a50dd9d7e7605ccfa064bb9fdee8c87c35f813fdc7a17d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3626f70ca917374d849d3619bca3c91d2f0f001f8b66619856b28c3ac5bf8094
MD5 d145f04c344422c236bc8e901a401631
BLAKE2b-256 c4b3714c356d8ec6af3443324784c87a90ac5f07509b1fd59f1e67f79a1bfe1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 685c682885d9acbda2cfec50afc72e76173502886d6b7e45d84a3225ba717fbb
MD5 b894743147a82c1fd472ee02cba96406
BLAKE2b-256 6dec2bbff4e1a6aedcfc7773d4e69da6727a6b970819440a88e555bfc9fa24c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e8eaf1a90df5a89c091ff4fe7b67bd7e09be74ad9cf24aae5331d0f775e224f
MD5 5035f0e14f700536db135831dadfc458
BLAKE2b-256 0ee1487ba8fed069bc1f98c57656db1d0e138611f583cf4e093290a36e1f6239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cb7cf8dfea36ccebb6f335e6ad6c9d3918ef3cc0f3ddc0d181c50016ac8b49eb
MD5 0eb2abbf5041096fe79528fa5ec549c9
BLAKE2b-256 9d671f1a196c5d676d0599c9e5e121a8b2eb9676fa16450c27a77964c30dacda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f6b9fd85863b0cca9e3b861dc250d38272e40246d61db6799de203eb3a8fc72b
MD5 bf8fe0118f65b19a92cf5c4b4355f5c4
BLAKE2b-256 d20eb65db50f95dcb287aef25c3456b5be4383a6bda37cbecb8913bfc61eb76e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-none-win32.whl
Algorithm Hash digest
SHA256 056d65d0df69f4378338d18e3104cf1aed19ca44979848dca6153d107bd77ebe
MD5 06f1b08ee4e2867a77977ba0034b5d6c
BLAKE2b-256 f067507c7e09c3635c1102c37517a3a0b2ea25f48ab7c0ae510cd19dc1845652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96a7bdafa33055034037797b11ce507864dab9aebc3f05ed2624cced97bba516
MD5 af4c81cccf3cff505b9ef02354b6e4fd
BLAKE2b-256 f9bba3533d562b03897f419c895cc67c31cf7c8a8478c731d17c4dcc4df1c9a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 456be4bef57f87efc7f2ba853b248e7ae9dcde73b6eb7cead96a5b847c61d23c
MD5 6b2fff48476d45af5f06565f368493d7
BLAKE2b-256 f74b68a064639eee39ada85ef2b103a44dae5288d8aee842a2c1818110ec7341

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71a2dde58f8c2a5eeb5ab0e5c79c9eeb7feb11120c0cb108e764ee361637bce8
MD5 cb2caee2401e40663f0a5779cc0a9b83
BLAKE2b-256 1dbe689e666ca3e2c98b5b78b88e7f03a4735b26cab05269d3a371f00eadabc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03a51ed13cf990763cce6bd3da8d8d95d847cae8afa907c155484fe2db420715
MD5 47da9a4a540ae185a70806e074288e84
BLAKE2b-256 9c22ece24603132f5bcb2cac0926a02dc789ee3dfacfe459497fad71e4bed127

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f9e0309972a92d59f3c574096ff84ed59c2ef6f982210e86d57351090f3f904
MD5 37398bf61fd0d506adee4dab16039cb5
BLAKE2b-256 1bec7600cb6c1ac4531f47fcb9d226442c8a53f0360bb7184dad180066a5cef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9ccc5f7473329779b16aca01cf54a58bfa64a5be9bbfd7d19c46a475945d54e9
MD5 b801d6ce9f4db326d09eb9e11c3d8c54
BLAKE2b-256 db64ac3ed5b501f5143e0dd1f7d221fc719331de52bac7b7848e334dcce258b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 502adaf1093b2165e936ecbdfe1dfcbdc665abd13f47d4160386f35b34132a77
MD5 9945bc3fa3a27f489a0770fe65d9f61e
BLAKE2b-256 c0e906de847c0cc2b2319330b9a22ecbdf8fb8951e643d6897efe0e389f0b31e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-none-win32.whl
Algorithm Hash digest
SHA256 963a9505cb24ab857107f3371531c7f5dc4ced3974d677afbf463ea599ed8be9
MD5 3f9e0d0a5d5d6eda1b2eeda01c2004ec
BLAKE2b-256 d68cac6b23de01bd19a4f86b556df9a1b8cc4c1108a9b3fbb4bd70ac23049d31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bcc2adc64a3c3f4f305552230990b2fe9c8adb907cfb5386d9580da4a9cc233
MD5 89327cbe76b9a9461a0c82757f6b1c67
BLAKE2b-256 4bc921f31b2ef940b05c700f4f4902f520f65eb97aefa32cc6f715e62fe945bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc7a027313dc823df6b4d601c9e28ceb40e1d1b8e1a49b0d4ce7cb14285026d6
MD5 8c355d6714f9ee58d6904b15c89a76a6
BLAKE2b-256 12985db01b775e7ba3868b1821885bbd58c2fa293b5c5c514e2e487f904c0a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21c20a735ddafaa82842597d7a7e9bbf7564033a18e1d449d09293cd6d625457
MD5 0dae7eae8bb985bd7752e2c2e58d9405
BLAKE2b-256 eac962b53535b8a0c91f1b8c677c0f518d40d80caf589f6a9d794277014f1ca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c3e4042b7a433e7b34772867817ff8037e6b72087232df1cd857b5e3ff6da77
MD5 3b8db8b738980c78749cc1ebe59d2318
BLAKE2b-256 04e633664ced0daab047fe8542a5c75eecc7f3d71b23f1e33310d2e2b9e7db4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41cb5bfc18c269c9478f52fc4c8e337e21674fbeffe054141ef359801bf7e854
MD5 373ea3f49596fd93081ba597d77b3d39
BLAKE2b-256 eaf58c326dc6a8199326bed915b54d950af9600f13482615c969eca44815243c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110200-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3ac69f5b0f3fb75b4d7c8fcbe064232916a5a60425f3dd7527ce314f5a6bcc5e
MD5 243365f98223c1b44b756708f28b4671
BLAKE2b-256 21141cfa96936d75f6f5dbb6b6e9a2a1e285fceb707037d7676e2b967b811c44

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