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

Uploaded Source

Built Distributions

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300-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.2023091300-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.2023091300-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.2023091300-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.2023091300-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.2023091300-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300-cp311-none-win_amd64.whl (542.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023091300-cp311-none-win32.whl (526.5 kB view details)

Uploaded CPython 3.11 Windows x86

chiquito-0.1.2023091300-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.2023091300-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.2023091300-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300-cp311-cp311-macosx_11_0_arm64.whl (702.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023091300-cp311-cp311-macosx_10_7_x86_64.whl (738.1 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023091300-cp310-none-win_amd64.whl (542.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023091300-cp310-none-win32.whl (526.5 kB view details)

Uploaded CPython 3.10 Windows x86

chiquito-0.1.2023091300-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.2023091300-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.2023091300-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300-cp310-cp310-macosx_11_0_arm64.whl (702.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023091300-cp310-cp310-macosx_10_7_x86_64.whl (738.1 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023091300-cp39-none-win_amd64.whl (542.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023091300-cp39-none-win32.whl (526.5 kB view details)

Uploaded CPython 3.9 Windows x86

chiquito-0.1.2023091300-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.2023091300-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.2023091300-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300-cp38-none-win_amd64.whl (542.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023091300-cp38-none-win32.whl (526.4 kB view details)

Uploaded CPython 3.8 Windows x86

chiquito-0.1.2023091300-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.2023091300-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.2023091300-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300-cp37-none-win_amd64.whl (542.1 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023091300-cp37-none-win32.whl (526.4 kB view details)

Uploaded CPython 3.7 Windows x86

chiquito-0.1.2023091300-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.2023091300-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.2023091300-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023091300-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.2023091300-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.2023091300-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.2023091300.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023091300.tar.gz
Algorithm Hash digest
SHA256 fb4dfcc2eab9a61474e63e77f8be39df0c36ce5e8d37642422f13c8d59952a30
MD5 61a572bdef2b16996cca2534dd98f236
BLAKE2b-256 de6bec5ffd123fd810a78d0ba89501f845e6f83cb0c79d0ecea38ac60cf361c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a977c11d0ef4ecd1f8fad181827cb7cedea62794e5cb82827c1a0f920ec2776
MD5 9e2d2c5bf8db13e535c5b304e524cabd
BLAKE2b-256 e41d0e837071854fa72d1478aa0ce8c8a7d690c7d3967e62ba95985010ab170c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a26f7f34625c0fcc22d9cf89b04419c05e50c7400a878686527d2b4c9a3c60d9
MD5 58d8c843d171027587fd4cc4bb9d339e
BLAKE2b-256 9740310065d30dd719e69396b9ed832df6b2a3ea64067e837e9478e44641b140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb237e9d6bee318ae49c70fda9804156bbd96d20cf3eee375455d8a291f7f4cc
MD5 d6e00acbc01ee70bfebd760bc104129f
BLAKE2b-256 bcbc23dfea2f0cde1126cc58071648d644906cebaeac996d89dceeb00c986bc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 068ed234029882de5b0e1ed1c6e482e0321a8239e997903b017d247cfc0dcd33
MD5 2a7604c94f057d200b7382e4ab57e36a
BLAKE2b-256 2358bfa7ad44aa18a33140528b4edd1a0952d2ec4c0b5b10b4a1aadb3eabfc15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 168586b26f9172983cf232a9952491952bb6b4fd0a15fbdf862ba996337d908c
MD5 9afb0fb5a8aa3e05f534470fcc97cc4d
BLAKE2b-256 8d9255945978be7723b9423d3b342e85c63e7d739f4975ced8072af4df505355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4b6e34bfd56ed4c41ac222991c3791900e67e1a2d44f6bc4ef67a298464f932e
MD5 4ee67481d3cd8e05964208d568275724
BLAKE2b-256 c956ab4fc60e5fb45fa114aaba2878d7fbda320e0fa0163bcee3330e07392803

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9338fc246e5b188c9a6d80f4b248d56b2f495394f52e6ba049f1cc0994de9202
MD5 55916494ae199cbc4457ebb34bf41bc7
BLAKE2b-256 c31bab9c2ae37af2435111a257ed4075536089c2b8c053e4bf2f66ecd72289bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d33ed12b3eaad7050e3698ca389d37d2036a84a011690b9e02f8f5b47131d1c
MD5 dd0847448055bd7032677a1b5a1e107f
BLAKE2b-256 df1f1013ae720c0f4dbd85f98ce1588a69971eb56808c9c873640bc2d0a6603a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f9f211062e1ce88f436da63fa336f330fc5952e583159439bb9160026e24d6d
MD5 7a39ee5322be139faf18b7ef65d603ca
BLAKE2b-256 3cabe6aa00773f2af3bb20b4b2964847979c76a9bfe9e7bd1b472a1fe42e38e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b6f1a7ed026d35999c29e417c3f9b439cd9cfb3e5882f60755e7fbd87a02ea1
MD5 8723358d6f6777f15b837583bd79095a
BLAKE2b-256 0ce4dee74b70facb90340b3e0544d7f5b80b1a04c3338f8b4fd8ce6087ac137b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5009325256999af57ce8fd285f155aff4dc0495874bc873dbc7df9f90bc661c
MD5 30a3fe00c45c582f12d3198bad4df75e
BLAKE2b-256 f44eaf68d9e64e4ca711bf19333cb6ddefb8a2257cf7fe6ce90f2f7a1e4c6bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 eb4e9fa5e45d25dfcc6dc96e2259e076fe2b8a9b0059d4cccc2e5c5c7f69f7ad
MD5 888db61ad427489329477e081bc33f74
BLAKE2b-256 fee2e3f64edb19b9f2b898a3b89dba7a77e81f957fc07de94e03d7c8d9a8baab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9657d3b8b7a54c474b7ac378fbc1b63d5c9f78fecfabc0a43a01fa2587bd09fa
MD5 e66ca58c5ed22fca61a75918173a49be
BLAKE2b-256 d1c4c3122d99c6860300723874879a90c0a1274cb0a7bc263ff5f780a739b24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c236cb47a1288745d6c067dc84c124dc67c6d7337f7245fabc94d633dacd0006
MD5 3d6bc30cf77afadaebd997df0b355e0c
BLAKE2b-256 ddc48756d3b9ac83833e5ed073ce5633633c03fe12669ed5493fd0249030095f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e931a7fac95fa3bf81771eb86cbcf8663ae2d335ffd8af19a21221435de1fa50
MD5 a80a48b531713311ac07c78fb0a6664d
BLAKE2b-256 97a6b5f26077e6f34707e2b85bdb763c21a089af212377676c8f63feeb6e75d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d66e768e595f529b66811e5403bbfbb7dac53620a8f1780ce88794b0426f5d82
MD5 3ffd09d61711240d701b154a8499911e
BLAKE2b-256 81cca1e2d05c10c7347418a65d9833fbf9d39f3a2ea8d5a5aa06dbc380e11c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1889743049172d342d9a9084761a6242ae1096f6697e4f566843e38c220dded
MD5 a96787b86c891e6dc81be2e5125c3b3b
BLAKE2b-256 8f50ccf0a2deae4811aba03873fd9f31ca04486fd805538791479627d0268c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 58bf06528c8374722be74e42ae1ba1a23811ec066bc9459fcbbc89ed6c677045
MD5 c2c1cef6f0c8d47ae53e8726de20350e
BLAKE2b-256 d39161ea374ba60718f6166db7395c873042b0003dafb03f65c5e9db5e4e3245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cd2a0cb54f917311dd2d8ed21ba1221c40f4ec77fbf3e14b674ceb1a7795fd0
MD5 090ab7b0ffff2843280deafe88528158
BLAKE2b-256 39985eb59bc9be70baf457f9db30bd1efafc228fecfd3a912744fcc94f494b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e8b88e3eaf36047578347c1ff8171a48f5a2bb93f8bbac7c00e2d7bc1b78d2b
MD5 323c3a100ca0842be13ddb7242337dd8
BLAKE2b-256 58b055f51c4f02edd564b32197960844065125a91a4254a20eda9ba6ab4da37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea0ae3e9b96d69e35ba16ef3d3617a66e6b2cfacd52f82be6588533ee5a32e9d
MD5 7add9e2ce3c877b3f90e7baff59b5922
BLAKE2b-256 83cba19bd36c21140b2fecdf6a741f05c3e2476b4a2ad385df23a108e99de976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b949582d0522e5978023d00542419cb4c2d4f496f541d25d41897fde7e860de
MD5 2b021055730d2148531b080f66e326c9
BLAKE2b-256 978993f70b03bcb9990b18cbebd7285dbfd26dc220ab3df49c760e59fb974d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2df6849273baf891c2f899f81049cf61774510a1aa69d5def47b10f4278ebb9
MD5 995181f40ecbc782504f9d2423b458da
BLAKE2b-256 4aa7332bcf1b9e3ec6fb89fdccb35f6075f0782aae651bb8339012d3c77640c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 66338b7bc682d4db7719fe42f2074a0f96b2b8c03434669b69c5ee5abfbcdab0
MD5 bdae5370c7e3ced8950f5e678437e5bc
BLAKE2b-256 a7405b2d1a7eb41c18906290693a9af6b5f97e168df11726a2dc9215b861202b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d20ce317bc91709a0babdb54977c2938ffd614bd3d58ffb9e89e2fd4b5f1aaa
MD5 ce4bad0d964a7f3b60e476b3751c97c7
BLAKE2b-256 02cddaa664388b5a8cd1a1595522890df31a86263505f9247eb3e1d33307a8cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c399bf3a63261baa5800923f6d98ca06e04dc80d99e53a5d2f1fbf5c2144344b
MD5 7977b2d0b982cc0b1cf95bd4f5e3562f
BLAKE2b-256 6e8bd1c5ba827b14b8327498ff4156d22612c32716bec4147159487bd17d2aba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45f66cf197e106d57e93daf4aec004a4510e003852003487f97e4be1da8b258a
MD5 ec9c8b731a06dce6e9d4e1efaa59e01a
BLAKE2b-256 b7c24b2455394645b2977255cded9b895d6e82274f63209685f5930f0efb8438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2923d2df238d22dc88277c933d7cbdcdb78b31c363569fe1f405b0c6c5e13f6
MD5 16014089c28c9b500bf7ef4f6e3ad52a
BLAKE2b-256 e2356baabd191294318fd1a59cf24ed9f4f257ff42459f72ceb69e06114342c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd487eb64a1ea91a259699039ec0260cf477e05cbd75459d0621787e432510ff
MD5 960fb4a0a160d6063e79eb4b6bd36ad5
BLAKE2b-256 67e6293d6215fb627ffbcda84bc8a59448ce0c2d2b19adeb2562a2bb7f5de141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 18ae6ad87662f17c716fd0135467240c3b5daee1ae0476a00f3e7696fffa24ab
MD5 cba24c79f338698ac75cfcd412bf32fb
BLAKE2b-256 3e8d96b8a2e3e1696b9c0310b0aaa6b7825374cff939522e50b91f59cf22836b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0aebfdee03ee641bda8d6d7118723f2fdb95e300f94bd53e3b3f3f782b978ee3
MD5 314929aac25a56bf2308f9bd5eebf74d
BLAKE2b-256 a850a89bf8271838a411057bef314711415e2613c4fd78b63e233d56b945c5c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8282a5e6dab80bb27bf1219a22afa7f644e842b009b0d835a972e80a65b66c59
MD5 c75efa54c811abaaa7d9ce9be215c794
BLAKE2b-256 781e3675afd524fa88d0b4d8695b1da7f760b5dd7f28812cedb3f6c12855fcf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54a3b8d7b92cdf6e36c866a459c4eef185a2f65959f6f3158c811f62126d2aa6
MD5 28fa0a2f936e4f47dfbd0d6f88dcacc4
BLAKE2b-256 aa7b0d0b2d10eb8de1473b2942326d00d71edacdd8f36562344af588d1ab2921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e3031e9876b333763ca2d63ead4b0c15dbe99393e2dabb401fe355055326aea
MD5 3e3d08794b476d9d179ef83cbf4f2afa
BLAKE2b-256 77dde86b3bb0c24debd2c73c7b44263ff72031bc25bff72029daf85cd74022c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85f75e2f8dde96084029707a772a7c79e1d8cebc4a1c6b0ce9e40943e13dbb86
MD5 7fd77ee59a1fd135e42fa2ca5cde4164
BLAKE2b-256 032f63fa023075eea8d18f3b8e5d79da9dcca94b629ba07e129926af6b7c7f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e55cd284392588adebdb1ee0be9e9dfbc0cfc28e0e0a8e9dae6f9dd6adf45b23
MD5 5a95f075e67c906487747f21e801b882
BLAKE2b-256 43473b0b140a2004128982dcda762a75d95c72ea66e3c77f8fa7b69aac3e2426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29d3f20cb646eaf02b78413ec815667a97653b15ea41732172771b5483cb6ebb
MD5 98b8e0702d271414c60a4f7a8adaad8f
BLAKE2b-256 e9ef906c8be4ee4ee3ffaeb43daad24e01cbcf3daa24b20e52c5c300feb161a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 24f6dd5d94bc835a1aa4a0178490c2ec46c9c00bf6bd3185ba3f2b398528760e
MD5 a29ccf7c6ec1e94bcce657998c45959e
BLAKE2b-256 58096479f11ac862be44de8fc26743aa8f43284123c15cf4ea0901060f915da4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de814bf51c37316e6a856bf8f36922ba9309643416c58b55c18e930b67a65a81
MD5 9a7019572c98a207562c4ed51e572629
BLAKE2b-256 8ee603ecf8d870b1c2691a3f9241142bc6194745564d15ad0ade1cd5ee33a22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b7848f3e52bab942ccdeee2e26436f10a0e1ef70502e4d98f68c046f6f7a21ad
MD5 719a458be2c7df41a897b8859df2f8c2
BLAKE2b-256 18e2adb7f94394836cd3b88478f2e9cf2663d76885e118a5d532ff0f054090a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7effca0db1e720725c5734293ff2ec74aab17618a28d3d7806b2553c10eb5818
MD5 58b4bc4717f08525f547c04cd82453af
BLAKE2b-256 d0a0c6f59c9d4434061ccbfd4f15e35c9e1a36c682b3527fffb3444b03f326c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6b173883f94a21dd5b9b8fe85b24cfad29aa5880ce6d411e9c35f7fbacb00267
MD5 e40420317ec98df91c9b334ad356fbed
BLAKE2b-256 39bd1315e6b975f45e94ee4194b6318f859173d3faba5e2a6698108e598752b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0adad0df5fc68aee2665410d8a6c4025131874758cfb13c451f3683c82daa9e
MD5 1aa6843b6e67bf9af58a2726c84b9847
BLAKE2b-256 b46718fc3d031464452777c427a82597784a5b85fd44a4b736293cdfe8619aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab2ed609f72e9c3737e9f94092991daf9058bb4688ac25be2ef80899a86d4492
MD5 20e8b838b5bf76e7da2911854afd9ee7
BLAKE2b-256 4b1094844ba30507cbde28d16eaf09b35c55ae112cfd85ff2adc51634127a7ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4af4f1d8d3f0168a9c61c5c56ee13d76cc9f99e1e629ede1ef92e665a031ec2
MD5 d522f14c388e3831547a2e0c40c4fd59
BLAKE2b-256 fa6abf1681a1ef85766d1bedcd07cbf84603de1428f26ab0ff25781a0722788f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 00f1ad778f36bfd12ce4ece0ba88cd4c4457289764227fedcb822322cc69777c
MD5 5b1f42d16811c35003ff55d1f2156be5
BLAKE2b-256 0f688a46953cee6fe55409e5e33587accf94e9c54539f2da12ff20202ac9330b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c724788b42dd968693222d59d3581ba7fd51b2c1eebb537edbe5c2557fb479e
MD5 e614aaf8890b2f4007ceebdcb8e2ffde
BLAKE2b-256 19f8b04c379695bbd7f1c0c13f8d3d19753e51853a566de3cdc2de69e36638a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dccef538aa5972470ded5f9d83a7c5cd5eaa2d848f4a0a54d1ed1f548eba87ba
MD5 38898ffa18668cab8f7416ccf420b9ff
BLAKE2b-256 48f1216d93e6e4d590b4114e583886988a7e142d2c0c21b12a2900816a6ad0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f6957fdbd4423ce90eee68ec2da2b8eadaff74d84afcdae732d7090383bbd66
MD5 e6860770fbc8f62037fef28f6cf3a312
BLAKE2b-256 b40b11d82f1d26238dfb5f818980f4027f93d0835a6305eda69241091a9e3404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e4cf0dd5d9bf6b4a20b2621509b8304b64ecd64095eb3d1928ec4b181a8f9bfe
MD5 27be627fa28079d09232a9624a392088
BLAKE2b-256 d7963d1f1dc2562cf16281b37048b6d9b18955ef87d2af3356d528fea7f6fff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 561e6a46f7b681dc8efa09c43f384ea33316ab1c0649d08eec6e9991080bd5f0
MD5 f5dc9a2191405aecc89f6e1cd231b620
BLAKE2b-256 42a9bd9097ac6adb082cbf0e5602f25160a33a981ec5bba29281507d59a32643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-none-win32.whl
Algorithm Hash digest
SHA256 26858fd5150aeae1a6a90e7edeb45fa6917314814d883e66f57054d9b609e037
MD5 c81a92aaad248aee5ae8b6c6da8e5212
BLAKE2b-256 4ca12b276ff30d36c19c64a5144156214db8c01a990aa203b5f126a64fb630b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 673cc4ce90d14c2d51ba395370d14103fc81428e4b33063d76dba088c7946c95
MD5 085150982c37404d48197699b17f0846
BLAKE2b-256 33e7a37c00ee3858695adc4fe3dc5e394b0e88f3d46a5a3000137fa80fa51a87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c12d3d2c13e7bc864d7cc820b32e02e120d9e432634571a250a7c83a191bfcd6
MD5 db3c96ed78be855b0aa15b9d3c161e3b
BLAKE2b-256 ceb456e91f1c219b76e96b74d21de553b87074253ec9c406eb03765099edbb5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2360ef5d09ba48e0bd9ea5323e0cde7ff8f721a55c1c168d045d33c8395259d1
MD5 723781f85950f9f8f33cf02b6804035d
BLAKE2b-256 bfe48dd1bac1af6d50005e369666965c4d4814c019c107a4b60bd5e26097bff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25ee9e8e2a14a443f73c420ac99c84a87c25d942d77d2557b2230d432bc885b4
MD5 2b40c7ebd73fc8d9a56233d4bc8d76a8
BLAKE2b-256 bd6879805d0f07f42473bf399d9b145873ffa7357d3849a36cba63ba8264e59c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 841379f166d6ffcd940936be937b4ffa262d64b1be5d88a208d3b502c415d383
MD5 10c7147c0dbb0d68e089e44054384db9
BLAKE2b-256 17207f0a3d30588cc135b6e3b920e91e6e5f0da5df170d5490e752fc20c2a1ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 598eeb291d330237fe56d93ef5d14bd77a62ec8d2975d0a77df6828944285ca2
MD5 1ad20abf8536a8a9db62689d36cf1faa
BLAKE2b-256 b8508bd5c26b0980c1c130ec7402eb204d0f62d436988277102b037326ad1707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7fc4eb9dde175ec651f44cf8a3a018612163c48b43a274537a352f373d915c5a
MD5 41dea72b4805a87a0cd2b7db4a5073cd
BLAKE2b-256 19acd7c34ed0c6f1efe0781a79cf530dda2c6cd6ee165fddffa3725c98a790cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-none-win32.whl
Algorithm Hash digest
SHA256 efb5924d9508e7d27484f1af114d3cc30e1dacc781754bfbe1b5a4a400ee4a69
MD5 b502fee2f2ba93417737892e9889cfef
BLAKE2b-256 3f1582c9f811f1033e5d59e1a8aea51247f6df2fc5d90d4183497cddd9b0a3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59947d8eaad14c3293484a1bf883ff493740c189a69e269b3c5cf607fac00404
MD5 5d50f806eeba8fb23fc5968caf869019
BLAKE2b-256 14aa904b2faf13c19bde812ec042de8a6f028b5bd21c40d1a7777c4f6d39199c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e77ff7cc7d5b98e5a145da73f6b192dfa27cebcfbce4ec35a5c618a3426a5b4
MD5 9b53f12095d5186f620e63d0b81cf45d
BLAKE2b-256 52f4fbbf58de1cedbb6a2f8cadde06b0b3b4b4ed022bcab07bd0235ab625bb5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fe865d4e0679b100f0fa60fb9209efa74f5f84e95687d034eb8e8373ea9ef0c
MD5 597551bfcfbf13a21b4e1e653ff32b10
BLAKE2b-256 aec1c07354e211fa9b6577f1207cf62405f3bee68294c687554940f9d5582758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c16664fa1633144f10ba87e421a14cd51eb5feaf9738ea141b9dc27e3da3f1f
MD5 eb6080b54d0e726419742f605fb6c6cc
BLAKE2b-256 00acdd55fe866d005af859d2f43a2f690d90cde571b7b95242985f87167a53d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92a6b64fdce408e3491c1a56dce375ecea9a588617ba3e14662f56ceceb933a4
MD5 6d8077e501b682917ac95167ea7b8024
BLAKE2b-256 1f908af60daf437c1efa0da069402ae84e724c1b886c8625152c1b00f03490c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 672226485285c754a1b28c6bce5ade25843696f400694071c00765a3cfab3bea
MD5 60a7eecf82aa520e12f798d59d697137
BLAKE2b-256 b200128f7ba0277844bc9dde303eff5108e281f2bce7bc48bc2f464ca47208b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 6bc06537c9c9ae9b8d500ad0954f4706c11df3ba8b28f37024378e5b4ea00e19
MD5 90bde2ce07bcad177fed86d9e3cdf04e
BLAKE2b-256 e5bdf2c6d79256fd4700acc7fb1856155f6b0f8ca62cbb2f167aa99ad45c2fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-none-win32.whl
Algorithm Hash digest
SHA256 939aca8e24a87b31b8a21fc6fdcf759524baf8feca865f3dc5fa3c8e6815fcbf
MD5 c1cd600306d6440ed0c9e19759cf973b
BLAKE2b-256 b4ac5fb773388022dae7efee826c9fb724daf09b565a67a27a888daaaa103217

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96cd7f4157f7d2d0718296334ccd8ea13a6c47de0ca757673569fce874c7151f
MD5 775ff703f4d734139b64fb1830c0b4dc
BLAKE2b-256 af4ef0679bb9424ba9fa9b2a71eadc21c9e2432c99e04410d3b71caba69a2ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34317eeefcb397e747ac03de91c7ed45c2d7366ecb06eb97e27238704de13604
MD5 22b75a6d6b1860eaa250354e2aaf76a9
BLAKE2b-256 530854ea7f700c130c7a61c1077234030da0fde5fb9b89948e496e2464e3d679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd43f6e3cd928306226eaeba330421c21cbb036d1eeca74b0c0c57c37750fec3
MD5 f28397ccf7dcb76e9fd965e2aac3a8d9
BLAKE2b-256 53496f217d1902ff7027e3f1107fc6fd6fc6784be7605682230855163308d6fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45ca5e17274e665e6abdc04d6f78951786d86d5a47fc4117c719634c9a7c7ebe
MD5 1f4baf3168e518c77e18317d8e27bf9b
BLAKE2b-256 32289b991c8e6da1f473449d4980c4d7890e7b4dd643e6aa7bcc2bb22d23e7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58d177a22ed12bc049ce9dcfc5ce4f68bea18827b5fb2952635587b8ec055abf
MD5 ca5bf1ab830238f0160e2ec64dfd9c2d
BLAKE2b-256 c7305afa32682cd01c8c65dfd81008717956622526c3a643f51836297c337bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023091300-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a3701a232fc7d0d430079d53619602b553d33d23eb0cac33b1c684498d5cc402
MD5 6908aff7029f22e713a9bce317db958f
BLAKE2b-256 bdd0f5a4876ad503435f56175dab1e61b08b4a7fe3dcf9df82e30432f4b48138

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