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 constriants 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.2023082800.tar.gz (587.4 kB view details)

Uploaded Source

Built Distributions

chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-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.2023082800-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023082800-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-cp311-none-win_amd64.whl (503.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023082800-cp311-none-win32.whl (490.0 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-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.2023082800-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023082800-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-cp311-cp311-macosx_11_0_arm64.whl (657.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023082800-cp311-cp311-macosx_10_7_x86_64.whl (690.0 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023082800-cp310-none-win32.whl (490.0 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-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.2023082800-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023082800-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-cp310-cp310-macosx_11_0_arm64.whl (657.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023082800-cp310-cp310-macosx_10_7_x86_64.whl (690.0 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023082800-cp39-none-win_amd64.whl (503.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023082800-cp39-none-win32.whl (490.0 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-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.2023082800-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023082800-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-cp38-none-win_amd64.whl (502.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023082800-cp38-none-win32.whl (489.8 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-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.2023082800-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023082800-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

chiquito-0.1.2023082800-cp37-none-win_amd64.whl (502.9 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023082800-cp37-none-win32.whl (489.8 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

chiquito-0.1.2023082800-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.2023082800-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

File details

Details for the file chiquito-0.1.2023082800.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023082800.tar.gz
Algorithm Hash digest
SHA256 cd3c750b78c09bcdff5e08c413ebaf1f0163d0c7777175c7ef5a229d1880557a
MD5 bd6804f0ab64cced593116fc78700f64
BLAKE2b-256 574ded336670d74184f29fdccda939932a15a4182582c584a7cdddc1e3cd8891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eb9f56ea2ad41be98ed6307717425a3fdc7f93a78981f3d138a8595d62e2717
MD5 6c516f2bb93e73e2da352a3608d9b681
BLAKE2b-256 e4fe61239f981b69ee1512b85ae8e5ed0b3795250a87e4a050e45dd6bc6de67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f0399d0fdfad5e3089f2967d6165f7ff036d9a6d3371155ac9a9de1cc66b714
MD5 5bfa3e10d2809db697565b0da739ed62
BLAKE2b-256 2262a597174b78b11f9e3987843aa08d563094a357dd47a3b8a37a4a15ec867d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8184256ad7965a9c52b12f4dc85f1c38560ef426aeb96c31e38dad8d8ef544b
MD5 7e51432e53e6a7f1119a708e29705b1f
BLAKE2b-256 0392db2bed94bfcfa62500107f469a3422db201ab4fae40ba68120dbab9cc46f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7b23398270a0b042af390f9f8fcc11e135e9c64a2b1155aa8d9a7e3d732f199
MD5 ca0530ce9d4ab0ae85be5f0ba96b275e
BLAKE2b-256 fb62d161096806afd71809692331dfffbeb74469e2444539a10c62096f5da5ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5203fcab0281eeb57ce42bc5f3cb14990f9e3b63dcdb4daa944df15ba96c13bb
MD5 0ec3d2cc5be3e2c753986b992790d2de
BLAKE2b-256 d23d820995a15271bc697ddf05e1cc2b0d8b827339cb132d7ee786061f5186ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 382049b0b245137626e1e6d09dc37656edd27c43476c022ab7bb6063ef5fc899
MD5 839e97d1fb5b83f1275d17ffdd9d2b5a
BLAKE2b-256 261ed6080f1f8c5c37452a5321d5f4d45f5c9b03d8c06c84dcf428b42900545f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f5588b752f8f5eaf137b064212290541f97d716b1ddb08f16bc34fb78f0ba37
MD5 718d6bc6e006e741e26967539b203874
BLAKE2b-256 e016c63e4bf3e2c41b6b0b16848ce87f3deb3a55d1f39b482f844c5f7e34d89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b43004e2e48fe249b8e14180d2c5b6357a159001a9e87df23bb6f75788b31915
MD5 6f8f968c259c18e597ee80d670aef551
BLAKE2b-256 63b1c7e582f08fde1337a1b778ed7797e57197fd8300f139d0f1f5df1605f5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbd0cc0f02b803d2f74e8d76b944d698f703449b8fffb7ce1a06abae8fb02a0c
MD5 1347ba9d657e9136630cdf9c7e82b269
BLAKE2b-256 da9f40872997888ed7cdcf700e0095b96bfb019dfdf7a168c049084542ef8cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 688ce3fa031d65d86effe4fac6d728b34a56351a2af997a6d8a7b1b17cde7ba2
MD5 9f5e47bc5cf810b6329b9fb3a7eff5c8
BLAKE2b-256 84efd76532906d2983e57b8ad0d3ed7b75bea3c11105c7d721bd90d18fb75bec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d40ddc48ede0dc8ff643837b25bdf8cd9656579c54430920902ef9aa8ef05199
MD5 67da56b2cd3d5781fef01ea51b156faa
BLAKE2b-256 5b9d56a0b8157354f2e8ebcace9d88edc7dd07da6def3e1e7d49095c19825269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 74f595eddd61a97b2ae704ec659ad001000d89af441b3730509b2eb0f56f4e62
MD5 5a6c4ad7de80e2f9d421a4dc52e6e0c4
BLAKE2b-256 23f37587f12c278fc2fb1dc4d8f2291ee45bae7b4edea76b05f554051d18fb62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee61222c6511ab93f8819ebcdad05a065cf8fe8277ce1667a5ce25bd12797a0e
MD5 f50f1ed35d96308b963bd8535c074b69
BLAKE2b-256 d740dd643124e956015ba547f5e5a9c18102875e00afba5af5b6f5534c806ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a25115faaee56ea9ebf1ed09206427863feec5cc2fdc08564ed31090631e403
MD5 90bd2e803b7408c3a3dc5c4af1d2be90
BLAKE2b-256 cf9ac42fb960c79d64acffd9f9fa8539a7cd5223cb1dea5f83200871b1422b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 056f510bbd8da5ebcd89f57c0e3d05d8fac094bf83b712ed90919e08c0cd446f
MD5 369037d9d9cf096aa75f0559699ea65b
BLAKE2b-256 0cf482e238049cabbb01c8a9e6d6a78ba92243f4e2758706fcd0c5ef2e98d1fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 144c30b1af96dcf0bf8d10f3c143a4ee55d6f94c67b0c8c1996aef4e635d5a5f
MD5 3c2cfb8800f6d4359558c647c124304c
BLAKE2b-256 c830de64133f5a21bda676b3e2468d3a12e1a66d08989924bccf90784db9d03c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f22678b673c8a9064bfef7eb92b787f16f5dc1fcdc7ed0d800d3ee754b87763a
MD5 2b1d5168f848db178d75516f99fc8373
BLAKE2b-256 94c5ee5a24eeda339c39bb8d8b4715df1cbbe7acb6eda066ea67268c836e89b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 869b3606372b528478fef58a88783ef8f8a48da9eaa93f1202a2dc61922d7d1d
MD5 9f79580eba5757cadfd55857e3aeab0f
BLAKE2b-256 136c9d7213412ff9892e2791a79da9d5d44dda2e4bcca79020f9f30f772f6a1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 376397587f03b9908613351a2dfccac1c23d7fd0a22b67ab5d1593908faa9208
MD5 703ce305d1fbefb1ef83a24ee1bcc32b
BLAKE2b-256 01667f1626957fbdc37185ffc37be391d5fbdee587e453572cd89f89412ce79d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4def6908ced62337dd92cd62821a3dcfd15ac2e287363f929cfa227ea3f32c39
MD5 fe7de70ffeabfea931f9a3c943c17d94
BLAKE2b-256 7b49fae6299ab8fbd13c64fea1941142066fe9a54f15d26bf53703e244e1625e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82ee2da9980ed79321155674a96b1a28da314e0737f735012d7e39341c3f92b7
MD5 d55ba809a4f17c90b6f3ddaf56f834ca
BLAKE2b-256 1a4db513b54ad79d6e403a4ec1cd5d2404e8072c2325e4a2d012bdd184d5c111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d22bc77799c17f217279c9d3ee4a29a3e6a1541e65263f830daf9f64fd20bce9
MD5 a147d2ee2186a0a7ab3be62b6bb8f00c
BLAKE2b-256 71ca583c14a0a5c5dbf13af8573ca6c451b40b588c97d5704a2cf225a520f34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4461307f7185347c748f7d45d93db811eb7a7d2af928c29bd30a133a3749e9a8
MD5 1892648b21d9db3e3f7d4d3eccc3d339
BLAKE2b-256 5d67823d658a779cbe1b4fafc614ab221ebec95c9eacf3c2c5a16a2d5a402a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d70d28d7948a1723f67cfec089fd4bd69fe4b53c3c03c63f4e9a472d242494c1
MD5 25af5ce5104698a609c81ecb2446299e
BLAKE2b-256 06a8f4c01a3ac9707d5c60e4508118ba6d57338b01190660b9239dcf4ffa6715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 039426fec786a247434d859a35ce25e8c55e3ee9d1666329dd026b977dc5ee16
MD5 05bd3df951728e9fe8c08f78a7d67e90
BLAKE2b-256 e6437afa755f9d2a5bd742f22dc0517cb9be287f722fe61e054aa7d7793e2131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80a94cc87c0fff3528a77e88f334caadf014877ee9330ee9c85826c5e6e759bf
MD5 d0b0d3ed70164efe74205792e24011ab
BLAKE2b-256 89d07b516e9947b2d5bbf74818253225671774f9f920349b40d8780f6cdbbe2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 961332ddbaec00fc9f4be077492d0a682e16e233f29e14bca5608a41ac9571fb
MD5 a200b65010700fb078fabb15013a8a1d
BLAKE2b-256 d3eadadcf288f4dba0dfc3eecf3fccb4850cef1048c66d974ccc591a4e31c39a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 967e14c3053f66c24d05b84d456b609dd7a41d65438bcd89345f589525ab1acf
MD5 50b46421f08554670d00edc2673ea398
BLAKE2b-256 73a2f156cd010a82fd0453d16268084ba2a3595fe01796dbb57746f6efd62901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91b3285c848bbde4466f45452288da4d60e037d5e1bb32a92821b2c97c4e7c16
MD5 d4f402b1b859d7a03b1a208e62873a7e
BLAKE2b-256 2adbe9dfc08ed897a6872123ffcc163481ea13b855e6af4f86b3b09292076f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ec62d6404339cdd7df97a92ad6248aaec1faa598afc8f53c094bc0c2ff9ad783
MD5 29a850131fb0f180b43d54f6332f6cde
BLAKE2b-256 753fc24d71ca525faf0aa486d79df535503990559ddc45454f0cce9c0c489901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 80e6743c4ca82b368fffd9900478866616820115341290f05cc74630a051266b
MD5 2e531ea1623eea631ba2eefb3370cf65
BLAKE2b-256 b4e3b8179bb37c5be9ebb4caa248962156fd86637c3db2937613fb9b1ef1b11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b785703688aff1a0636a7bb65a67f7702903542e6c8709e91f67acc3d6cc3386
MD5 a89caf008ec3430e1ff88c3207061052
BLAKE2b-256 12716c220603c19831759e1ba4efcef2b113eb15274935dcb74f4d6162d467b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a59da6afca4cc21060c396473273496c6adaadb9a8a38a06e6a742355b0f5abb
MD5 565d52cbc04122305d9d4eb0073e5ece
BLAKE2b-256 5df99a5216c9a5b2f2208fbac11ae9216d89fd49a435327b1a90c40e0a07448a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46946e9f6b931f33ceb1fd543eac032979cb87e67aa726d30557413732dc03c4
MD5 72a3e485c4c2e029533f59f5bb96076e
BLAKE2b-256 f74929d7107d0bffa232937cd8cd41571c23576b8cf264931a9174cf3938581f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed7094e1708cde6f0e3dd2c5e15e2cf9de0c0bb81ad0baebcb4fb5f460632270
MD5 31aaaba67f7ba72c3c50edd473fabe33
BLAKE2b-256 f21640d8f87c7448a7ee2f3c23a714af2791d7f30c1debc1d61d8cc8e6340d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 318b529e1c487fb5177194794cd8a427f9ac1d10cb7c07982b8ab9b3c49d4b43
MD5 54f0a6a2a3de8549aa93fefc5768b580
BLAKE2b-256 86dfa300e9f8041ffa9907f5268b35defd0f8325c054def94d33b4b800dc9145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5956cc2f367fc93ad9ff47064a8ae73434041650217f78684ea1a0a6540cd260
MD5 4cace4374307f3c97252851f1727e9d3
BLAKE2b-256 d7d08caea9a0e7b530bbde8f9cffbb23a451476655608358a47838d954f809d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b6317ae891dcc142217cc9433ef546ccf45012da191b013a5220cc5afc163d48
MD5 e513a8452e30e0d1e4f7602959b6b43a
BLAKE2b-256 7ce3952c82f70ce9e8172a9b834cee7ed497e52f00735cf1886037503e117108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70d353dc12bf57f6e3c46e4750b0779729ffd650a4f6149e594dfc0bda1d4f16
MD5 912b3fc3d3e20b552eeca1d8e5b06867
BLAKE2b-256 053775f70fd096ce1576d3aac72315d59bd379a16d96ed1388559be17ba9e247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4d4ee6e49699ce37ea7b4bf203957b49a2b299e33f60e88ea0b672d91d420979
MD5 3a6fbf4d4a83509fe4c9acc5476756e2
BLAKE2b-256 7dcfc4fd87d9870bb9b5e5f9a15966ba7036f7a4fe43b1f5fa071dcf5a75ce52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7886c1fe6dc5ea93e7f3a0638eed2d0897ca530390639da5a3f90af0da4056b1
MD5 386a794854b96a76348a97bb86a88407
BLAKE2b-256 b78cb18267b4c6704b9203af2f3a82925eb90c812fdfe9a0e1d3882f563df826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-none-win32.whl
Algorithm Hash digest
SHA256 557ac5fa54cc4dc353bfce520c1c93ab46f48e3d625ea6565e2039ae9d3e50ad
MD5 187aa8271f2efb40249090f91c87ec0b
BLAKE2b-256 aaac540744732a820107a0644484666e0647f187bf746697ec6668f4eab70782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ea8ee1861c02fa20c10283730d9b1f4639a95da136d582d8c23dae21cba7ce3
MD5 491f8f719de602fccffe4485cc62854f
BLAKE2b-256 14b681b37b456612be7c7a964dab7f01d54dec9227ce3b0e334a75ad239ff1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15248c8d7186f0bc546a29127e3736f26b7366d6ef0f677170a63787e35a2dfe
MD5 dce57834b300e63745506f2b90f26640
BLAKE2b-256 46acb80e1a9b06ce6a79382624ad0b07779e696338ec8765a076cd343ac65e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea5736810afb051bd4f1733c5f16659dcbb8b3678d7684c2247ce94d4ff224f0
MD5 58e664fb062cf2cb6ef75d06e7027e4d
BLAKE2b-256 deefb15fa77767165eab07ea5e3a0981bd3fca72058d5ecb9d48934da676564f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a3985949b39c779c5ecc35211fe805b07ea8e4e9a265c863bf9ff980904571bd
MD5 dc9b8a0548d6e51e8bf76a6d024f400b
BLAKE2b-256 4ee7899b2b9f7e3441af9516214487fb3a975eda19a270aa29d41627f70bbc1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 585f7e0be438677f4d9c33e5c9ee02c2836223e79b833b026b3648dc70ddbcbc
MD5 acde8b3ed49c070e686ba084f4622f10
BLAKE2b-256 f2e042a975fd112c61a11e498bb2564c9dd288fee4bcdcef92b67cd615641006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e438902051927eabc5913ac4d786d74647aebd44a38058cf5236f847fd122e8a
MD5 07ac18251af26bcc64d439260cc0f0a0
BLAKE2b-256 c558b11caa727481387a0f3f6189633e33c0b88b673bc03c574746c9023d4c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aac36e5f8dd5c02e54ab71476c869daee346a87b6218eeb223aedf48556b54cd
MD5 5ce89056fde5a6ece0109f880d73e5b3
BLAKE2b-256 e7422307e581867e1ef7a30d7f41251e4c976c1a00fd8c503aa6f1844e6b5bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 12640140465ebbd7164911bbbc790ab0d835c7f6fa04b94ab8b59baf45ada3bf
MD5 b686f994744084860a87642fbe8bbea4
BLAKE2b-256 5abf5111079743cb3e46dd136dce73e0da5a6bba0dc456816d5d032ff93453f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 47f99ef91ca7c2af977141e47735f1d95456268fd5d6c5abfedc7fe992a10f8f
MD5 6f3b383083be0e6b4794a56b00c88022
BLAKE2b-256 0a72c7440ba9fe365551edee43ad90ba1193201185f7a8849cd0a8295d684e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e4991bb498e621e75363794d8a91cecfe61a10e2ab7cadadf9cf9067dcdaa802
MD5 9dae47546887c8f2c0def339b5542878
BLAKE2b-256 b31dc5b41411163c1693da701036ce9f45a42ee9861d9e8cca4ad9def3af2e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b9b2eb99a6cf6255d754d2302032e3d962152f5b1e40c5a3a08bfd8db568cea
MD5 c93236f4d6b1a98d047488d772795dcd
BLAKE2b-256 b3b7388090c66f26053ba5fbbdce6ca8afe27a49c0ed7030dcd59cb2ee64bd6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b9b60c2d70f6f456c3ba525a52a709046bfb15bfb62d000614fb603d19fc8df
MD5 1f8e71f67911120d43ff29a8b5615a12
BLAKE2b-256 c122f1701c1108cbdcdb8d1e773f73a8c0ff086ca331c071f1e7cf6d3636e769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f86eab37c9f66e4ac0c655a69f37aa71841cefa3b6effcf139e9bfbce9c196f5
MD5 0a5f14cca4d1119936d1d6d9344a15f3
BLAKE2b-256 baab3e0b2a4d6ee46269de014d41b96787a8b0cf9e18e237e629c03fca4a721d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc362fdc006c239f32c2191e46ab68db2550a2d529fac862da75077574ad0a7e
MD5 3240e53082a4efd643695ec0c99fa44b
BLAKE2b-256 2a9fa80d30f281d2ba28a8441af90fbd5bd720beeafb70ef33f6b50277f80822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 387ed9c322d2a2f4547dce22c5afae72ce02d1408998aab05b878f2b3e71b9b0
MD5 19fc6d62e30579a04773169385f74cd8
BLAKE2b-256 2aa243b5e000a34549743751cef4040e6ec143011f0d1e6ec30144790bf8ceec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 135dbfa16e2bb5aec26f5a6e937e7e5404828bfb7e5234befeaa88f1a273eef2
MD5 c5bb0677f8202d1755a2d4b8a7b56e52
BLAKE2b-256 c07b6db06dd4f977744df3c1494cf7dc6f35925d56d00262e85dd090cf46dcf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 47689764409eba411dadca5f95397967c1c1b2261ad261887d4357defcb48158
MD5 ece28bec5c99ed06aba16eea3b0ac06c
BLAKE2b-256 df269dcd29cf74a0b2fe11a7b029b0dbfc9705a7bb1b57de380a17cd0bcf596d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-none-win32.whl
Algorithm Hash digest
SHA256 73fa22c2dd888533d00b3e1b18266c6f676d77ea41c757a1aa5f5212d5b2ffdd
MD5 112133cf84bbdd496cfcf196e17ddff7
BLAKE2b-256 80ea9f96d4a2a2a1150229065532eba386a24127fd7ce4a2908561c65bb5be1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f3562843bb0620534aa710ab7510ce82648ad77566f008e9b1499a49e3feb44
MD5 f49496837cb7dc5da54e6993ec9bf3ea
BLAKE2b-256 6dfeea20e504702760f13616d31cf933f5a8bce0a00d591c1cab3223ff90f762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f7836484d5a413cfdc4d11c9ec02e0c5209f4feebd7db8ae76f88560c2d34e0
MD5 fc43cebd92b8e865c49c4e3e657cf12c
BLAKE2b-256 a19cfc6611073770dcbf8d8c6e9652629b23bc37262231ed01a343e26b7331c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aaaa15f40edb3cb0d9055e13506aa154efb1e47668649c328f1370e6d4d55173
MD5 c039ad11ee6639d60ae7f217d518cf7f
BLAKE2b-256 3d3f15cfd3a4cf988285cd8f8069342e05a13c46117819c16e2ccef61d87ccc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51dfda66a17e1431deda1a38efd1c5f91e61ac7709942d7212b9929ac783852b
MD5 268e4eca4e5a02afe619f0157b17bd78
BLAKE2b-256 c77ff23d6c72593bfd6f33b61e091abc74983f5d0873dc7f9615a00e808d0a62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd973dc40fa38ba06dc3595848d6704641eac63045a2a42f4a10c764a12c5c36
MD5 f9d9c9bf4fe47b8035db2ea9562ab382
BLAKE2b-256 06dd0fa9fb3f4e6a85cbd8a157d7a73bd88961389408f97374ab391d4cfde793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 de4ce55982555ff9898e444b91b51bcca78f43a032eb250ff755a9e89e42ba2c
MD5 8cefec6a6585ad5010ba6fac89bd3304
BLAKE2b-256 abce925a3314cda999c8a087cb14b1ba888d538ea51a9264f7b020a1b49a638a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 d28e8902bb29a54cf660293d96c24db0a61a7ef9f0348079feaf93dd4be8a199
MD5 ae409bb28cd7a53d7f808dabc029fbbd
BLAKE2b-256 b066d90b27fa5689753fdd2daa726238085979b73d9c008fc54dc0b6fdeee19c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-none-win32.whl
Algorithm Hash digest
SHA256 7c58486e64760def8f4ce3d098554aca2906c155ce2b8bf5c3021ba0d079e054
MD5 983b04ae4902f3f98f9195fd4fca4c5c
BLAKE2b-256 89dc4f1c18c4678cd06f68fae55c43cc9836c6147b97b984f1ce2d5b5d229ff4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 715f9797724bc3befa7de11e929b229af6c9141626235defb5f3ea98b9fec76e
MD5 efd8a6878ff2e2202ba477d96d7d1cec
BLAKE2b-256 85831610c61f39d10b1582ed43dfd9b979bd3204b7b0d10a3af4bc0229b1f921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e28e1cb9bd7376790f3ddfa3dd506597aea688175311c41a7caf3ba63f58b8eb
MD5 1035f547de1fb26c4817c509956a9538
BLAKE2b-256 f5bdf7b58ed79215ebc99a71c9dbf0cc0f39d31460d3a01b0ee1b869a15339ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfa6eb27e5e32096ad95259c5ec55bec1fc9d5d59aad79fcb3ea645aa4968e6e
MD5 30d78e8c6c19779b6a1d805ef1839c36
BLAKE2b-256 0f96a0e1e06c8ee69ba4ac633c7d0516c692bc8d51b983b55061d4d68ac2db43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ddb5ee0511eec67fe9d8e9f1b55bf8b44ed01d8b60cd9d21984826d1c51473f
MD5 272d911a019fee1e255a4a701105268a
BLAKE2b-256 476a0c0c6b9f73412ea9d31d3111cf52f470bbd9089f159414c14772e6e40c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 580da36e55c6bf4e34a324a3bf8cde37cd1c3da5fd7cfa21f167870d305faa79
MD5 7e2a92f2e2430ae2fbf8bc69aab04cc8
BLAKE2b-256 774f62eecfa06f7033ca4c57320d2f8c4082b09a65fffd0a550304df25312522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023082800-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5ec77ed566446089c3ada4793237b7e51a34868b7c1f882e7568dca87b150734
MD5 1488381b2fcf390310f799b012208baf
BLAKE2b-256 711a65c8b3545534f718964aa17aee160e1e20ab32e2d01acb82b5de45f35604

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