Skip to main content

No project description provided

Project description

Chiquito

Chiquito is a high-level structured language for implementing zero knowledge proof applications.

Chiquito is being implemented in the DSL Working Group of PSE, Ethereum Foundation.

Image 2       Image 3

Why is chiquito different from other ZKP DSLs?

Most ZKP DSLs are based on writing constraints, witness generation and some abstraction for DRY like templates or gadgets.

Chiquito allows the developer to think in more high-level and structured abstractions that most ZKP DSLs, while not sacrificing performance.

What is the chiquito programming model?

Chiquito starts from the idea that every zero knowledge proof represents a program (the setup), which can have many computations (the trace) that is proven for a certain input, output and intermediate values (the witness).

The main structured abstraction in chiquito is the step. Any computation can be divided in individual steps. A program is represented by a circuit that has one or many step types, a particular computation is represented as a series of step instances that can have arbitrary order.

A step type contains:

  • Setup: a series of constraints or assertions that must hold for a step instance of this type to be valid.
  • Witness generation: code that for a particular input sets the values of the witness for a particular step instance.

A chiquito circuit contains a trace function that for a given input will generate the step instances in a particular order and use the step type witness generation.

Another important piece of Chiquito are the signals. They represent elements of the witness.

There are several types:

  • Internal signals: they are private for a particular step, and cannot be constraints for other steps.
  • Shared signals: they are shared by all steps in the circuit, and they can be constraints for their values on relative step instances (rotation). For example, if "a" is a shared signal, you could assert in a step type setup that a == a.rot(2) which means that a is equal to a in the next of the next step (super rotation +2).
  • Forward signals: They are like shared signals with the restriction that they can only constrain in the current and the next step instances. For example you could assert a == a.next() but you could not assert a == a.prev(). Forward signal has the advantage of allowing for witness size optimisations.
  • Fixed signals: Their values are set during setup and cannot change.

Chiquito has many more features, but these are enough to start writing basic circuits.

What proving system chiquito uses?

Currently Halo2 backend is implemented, but we are looking into implementing other backends.

Chiquito frontend comes in two flavours: rust and python, so you can write Chiquito applications in either Rust or Python. PyChiquito, and any other language interface in the future, uses ChiquitoCore for most of its work, so adding new languages is easy.

What are the features of chiquito?

  • Step-based, that abstracts out the computation that you want to prove.
  • Signals, that abstract out the data (witness) and how it is placed and handled.
  • Constraint builder, allows you to write the constraints of your application in a more readable and natural way.
  • Trace based witness generation, a way to generate the data that you are trying to prove that matches how computation is done.
  • Super circuits, that allow combining many circuits into one.
  • Lookup tables, that allow sharing data between multiple circuits.
  • Expose signals as public very easily.
  • Automatic padding.
  • Completely modular platform, that allows writing circuits in multiple languages and use different proving systems.

PLONKish-specific features:

  • Halo2 backend ready.
  • PLONKish Cell Managers. These are modular strategies to place signals in the PLONKish columns and rotations. These allows for steps to use different numbers of rows and columns, in a configurable way, so you can find the most efficient structure for your circuit.
  • PLONKish step selector builders. These are modular strategies to activate the steps in the witness.

Planned:

  • Nested steps, will allow more complex circuits and allow circuits coordination in proving systems without advice based lookup tables.
  • Gadget abstraction.
  • Arbitrary boolean assertions.

In research:

  • Signal typing system, which allows statically checking for soundness issues.
  • Folding backend with ProtoStar, HyperNova, and/or others.

Fibonnaci circtuit in Chiquito's Python frontend.

But better see for yourself:

class FiboStep(StepType):
    def setup(self: FiboStep):
        self.c = self.internal("c")
        self.constr(eq(self.circuit.a + self.circuit.b, self.c))
        self.transition(eq(self.circuit.b, self.circuit.a.next()))
        self.transition(eq(self.c, self.circuit.b.next()))

    def wg(self: FiboStep, args: Tuple[int, int]):
        a_value, b_value = args
        self.assign(self.circuit.a, F(a_value))
        self.assign(self.circuit.b, F(b_value))
        self.assign(self.c, F(a_value + b_value))

class Fibonacci(Circuit):
    def setup(self: Fibonacci):
        self.a: Queriable = self.forward("a")
        self.b: Queriable = self.forward("b")

        self.fibo_step = self.step_type(FiboStep(self, "fibo_step"))

        self.pragma_num_steps(11)

    def trace(self: Fibonacci, args: Any):
        self.add(self.fibo_step, (1, 1))
        a = 1
        b = 2
        for i in range(1, 11):
            self.add(self.fibo_step, (a, b))
            prev_a = a
            a = b
            b += prev_a

fibo = Fibonacci()
fibo_witness = fibo.gen_witness(None)
fibo.halo2_mock_prover(fibo_witness)

This is explained in more detail in the tutorial, but you can see already how concise and clear it is.

Getting Started

Read the tutorial

All located in the tutorial folder.

Run the tutorial locally

Follow Part 2: Quick Start of the tutorial folder.

Writing a chiquito circuit in your project

To use chiquito in Python, just need to install it with pip:

pip install chiquito

To use chiquito in Rust (TODO)

Build from source

Chiquito is built in Rust. First install Rust. Then clone this repo and enter the repo directory.

git clone https://github.com/privacy-scaling-explorations/chiquito
cd chiquito

Then to build Python chiquito with maturin

python -m venv .env
source .env/bin/activate
pip install -r requirements.txt
maturin develop

Testing and Links

API documentation: cargo doc --no-deps --package chiquito --open

Also auto-published here for the latest commit to main: apidocs.pecadorplonkish.xyz/

Licenses

MIT OR Apache-2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chiquito-0.1.2023091000.tar.gz (587.3 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091000-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.2023091000-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.2023091000-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.2023091000-cp311-none-win_amd64.whl (510.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023091000-cp311-none-win32.whl (497.1 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091000-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.2023091000-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.2023091000-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.2023091000-cp311-cp311-macosx_11_0_arm64.whl (670.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023091000-cp311-cp311-macosx_10_7_x86_64.whl (706.6 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023091000-cp310-none-win_amd64.whl (510.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023091000-cp310-none-win32.whl (497.1 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091000-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.2023091000-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.2023091000-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.2023091000-cp310-cp310-macosx_11_0_arm64.whl (670.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023091000-cp310-cp310-macosx_10_7_x86_64.whl (706.7 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023091000-cp39-none-win_amd64.whl (510.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023091000-cp39-none-win32.whl (497.1 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091000-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.2023091000-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.2023091000-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.2023091000-cp38-none-win_amd64.whl (510.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023091000-cp38-none-win32.whl (497.0 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091000-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.2023091000-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.2023091000-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.2023091000-cp37-none-win_amd64.whl (510.7 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023091000-cp37-none-win32.whl (497.0 kB view details)

Uploaded CPython 3.7 Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091000-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.2023091000-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.2023091000-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.2023091000.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023091000.tar.gz
Algorithm Hash digest
SHA256 7eae144451d13d776ccf00a0705a8cef5d3c6dba7179139c3a1b4ab481c69ae9
MD5 61b993c07222ca0c8f50d3a57c4597a7
BLAKE2b-256 79135098bf280d85b8c0a778fc5b47e846b598e7c2ae46f9db62dc503d363216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dedb21015669599da62cf85f2725c1da2ceb073acce5bf6c5a1fc937c12139b
MD5 b0b2e96893870c1ca78aa606fcd38b16
BLAKE2b-256 0676abf55090441dc5f12ffafedded66c626c3b8d604031b3ad9a2abafe4a834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e1573fd280f6968ccec8038c840e157aae5f23e0c0403259f68de2fd8b427d9
MD5 77e5e4d5a6d874e7e6061c534ade8964
BLAKE2b-256 9140651568a52bb2f7a8e08f9afab98eb6edafd057ed5e13824e7055e5cb1cfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2005497ae49d3fb1a2142873c30a41d6f74a9fef8b9f0b4b9b140a868e94936
MD5 b511e0d001e614aa94af4821a86ba531
BLAKE2b-256 718175117e842b7a6791e91d74e02bb80ac04f1971b348ffa2deac90431c9f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1efee8d36b58e42ca0852e7ecf3be4c3d555d37aabd017b1812f6e26533ef25
MD5 27b50f9c347315d071b89045c471b96a
BLAKE2b-256 ebf965ea77c3954250f67535cbf6c0c2a91112c598739f5266e425036e6ab3e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2edcdd4b9af0c3d5237d327d3a2be7bcc975293a49d17722846f1ac3145903e
MD5 602f14c6e13ceb7ffd7cd053272ed7f6
BLAKE2b-256 3e97ceef8f1315390df6d66c92a931964969c556606753df21cf6e8f5d43a03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 37eedaf2635b25644eee650f259c19f39b9e2de793448dee460ee2d4b0be46a6
MD5 c96d5b0cca1ccb53a5d2af646beb1fee
BLAKE2b-256 1ac8ddfc6ff9cf084b5d1017ad5010c6ae47ba650f271becd03102bf76b6ec46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d6ba6eee25facc1f45ae71b724df5a9a37416a1d5f8196dd488c717c1b8e6b4
MD5 44e778b85f1e0cd0f5462ee6345fff31
BLAKE2b-256 4aeeca476861063eeae44650f53a7d6eb89117913a797df9b579b704fe982ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4eee19751d91e19633d8c8ac38bd6504739f3aef967df5d349b9cc7c2dd744af
MD5 31e9ffeb248843f2438de0067c4ec9cd
BLAKE2b-256 d041147380b5f70783468e1a8143b635bf6d32d73cf42eaec2593cf999d4be14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8303becdcfbe5ee071c6c77832e019295e5de5f482b96184b0639870740f0356
MD5 275e60e1d69d87372644e67faf52b6a5
BLAKE2b-256 434cd88f312608a15be4b65f0cc543eeeeed7302fe42317542e2416504a31b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2616b0e4967503197d36980317069be5b39ebcbfa748707ca57b2a2c75dc5a1
MD5 4bc7e802142cdf9c6839fe317b7fa463
BLAKE2b-256 e809e9cc3cd1e70c02ea2982a73888fc3560d3a9d45c875df40ca8e99edcb3e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c363bb909c407551359edd915691226412cdcef228714002440ebeee9350350e
MD5 e871f9b705e2b7ed8a304c7322fb5c35
BLAKE2b-256 3461fddc555d74f02a1417d8779b36394716133e7e0cf433cfcc8c0397c2f283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cf2cf222e913c732187b708fca772d1383c3216712c91632a867daf9e4865bd1
MD5 6c34732209ca2c428629d983b0b1dc4f
BLAKE2b-256 b6869c92f1e0b451c2532ec04ea171c1320db679929327905181fbacd8c22670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e330262e4be78ce2080f59e93d55bd7faab63cbbfc3050feea8180d83d858dce
MD5 9779dfe12c13f2499cfb629d2741d2c4
BLAKE2b-256 5b99bb849e43f96f0952a2cd3b928829da63e33c059c3f88a49a3352531198aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55d59f00d58e80118a2ec9f77af0c427105ae162a03fdd060195939c3cdfacfd
MD5 51909eb50bf3f92ca02e68ea32f137dd
BLAKE2b-256 9a992d4eb42acf4804a68eec8d72cf27f893bfd307c6bc50653c8d872f0bc303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13d4dfaa0e9eaf71a09a4d88f137db7533f2079816386493c5bf89b1e25474b8
MD5 c094c3b06a5961c2931d76b04a7c68ea
BLAKE2b-256 cba764d46591627a5e2996943280a0577bbe6790903bfbc35596dd3532a8639f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0dc668d3b11bd0ecc1a32141557d4a46903c5647d5395d8f43cee740decb7ed
MD5 996cdcdb33fe9388ea44c08666cd73f0
BLAKE2b-256 f4cea3dc6d9d99a5a756316c98b2757fc2ce5867762d71d57201e9aa40c6b3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f97655174ada5eb8b19435e9ba71d3c9906a5be54d1c3b8fe635543a0c4d3e0
MD5 4553eba85a738dbd480ac225f7c58990
BLAKE2b-256 e33501622c30ae532963b675c318f1f653de5ec10096ba8928da791a2028cabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 812719041a27ae013b033e37589889cd892d825a192e073f5a909d3326112d00
MD5 86776dfbf4f7d1a2afdd9e6d6d54ea49
BLAKE2b-256 7641a70244f62a66e6e7212dbeed8ecac3fa4d14700870ff9c9d2f52ef141285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99086f96e4b8ef6153a590418432ae53f0294cba7ab590cf0ab14a3a09437a24
MD5 5fd6402fdf26570b077ec33cde7ddab2
BLAKE2b-256 5e2ed42c4870d17914c94fbd8b933a0bdf92d1f6d076c87491c53fcead598582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b7d3abd4a3eee6bee146be17b9172b407e45081652774d9fe846576c1efb400
MD5 5810990df97620ccaab7915ba15c4ab6
BLAKE2b-256 afa2c5810d05a9f08263d288b2677aa23588cbd529f7b4d37e17d55be28ff14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d26db2d64810f3a66839593305012d88893cba232f0b51055c27de8f95b4ff2
MD5 a04d91de4e5660a2326ce8b576e52f57
BLAKE2b-256 f9ef1045db5ce83a26a79c7af7c9b94e93447b572cc30c4ed97c3198c27331a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b68d1bf6376282c59e7ee1d350e16cab7d149f188947cbe6e221b073f3e236f
MD5 e2adad6d963474f87eef2ff474330db6
BLAKE2b-256 17260535ad8d1c32a4047a078d51dc493c68bf3c26438397efc64af64d526223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b965b35c83415aab50ef697d4eebc427f4cf1cd60fc73cd046f475ceb266b92e
MD5 3b398534c2207007a43bd0e07ab62bd5
BLAKE2b-256 e27fde0b44c540070d5bc61ec1aad5b2152f90fe8dd84b3ceb31205e172d4f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f5fbbc23938da30edb2483d98013d670180e4d1ab2742b8bdf36a9a19139d4cc
MD5 473853f0e87c459b028418f2c7a6aa1a
BLAKE2b-256 bdefda8d51e8a5fa007feaf9b4af87a78ac7e9dcb21b4cab07fb19269a084458

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6efd1c0ab5a7100494581cd96366f448f3cddbe37ec0e4ee09c8532899d3ada5
MD5 a610e3fa300434c5365fbf04377b505a
BLAKE2b-256 1a89195fd2bf91fdedb54af6cb9c6bb77c9cb55ec5e60a014084a9662c932932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4141b0cd424d6d4aa9c9acd623a0bea006d23653fe594dc84a6dffc7ee0cd39
MD5 cc50ec86e137bbff17bd8dea359aa562
BLAKE2b-256 a86d93e79992a0f2ba46a9da9155f7379c51af6c3ee342410db5c9888ac3e0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3e27c1605d957505336847f013d56616ae7ca8543d1a95c4da3d53c5fd7e741
MD5 43ac56e98e1f51e656072320f66dacb3
BLAKE2b-256 4cd79b3f2814964f6143f420fa8e120d76c457e30baa0677fd39ed830db808e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5d13d6c5a6ad32bcc8d2f714e0f4e573abe0fd218415b3cf2ca51137d9033d1
MD5 4451e353033fae9ece01dc02b2927390
BLAKE2b-256 6341aead2c2237ea8c94a0659cf7c4c463ac03a146a74ff4d407a5eda802a060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b37815aa53cd27918dadef03192b5072cce4e4251a797fc121774dfd451d1b5
MD5 6b520ea6f500c6bbe2f1598a1aa19b59
BLAKE2b-256 c913d8d3aadf97c2d5668bd44a63336f3388f54bafa2ef086ac656127bfd9bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eda00bd2553621c3f946b2557ef7630274e02a3eff6a37946276dd5b8c11bebe
MD5 659c3a7a072e645d84b1ce08cb457fb3
BLAKE2b-256 452ea4b8f800296fabe5e58f678e41d7e50e4ee7d91729f2617f5a2261173e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8b90a4bebb150aa5123f17229de3c7b9846dd441c3a0983b40e2f900425ecab
MD5 82aeb9af8a77622fa442de54c5735d18
BLAKE2b-256 99fcbdee8e781b34ba1b073930413f664d19eaec756968ddd0bcf79173756694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2866b143138ac0d0adb11ef69afc4bf0413e14ba5182677ff20e0606a3d5da11
MD5 d2ead68475314cddde1b473d0571ca7e
BLAKE2b-256 b7d403b1fe14b13e9301da0000221c6b06a7ba3c2b06ce6775e1259ef87690c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af9438c1a2f41f619249c3bcd4696ecaa7bb661d1a997360dce79c3302c369fc
MD5 93f564cc6b83612e8b5c6e29e4433568
BLAKE2b-256 a42c9100907972e7895d9a305c570b8d33c433fb0605b41cccdade076760d043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5b25ec27d5645cf1706451c73f9f2fe95a3a302f2de5e002a3ba4f90cb599623
MD5 0891415648060482ce7e8d12a8a17931
BLAKE2b-256 cb7d8af3aa9bad5f1313d986d8abe9952f754c53bab4abf1f8571b305df95abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 179e6049400336f056f721763c8934ddb64a12a80d4fd9d2965535946012c132
MD5 a7a53af8d95407e67cf26bed451e8b41
BLAKE2b-256 c2bb88d05434c50ac6df424e0371a8dab92ea62945f80bde075aef31ee058c76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1fb6f7aef92cfb0045104e50fc4da073f3cd70e9f2a541863415dd21fdd9e5d6
MD5 4f516d26b2fd985ed4a6aa7d73541444
BLAKE2b-256 8ba9883cb6e2e87fc0a06ece6548f3fe8332a3d51b941f42a2210b4424ab0085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12251cd505259c6cd911b5a9d8091e7d5a6f4a452295d695410600693c5ced22
MD5 97f3fffefb7a7078f75dc410c85eb82d
BLAKE2b-256 ab6c4d31cbcf2567290c7986025dd56f53a62eb0610fc53a7304bf188d856a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c66029b54ec94c9c7dd8ae60e5e122761919dc8da68c40bb515cd361bd648418
MD5 484062b56ab51fdac7bcdd8266f41c70
BLAKE2b-256 cc78bd6a1813c7808d097c6edb94d1bc753227b7c4a933beb862349e80988290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8172d22e46d8129213fcf3a694157db81244e8917154887aedd358167f73121c
MD5 29c426924986db43793b70500d0aa8dc
BLAKE2b-256 4bcc82f697328b816dedeee692995ea969dcc4bca5e25206d9ef458d4d5a097f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d6e84829cba307f1e50e000a3937181381495e39c9f3f1d555d03ece750edaf9
MD5 acdf4074207ea81c8ca6f3153710432c
BLAKE2b-256 28e363d46aa5758b61571df3a4a76814a41c3c677165d80deaca3395bcf38fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 748630c689f2c3a9d95ba99fc63c7f213190f40024929c2ac51bfdd58016fef0
MD5 a0f24116cc15e2aca79df96dcd4eedaa
BLAKE2b-256 fd0b48c66050443da3c0abde481260c5e5e691202e1c0efac473aec7e74a3cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5af38f18147ebeb1d0c4ebf9a81a4925ef1fc5b8035fa9ec3057fef8349e23a4
MD5 1ab1df7209448898cb4f173530f270de
BLAKE2b-256 5c230a469b787008089984b8e4eff80a30785b7a473dea5e7e08d151600e378a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b76f5b9160dbe991f9ebe0280ebe90cb537b41664e7a43fb5eda31526481e75
MD5 4425f9a55dc68695bddd95112fba57ca
BLAKE2b-256 54068cdee6e95ea863b331c66254eea294c7494bfc14d13b9d60633629dca666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4499ea4e786b03f71ded0181edafa088b79c6d4b89bc00f137b34931bd76989d
MD5 62a3cdfc94e3442ccbf648465ce1a277
BLAKE2b-256 fa70a028510f88dd27f6e085605ec892e552c695f8982e9a259e17684f242361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0b1cc80f3195b43d97ee74148c4b742efbbd0bfd1620d9ece512beb648a77df
MD5 ab5ce9c4022ce0491107904fe9622241
BLAKE2b-256 28734388ff136f30ec8fc100f5ecddb6ad5bc29d4c77281e613b21f6684740ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd5cd56bfb2cdb13e71c42ae3fa164ed1d6319599f976e9efb16573f0b65e2f4
MD5 161b96c6380c1f4a148e12f078ecfd96
BLAKE2b-256 71f658c6310af319deb534b8f79bd24e4405f7eb9c17f2554a0cb879c05ece9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a98c3daff2a0d31e5aa483a0f55986484e8564d6e3558bfee048db103adf2fbc
MD5 7bae7c965ec34ee6ddb886ea97befd25
BLAKE2b-256 e3a8f8dc1fbf2efd7730ea4d454aea144cf6c6c118aaf903da127af536daa969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3670c34541e3add51b8df6ec0b5b1cf079120f4d3e41139e9b95a35e3286983e
MD5 c73bed5de8e217c93110e92f0111a100
BLAKE2b-256 e06e5d980e9ff19e9c44de39ada6d41f25c7db86ca7f5d5db23cd51539211bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0cab17f6a97eb463871ada0473e8a6d5663012ffd874f827266a694b3a4fba0
MD5 9a8d856c70ef177562acd747766f6c11
BLAKE2b-256 57d4d5e3f6d6bc7cac22d10b2f60f2684c85d897c32b213252ed91fcf3456442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4d9f4a63912bf087e74a8c264353856e5182df5bc0be7e381668a050260685f0
MD5 063004b2d4af459dc5041d2aa797b16a
BLAKE2b-256 e652fa3ea9382b4b68bf54bc0600171c25dbe4937cdcd86136f84d728c50d0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 199333dc37617e51c7088c9fa6c6889ac1df7f4a7fb593ca9d5111c903163400
MD5 66f90cc0d44b375d45e56745c03cacaf
BLAKE2b-256 e65e13cb58def0d256b0dd09a6123b34d759ff652757a178d89cfc7491adf9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-none-win32.whl
Algorithm Hash digest
SHA256 005213713bd8e1b097f1de9592a6edd38c34ec8c6541aa69c7e49921853379dc
MD5 ef757f1b91cae3eb8f9830de591c9182
BLAKE2b-256 119e8b38f6a8f615269d176246395aee156712237d8f95a6c1caa5d21a9f4d5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 072f3d2bac9468a0c5fc75cf0081768ca201409ad6aadef89befd8215e5b790d
MD5 11d16e1c4cb0f314d224abc2132ab55d
BLAKE2b-256 9af8a44e017ac3badd74f7e1b273f7483a9e663ac2887e4598358576045728ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f739e6ec9a84b75d5efe2df6e6300966ceb6f5ad30358ed2a53cc312c523c18
MD5 9a279183625e7fbe85702797b5fce21e
BLAKE2b-256 88b928ddd6a406904174931d7f86836246416066b4ab945356e39a05735e6c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26f15aac2dbe3b71f7e02836bec8a18f5fdbf0a3b9b6c39d4768f575d4041ecf
MD5 2d2a0374e6068f3854e29672c6c0cb4c
BLAKE2b-256 649f9a7bdefc6d5d884d7c7942dcfab1a52da69f98cdf45c06c2f70f954f1f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ec65e6db739c12d93ddb0f39f62844d7bdb911d44b15591296471934a7dcacc8
MD5 4c43dda84a83e6829765e5447680c53a
BLAKE2b-256 d8c5704f96f763553ff78ddabff267be4c1472be6434d1594d535ff014322bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eee393585f3f2c05fdd3edaa276622aefea748ddb36bd33e77e199666cb22078
MD5 548fe843e70f200f6694a43e4eb54dfe
BLAKE2b-256 02560b47ff6a913790e86c430bcb75e28a7c70405cb98ccc70b064813dfaf6ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 80db5c85f641f57dbfbf49db7d74a06fde1a179e2e59ac453dd44527d3a75108
MD5 6a7dd84f3520ca2074ee29b78bb5eb48
BLAKE2b-256 aa8043019bd262cffa3f831d10ce4c22602f030b15b0fa75de8914b3fb76e6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0492d69651ec8a9f65b3d211f9bede8a428b5095dec50463e59edf41d8b6dc70
MD5 063116669468a17edfe5d5a83982e596
BLAKE2b-256 591431e831d2f0183d0f5749e2c8035fd9165db71e530a322f1877134ba08bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-none-win32.whl
Algorithm Hash digest
SHA256 bdca126564309e4c9f062d6872bf575fddd199f0ab90fc6760a59e15449e8135
MD5 5a0295eb8fff8b59117215e7ef4fb64b
BLAKE2b-256 b236a55d49d89cf7f3e1c06ea766c0ec74020247dac030d136fa8910e99bee33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f165c5eb5d7325dcf8595c65219e357f5a744cea0e6b7e15d2e9e020fcb59cfc
MD5 21aaf95444b2a232a5e4aa420d74d990
BLAKE2b-256 5534c167e612821b26fa1e7167ff3d5efd8a9fcd1f298dbeb42e809beff6ae9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c60fd3e3f53eb04b8094e4308059ad7d999c6beb2de345531cc0f8ef660075e
MD5 aaa438bab99a4a38871b65ff76aef941
BLAKE2b-256 3116d49b8056ead431291fac3cecd29b560ee2e97ef4d825d49e37cef075f43e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 444e5a449df736ce1a0490ea16e0acd9b980dbe29b90f6e2c22c5199c4ace25a
MD5 3ab2bf27e297fa3c829a83c75cbcf382
BLAKE2b-256 744fcded16901072b3eec4a7670957e94a1c8cb19c43189f8d90c1532b80f63f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6e257b5e1d0d91228c9ad90bbb56910370c17bd50e913cc2ac082574d7875db
MD5 c2c77a9d39404b48f3577462a3444839
BLAKE2b-256 cdc39b7b47eae2dbc68079e9ce5f810f8e932bce34e7aad4468ab3ff76f5eddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3583c4937baaf947c86802253f3928b47a4938acaac8f34cfd321a9b8f0684fc
MD5 f1d24faae7eb0ca40060e779b4af3309
BLAKE2b-256 965306103d7a3682f694b64219374cbf00d59229972ba577ff742167d0474070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18ff8ee82c6ef21762decb628562e6c5437d585597a48dfa62d5336804c7a93a
MD5 59b6702350cffa5c6c4e4a14d3eedb17
BLAKE2b-256 e856b9ab08502c1c6b5b02bc2351a8ff2c8256fcc19de55fcaee0d6bd89fed86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 31d4c6d36a7ca1cc95c78cb79a8d8602e62a97c92706be8ae1749013b41e7e98
MD5 e2cb6fa885e68ccf02463cebf34ca606
BLAKE2b-256 2294f70d4e6e4a33991b635f7d29f90c62ae800f751dc86fb3d4dbfeba956c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-none-win32.whl
Algorithm Hash digest
SHA256 1731e80c8ead244073e852cf32f61c47ace7dd0d391c0946bcee2bd5d8e77b25
MD5 8dd61e19c14f34fb01c2c9a657344682
BLAKE2b-256 e32d9ed03005755681a3d1fc0319b039e1a9dc54e3b04d01e178837ec4693add

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 848dfb5ba6e266eaae35302f96e2476fce1458b9077ac8582fd7419e5b3a14b3
MD5 5da972542f88a7b6ba8d57bb947c5df2
BLAKE2b-256 ab69bea8d560b067ed1b3b415fd4a88c1c1c3bb5d8c118ed6db89175db7bec19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1f378bdc1972470784d10caae87b29975cb242c1185040b7f4210d9483736a5
MD5 a4e28d9dacb539664382807ee880c9ca
BLAKE2b-256 1cfec4a05ea5ce77f81335fc19fca9c944ba5f5ed6475da7d4e22a27c52cf85c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e28c83dc7c4269a8eb0e542ffb49956a0127a71459a844abf8ba083e4146ea42
MD5 862d7854c0ced103de8f1dc2c87a5b3c
BLAKE2b-256 42b7d4c02f67bf796c8c77a1a41e027b139be328fd947888c06a06d05d95828e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59708bb9c90a51fc84a6fcd22e8ac0ab0276b78540bcacc8e5cee3804c5233f0
MD5 3b8778a136b78eb629602d0e2a1a3941
BLAKE2b-256 60390174c24d64c4b945806d111108da044f07bc684de4b03e3085111397d1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5fd3ca48a84c58cb7e7be420220e29031de8e40f8bee0916fff84ae30e9d70a
MD5 15f8a5edb2ace55b4eb1d8602429343e
BLAKE2b-256 294d1a82fbcea016023ae968716b835784d8883195dc74672c2637995ef89d78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091000-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 372492eb1b6a4b7d6283b18817e84c2083cf6abd03e82d853c7b7f5477ffd9ba
MD5 c1b1afc372ba1e8f88030825e5db469d
BLAKE2b-256 38d9b5ab6d416c7f361971e85f1ecb05a278d5111017167d222345e9e5e7f87d

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