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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.12+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.12+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023101100-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.2023101100-cp312-none-win_amd64.whl (534.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

chiquito-0.1.2023101100-cp312-none-win32.whl (520.4 kB view details)

Uploaded CPython 3.12 Windows x86

chiquito-0.1.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-cp311-none-win_amd64.whl (533.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-cp311-cp311-macosx_11_0_arm64.whl (698.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023101100-cp311-cp311-macosx_10_7_x86_64.whl (733.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023101100-cp310-none-win_amd64.whl (534.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-cp310-cp310-macosx_11_0_arm64.whl (698.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023101100-cp310-cp310-macosx_10_7_x86_64.whl (733.3 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023101100-cp39-none-win_amd64.whl (533.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-cp38-none-win_amd64.whl (534.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023101100-cp38-none-win32.whl (518.9 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-cp37-none-win_amd64.whl (533.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023101100-cp37-none-win32.whl (519.0 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100-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.2023101100.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023101100.tar.gz
Algorithm Hash digest
SHA256 58c34e1bca7f9333af78cddfb8fc5a0b2ed11fdbfc479610e279f2986c838b37
MD5 18f839473a016142b7705d394fd4bbe1
BLAKE2b-256 add171a65d5015fb444171e11c1ab8fb041b2a8e30cbd408e2be81328e63003d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 787307ece443be97d85b159cdb92d40e7cc4f5af2fc2cb7ad2232dad6a8ca1af
MD5 47166239575720201253da1aa7b93ea4
BLAKE2b-256 e15f97c1262356085f5e7ac8978d56c65fdcb6ab9fbd4e706bf3c7dae3ad357f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f669b452ea05d4aa963f89eb63b02dccb1aaef68064c2ae8dd1d44b50af5e21a
MD5 58e0ddbcbf43e9500b27d1e8c3641e9b
BLAKE2b-256 ef7292b22890ce9ab25df7bf68dbb114ed69446dc7b89f0cf92c7b20e2ffa5b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da9d4207cd7f87a304fb3f83e28d012dd82d01d12e71d854407eaaa4c4930403
MD5 e02b9ce014b22aa931035fb70719ceff
BLAKE2b-256 dd107ba063b5d44fd4558cad9ba1c173865b8e7eeff3ad9e090e95a056b1a8f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bbdc29963c2ea7c01b7dffc4b8ac83b92f69c97e6988ccd4dcb709312fbac63
MD5 03e0aaf9278b3b8cca00ee2375c36a66
BLAKE2b-256 00007570f1b01e7436151295a3c8f1a8279698161b882fc9aad8bc150bace79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49b125dc79fb5f28479de2641cd21c08bb3258d997a188970990c8d2fc5f7321
MD5 b2a85fc988c739ad20e974a3eb7073de
BLAKE2b-256 14321c5211ff372c603f00f4f72dbf144e3d027780085157da66940226d8d9a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 46540c79150158aa29bccc3a6e10d7aa9469416ac0e2b4f18dd43b528c3b8a7a
MD5 491fed779c8deafb85e474db3931fed0
BLAKE2b-256 7a9049a79d8d3b0afa9fe63677dbba7f8dfc3a5f5d553dc99475c88a7fda5209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e5d5807da25a776dbf11f49fe308469845bec0657e47b2aac4ea04df7536536
MD5 cee54ec31592d56b87cf13fae522eb8e
BLAKE2b-256 32d29291e272bfb058940739570b9ef9326801b6d4b5576ec189cdc85e147947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b3dc0dd27b12adf327e7dca71225069d69683ac6b03cdc9d4783b42849da1d0
MD5 8ba6732e8e616bfdf8f3e4b1674ca241
BLAKE2b-256 4bd3e5593990799abc44fe7318f43cdabe5c365327c4121e75f0aee429fd1737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54643500ccb5320a42e2640e5527643cf9c37e33b9595f8b8b2a356b0c17b058
MD5 1da096a23ee92a8b3143f049514b62b4
BLAKE2b-256 622ac702a0b343a0c9796b38507af35d056007e07f0a2660693eace8a90fe3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3de2b6d867559f54c3b5c2e3d210443b0034451efcb648efe9dcf5cbe18db518
MD5 d04f1a5d6e286ab6592b6ca378169971
BLAKE2b-256 7d9faf937cb25b4a0623f6b565d8e12963c8bfd21f4cd9035bd80560af0c3061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a9450b90f29b87f79ca4aed691303cd6bb1b2d35d235d4a9181352de2fe5d3
MD5 eadd7e7a070ed4410756b6b382cdf869
BLAKE2b-256 8ecdb8181838be4e3782da29b884a5996fc9654cad109551530f1cc519667f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 041453f9cd40b543da368dd2ff1fe6095fdf7ed91986ac0fc73384e236271047
MD5 aa7534ebf890939dc505e595c8ed2b0a
BLAKE2b-256 98b68c1d80211c7360fa5ecbbb2bada4797a12753aa15caa28163093705f88ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52c72d2da4b3fc167475053e4c2aecf8d85f949b1527fe2e28a2d7a1ab2e88e2
MD5 18a9953bf815411758009f4345b8b4fa
BLAKE2b-256 83885eac736636802904d6f152a152e4329a9122c5536b97f16e54ed85a74fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90b443fca5f7b6a2d91405958ecf6ee45d3a77ba9c1800d4f528cbe2c303c4f3
MD5 16828b1114a18032d2ad827761e7d341
BLAKE2b-256 054622b623d7d0831216877172c64a8e840f454fbe1d268b0ebe06974554ac3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82e33f0edd1a7b1458b7cffb0d900751e9e8f10260dad7d1c8f31cc08f90d35b
MD5 337a478336e9ff422fdbaffcd9876124
BLAKE2b-256 052f8b9e33c6787368749db3407a5987692340878f4c576e1467f20ac2018739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b34261d5db7606e7b679d98efd136b4b80aa1d7831ac96742528de43e9ff7297
MD5 af1838e83a14f78635196ba9456b435d
BLAKE2b-256 300e18ab96a4f4993db48ea7ec5de746d1fc93ff4b363cb630f3ef443cacd67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffc11aacb514780a70e921fb351da51899ca0e45c281ebfdd9a50655cf0f08f8
MD5 207c3a5129a46bd696a1a44478500277
BLAKE2b-256 78829d974c4871ba1e20026d3fa210ae070886f46a7a7f3235c4d3152d58b246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 341a6c386edd0f74c76cd1508761f1b70bf7cf6b26666752d59eb1f8cc880fbc
MD5 91be8605db559d107ff3360cb270b979
BLAKE2b-256 00d7db617416fa5f4405796102e9386c64ea4fafbb64030112e4bf15ee3a26c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4096ae5371602925bf2a7369cd2bdeb5baf9485070a3485b0f04df8ffe44bdd
MD5 99d58e61cd0695065cd797dd48ceafb5
BLAKE2b-256 cae9bb6536e7df4c446dca7f4d98ce5a774b611dca857af6c5c73488f0bed5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5798e9f16f8607fcd71cf3ab75dc8884e02c8ef03065ef9f7164ce7c23e29682
MD5 8fec7b7381626aa2f6bda70ae20be78f
BLAKE2b-256 5d55d39def0f07c36bcc4b579831435f159c4cdd2de442ae4c24c40bfa6fc90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5e9597b8bcdcffcc3ff33f8345fcec78d175e0d82f1e3745150366d3c320ae2
MD5 2b774596fed10cd0ff81a655b4ba4e98
BLAKE2b-256 da5fa90e543e7466754dfc8be253de97c0c1087e3b3cd7f87af21d3862f7138b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3055483fc6d736ab80d1c69ccd022fe2bc37bd42a0f15b19349e16fff0f6d3bb
MD5 79573889ad26aceceb15872959ec04cb
BLAKE2b-256 e03cf5eb9bfd4c62ad05d75e71f359ae026c9a1fd6ec3cc39ba6a7eda4a28573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f31590bb4a1519b7d75183797adfd1b189aa4758329253f351d9a6de87dbe0b
MD5 a1f8b074afe4b5bd296f452c02780b46
BLAKE2b-256 52a46150ecb9eecf757b7610aa3e3f608c2a12a10c4fb2e8d4c69923010d8dd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9e99f20c0379f7c1f3d4bba097fadface7a034eec47ff160db54d61d0d48ed73
MD5 b94fae9c81cb231731285a3f2765d540
BLAKE2b-256 e104b1384f024388a5d9b6f7a958a5c9d8e6c02481f9691f4716837673a5907e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1512b395f8fb9235f7e538065eb23772ce0572b6aff7cc8043ef91ab1c2edddb
MD5 fa9ab97a3fd28609f1475ea72d8d5b77
BLAKE2b-256 54cc6bd5525802932ebe918c973b03f9cd2cb738b4efbbf781e5e75b9484e39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9af256b63d616b721ed2da974bb165af1b144d2669093913fe01d6a122a9f53b
MD5 19553cc4c36bf63ae6680935707eeb6a
BLAKE2b-256 13b699fca2957c6a5f6e17a06599fc54eae68aad8e94fec890a91bb4b14e5264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f3974658233b534808c720d18b1ff61aa3cedffb2be2fd88bdd2073b0004359f
MD5 1e89e10dd057d198f64544fbf4ba3a3e
BLAKE2b-256 de211d9f19612c9bf5442bb9bfec33db4d0629d17d8eb012eeb393a7f1f4f88a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2481b8d4854ad6bfba951e0e8f1fbaa208efed9f3c0c7e83c31b18b0d00a1710
MD5 136937cf18f4c1b7ecf695e720e2ec58
BLAKE2b-256 6c3b5fa8245a8be7f674bc01b23f82f308be40e68fb76ace496064483351dcdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e6120abda85a38158571b805a3cb5a667f756f6ffc4030acf13805c81987ca8e
MD5 61529b54c45afc8a59daa518538988b2
BLAKE2b-256 a5ccb6e0879e31f9b958ab66f77ad3b9846f54fc953ae6ad36eeb023819ebfc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-none-win32.whl
Algorithm Hash digest
SHA256 132126b7f7f666538fc882009a80d3d2b432f07b4b5d95880dc6f48394260e33
MD5 7b76773892d4e51ad680bd6386f99a4b
BLAKE2b-256 3c12a293fbd363861a3a61a6ae321bb1e21789067aa6e12303e4a85b91589cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9be34c9e55ffa8476fcba619a80cfda9126f5286be453c6b36994d4275586efc
MD5 3f8cea6b0936bd178ada1963996de416
BLAKE2b-256 6f197ff760205e8bf6d1d3b4af07a2a5b530b8439c060a80ee28ef6e2a336ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f3fb67c5cf84e5309c982c383bf28dd895d0c378a0cc75c971a5a5d044e52c4
MD5 aff9924fc35de35186c4ca88ab57a81c
BLAKE2b-256 2459d7cfbbdc6661fa9c94f332f1501295ae1613227828235c9e5c2e3904293d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c3fadc659a3230e0da55d54c9e024377f565adea172c6a9e4ce5ca6a3eaef16
MD5 55b48b99b35227023005c404eb3effc8
BLAKE2b-256 531d6de2aa958cc76bafc0764a1e8fe5cd950e244e104457e3b0900ee70e7b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67f4b82f6bf0a2b5dce9e324641549d191326d1db11763048e4c8f3f87d5934d
MD5 ece6db85d5b846255b0758c7b7793a64
BLAKE2b-256 d3b82ed5298897da11751bde17d9b050b855da0ff7eaffd584fd7128ec7cf60d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad2ab5f422b79bedee38d74febc551e496bebad29a71b41a35c88978a26a8fe8
MD5 e33a4e25bbd76fa74d220606b62ae6bb
BLAKE2b-256 08a86c0496b91aa51034fe317f793d554997fa0c380ef2c3c405915bd2561222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 02c020e281ac8474532463231c71773c3a600fe2136d2207c960b34bd50be51f
MD5 295d67f8c691b46506bba06f1f63a116
BLAKE2b-256 4b36b0e039668fce1dcc838186b24dd337b95b1b1f36fc373bdcca46002082e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 92235242a477bf5c9259fb9bb666a6a2b591aaf537d959395414735856eb4c2d
MD5 de612cb1a15397a11fe69c9619165988
BLAKE2b-256 c45d9d4784f844bc75b974f22dc18a647fae4828d2e32adcabd97b15368e68dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-none-win32.whl
Algorithm Hash digest
SHA256 61e951e2662d55b9014e3ae26d49e64994572de82d4a8b6916451af68b262151
MD5 e6dd58fbec838ac0de8b4848d4905523
BLAKE2b-256 701b35911b77e07812598e7c5b49d72183e2d6b2d4143d976bb47699bde86629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3ad53416b2df5632007356b95b619cdda6e5287ee58928ad6c1aa75eef8939f
MD5 0796db2d4f21aef464dd23515b507691
BLAKE2b-256 329a55d8cea68bcdbc9228d992411e769f1de8c233228cc03f94bebc34b99131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20e8314bcf108cb0b4158b12d2730f7f25d9504d81cd716400b8cc9dff36d932
MD5 ded60739e2db3fcdf32c2e645aa4a639
BLAKE2b-256 4be4e6e45b19771df6368ffbda7ad91601d3e3a570386607d14e55cb0bc09a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 deb6727f8579f829ae37fa3ece28657d05ef2f375b10963ab036e8503c9a926a
MD5 fd748fe42dd65a596010a35aa81f610b
BLAKE2b-256 b543ca18fbe5a23afa8aa9fe3f0bc85c027ccef94ace08feccbb7f65519cb018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fe9826c6c9cb036c2e183a68f1c97d7f43c681291a271523ecef96bbabdfbe7
MD5 6645d2077e179b236ca64014d2b73d23
BLAKE2b-256 e3f3c49fdd700212b687dce49d69abacf380938d88b990d8b4d72523048ef1f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9e44b825c33fb10e9b3bc7679bce799608c926c05a99e807106583b45374cee5
MD5 2112503bf80ce4cea41b396cb9ba1029
BLAKE2b-256 31ec0477c4bff2ec8aac3edddb09eb3185f43fabae236d558c6f7de99679f68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eefe5b5a469b08bae8686ab718513c63ea2a35c9d19dc38ffc076b256429cf5a
MD5 61851fde8ca5f9256d3d81f15ca223bd
BLAKE2b-256 1d13db251579efb9b45a515e85142c4e0b34e3f25a6fba8e4ce1f03c7f0598f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cc9dfd431d94387289f1cc360c524a41146de0db29eb7ab9e2467e8e19b1dd7
MD5 217b81145141f182154010c3931364b1
BLAKE2b-256 9f37853864cbea9df54279c5165c03d0edada4dd0f053f1cd77a8bf2fae804f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 674288790a37c5cf27153dc0d9e820a44922384bb0107dffd8a31ba636ce64e8
MD5 3a02a7b2efefedf39523bd37d053494d
BLAKE2b-256 0b00290eb9c469ff9bdc689e02008a81ac0f7c1f067dcbeddae5f83181dd325d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f55b65790b0b6609ba5d0eb8d3d42e68842b80f28ba97c5022d39a1f1bbe4fc8
MD5 817737a2d604723d71b7bd8ac15069f2
BLAKE2b-256 c6d34d8a6350fc834bea861cb21c04cf596ba23d46ebbd41ee78aec5a53335b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-none-win32.whl
Algorithm Hash digest
SHA256 209c85bf6d73f29911d63e2f7007538a31c3441bcb18cb685372ac86a74d035c
MD5 dfc055e5faafa6aa5321960ed49add0e
BLAKE2b-256 fd4df3276c56c801f6536a47b5fa1025c371af886d6546d4c90d71f5fcc1afae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 543d10e1cc9377088b6bb4235f6d01ce8a35af32bc76fd60542f3f0a4b3c4935
MD5 70e79b0207a2ae0dea1427eec2b2edfa
BLAKE2b-256 91b05cd4003cb3f09943cb3633cc0a1802694c7196ed477fe4487f4bb67eef78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49e2401e59faba3e1d4e193f84f4e224b4d7cdb32d1efad4ddb0f3bdc813248b
MD5 882acbe75ce7777f1986def2a0c979e9
BLAKE2b-256 6b312a9edf489ab93fddfc260b886e5ce05652282c5c741769bbc848a934d449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bddfeda61fdac17dffd4f4586610357789ad97489ef1bf569f9763468a569a07
MD5 633cf6d68042c0f2dde054a049f954b5
BLAKE2b-256 de1ad1253a5ec20d20adc94f50387f5487099df23774ce4685f6e2a899f0bf3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcb551f482387c91f985c4db63572537d71dae500c3b8cccdf40d25733fd8c9e
MD5 e8ecad0fc8154bf4dc6cfbd4b0c34967
BLAKE2b-256 3190cfbeb9231750c8f701485a3637be4a74967f98b9c77a3e959ee771662906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4940e14dd4a9a0c8db1d2370722bcf8834f1de6f9176c088fd42a498e2b491e
MD5 889aa6fb7e3535d36d05414eba11f39e
BLAKE2b-256 f2e08ccbceda3b0a4963d19ff708c2cb447c617449ec068349adb8a994b182ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 45cc0412abfc25609cb131b2367264be6e9913123cf9f7afee40948816b20416
MD5 a6bf0fa0458b629a8308a86222fdfb64
BLAKE2b-256 3c47d1b50e5b4a2e33591bd4d2b7f24d6fc902af67a2383a5a1614b1e2825b7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4adbead7cd633302c3a98115a43b2e574a606d1cc281b0319dc988358ba5f1f0
MD5 cfb0e5ae82043b9cb3dce8f46aadd76c
BLAKE2b-256 db1e4433280c7ff19054e0166f87c742769f887d0dc8ef5ffe91d3e218da7494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d3d4f6350ac01b494a4f33f1ebd25183074bd27928456a6c4d0a6db6ee1df010
MD5 97fc6b63c2bfc296758c05aa912d215e
BLAKE2b-256 fdeb3d29cf980e3c0f557dcbd4062e2cd6c8528b12ffc66b402f07c0e642c7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1fff20e6b6c4c57c87474d24dff6728988e4678f30ecea5fb88f60c3f7429971
MD5 1eff829b1864823cec169169f48b5311
BLAKE2b-256 431679ce89d7bb7ffdd7da459822e3deb962a04e289dfa65ce74c09bb5c337ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-none-win32.whl
Algorithm Hash digest
SHA256 61954668d2894120bcce78bd68d3f25217417db501e4742108dc3ebb0a113988
MD5 6030b5a7d31cc455e6f4e2977f1ef329
BLAKE2b-256 dc18e661d5df122540b7ddc0b4afc8ff0f9045838bdc99e62089aa4e177a2d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aee8ac603a226fc09b5756f759ce22b7defa74b33434c86122de4de40783ab11
MD5 4addeb860d6cdb5ba1a562be7873723c
BLAKE2b-256 9fd0fbf1d65d241b16cba0663a3ec824b21d7fc3488e5f1f358e977763b2866f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 196cfeadf79b82a85452233203396928360367e30f1bb8397bf780ce820b03c6
MD5 524faad0090cfe1091a3e03a0cd52ee3
BLAKE2b-256 671da3b650052e00d3182f7903ac65ecfdfb6b4e9f39bd585dffc37854db30d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 544a2c872a0965bf57d3ec7d16171549dd51eb43fcf161e959c16515d76f49e0
MD5 25380d41cfe2dfbe8bc422dbfb3761a5
BLAKE2b-256 5b6cf6f5536cbaa316d4ebfc924ecb1a34f56a0b5563723b3da8b3badfaaff41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4b275f26d0674aeb4add8363a71551233d8cfbd72a83faebbd19be5f0329594
MD5 e9a401bd9a55e247d7dc4b3128c5a8d5
BLAKE2b-256 c326930e4a9e8003906faed60ee23bfe999cd6a0ca17618d7c968311bd678ff5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3658ac8e4c302084589b35ee2f38bc536b4f74763efe9dbb8d6b4f9247da0ef
MD5 fb2bf07d3c8100d7083985b3a8256449
BLAKE2b-256 6c5374cbc136a553097b2de2d5e2c44aa6e5502d89d35de746a16fa80c6db91c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3d2abcaecced1e1a90e55e92aef7c87d2997b325884e6a4039f6bf3c78b5f376
MD5 7f1b13b1e3bed33412191a92f4251bfd
BLAKE2b-256 d7a2d8f7db79c48931297bd64b14ea277114ce378aba5857a63e22638256a54c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 280fe070620fb7580b7321f0f18ccd1940a2b8e5a22b535c0b3d950b65b8f912
MD5 ef10fe9f4cf0c17e39a67ccf282ba6b4
BLAKE2b-256 03ee833ff56c4c4440bf5c79fd82b9ce0d5480bd1843bee65f088bd0de43de26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a5d8fa5dbe65b977fed4648597389ba03f293e45cc1036de92d3513b699845e8
MD5 4ea82039b3e9cb6aba52a3022c949df8
BLAKE2b-256 2debf7df5fa9f8c448f86b16bc93c77db7c13c7e32c6d1496d354b1499caaf3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c18af6fe462da667c5d0654351a807b7722ae8cc2513abc0a3a6e9728c3d074
MD5 c15f38aefff420d1448944ee214d0934
BLAKE2b-256 c301491c0689922e1402d693cdc2940912e00c9bc32a1d313e3fe58077d6c083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6461a6e779b0a007624802b396980bbb50bf9c93645fbfe788cccdd0c1d1bce4
MD5 b9ddccee4959917e894d9ccfea605aa1
BLAKE2b-256 5157369bea54b9e54950aa44239464ebe98bf95ca127b16dc5c05761cb66e9da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1cbdea1e2faba0b1c3939a97c3fbc12215623984404a44a52b7bd6e45efcbff
MD5 09b161d8aa39d97ef2b4eb94e2143ac7
BLAKE2b-256 ad35459fe337351a63592ad6005de22b6320543f83902c34960d4d1114465638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87515d2ead14a33b92898f7486cb43daca0f6708d769932226e2309503f34a2c
MD5 fcd0378f8cc2a09ebd2c8727d4ceb553
BLAKE2b-256 d9cb136686a9c1772d602bbfff6b3a2acc46917fb8c7094f2820d9173ad19df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56152dc9705596c8fc73743e358b6ec085ca54c433ab013a13f0d69b6f594f64
MD5 c542444917ab92c577040361ac1307a4
BLAKE2b-256 16d0c921211281b6eb57f5d6023fe1121e6e7a8f50df92055781849ab81b6fdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 43ce0037338050ca0adc132dcbc7e0849aefc661170669fd13b2b910ca882551
MD5 09b83468a98f780f99b83ff06c803995
BLAKE2b-256 8afe42c3b8c096f0d867fab79f7b88cfd405ae8dd964194d2cdedb897cfd4181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 593cc42eb5dd7708d4c9848bffcbe2e819ad1626dd304384c2ae4a2b96237b28
MD5 09ec9988ad387346db631baa10b55f55
BLAKE2b-256 e0516d9e322ee9974187b6ee61f664659e332ed9ad1d39a6196f5ada7f8e637d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-none-win32.whl
Algorithm Hash digest
SHA256 478e57b7f6bb8b71b6ebff1fa78e680d2c1efc80982d7826600fafcfdaeb51b2
MD5 074814b813bd8521b757a2fe04fe7ebc
BLAKE2b-256 f22671dbe490fe7e29c14262a0b11fd8feeefb618014912b9773ae2acd25e3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07046f219e51bc2ecd100730998333cc3f4bc1ca6f240eab7e9b9f100136a436
MD5 b0ae824a06bf1c90f41fbbf210362781
BLAKE2b-256 ed2bc3503f41d41d57c628707c6329bee6b7e5e54051dba2a6f1939836249734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87ba9a8e017cc2f9f7cb2ab83c247f23f08a8a7704bf4a41d00dadbe2ab167cb
MD5 b470a06306b8bcded8e55affe98d6ad6
BLAKE2b-256 2f64bc64b29f12ad98dcaf1b2cf5eb8177d72724903ba3699e39b7c148daccf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce78f5d6e81966acf4e117af9de0d9144306185a360909839f80683dcdf09bae
MD5 7ca398f3f3f4a3e91bb37d30b88b09c8
BLAKE2b-256 8044e3a6ee310cf2537f225ca964b7a7340f3622ca7fd4842402d47c98cc09ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd9f1933e37d228d4ddbc8834b700b05b6635168d0372e5668193f7554bf860b
MD5 07b73affb7f6cf41d6699328af17c1b4
BLAKE2b-256 4abfb350de8273b67fedfec28c0c8c845484999f38384e921b44cfea2879f06c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bf693709778f94b0df06e803b14dbd1876562a538630b984633cc2440d83038
MD5 1754ed32f1aeed2f509ca1ad80af602c
BLAKE2b-256 f8fe028e7a8b61a694377abfb5c2229a01a9151d8a6c2b71b8c44ac8620d42e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023101100-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6c729b2922ec943084982ed6d36deb64d2af14633a6ff481ff8b4587b2955e99
MD5 a651ae202cbab3daa6a2f385d902f027
BLAKE2b-256 2cc56ca5112b6eaaaeb56b223ef7628c31539525f817ae119c4d72bbba68323f

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