Skip to main content

No project description provided

Project description

Chiquito

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

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

Image 2       Image 3

Why is chiquito different from other ZKP DSLs?

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

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

What is the chiquito programming model?

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

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

A step type contains:

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

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

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

There are several types:

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

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

What proving system chiquito uses?

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

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

What are the features of chiquito?

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

PLONKish-specific features:

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

Planned:

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

In research:

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

Fibonnaci circuit in Chiquito's Python frontend.

But better see for yourself:

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

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

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

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

        self.pragma_num_steps(11)

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

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

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

Getting Started

Read the tutorial

All located in the tutorial folder.

Run the tutorial locally

Follow Part 2: Quick Start of the tutorial folder.

Writing a chiquito circuit in your project

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

pip install chiquito

To use chiquito in Rust (TODO)

Build from source

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

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

Then to build Python chiquito with maturin

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

Testing and Links

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

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

Licenses

MIT OR Apache-2.0

Project details


Download files

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

Source Distribution

chiquito-0.1.2023110700.tar.gz (682.5 kB view details)

Uploaded Source

Built Distributions

chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

chiquito-0.1.2023110700-cp312-none-win_amd64.whl (544.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

chiquito-0.1.2023110700-cp312-none-win32.whl (532.1 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110700-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.2023110700-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.2023110700-cp312-cp312-macosx_11_0_arm64.whl (711.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

chiquito-0.1.2023110700-cp311-none-win_amd64.whl (545.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023110700-cp311-none-win32.whl (533.6 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023110700-cp311-cp311-macosx_10_7_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023110700-cp310-none-win_amd64.whl (545.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023110700-cp310-none-win32.whl (533.6 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023110700-cp310-cp310-macosx_10_7_x86_64.whl (747.3 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023110700-cp39-none-win_amd64.whl (545.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023110700-cp39-none-win32.whl (533.6 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110700-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.2023110700-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.2023110700-cp38-none-win_amd64.whl (545.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023110700-cp38-none-win32.whl (533.5 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110700-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.2023110700-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.2023110700-cp37-none-win_amd64.whl (545.5 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023110700-cp37-none-win32.whl (533.5 kB view details)

Uploaded CPython 3.7 Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

chiquito-0.1.2023110700-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.2023110700-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.2023110700.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023110700.tar.gz
Algorithm Hash digest
SHA256 2c0532404b10ee8b3c993998eab71e0d1d21156877924c8974070ce7d1d6d154
MD5 afcb93f684d7d3350555e71a37925ce2
BLAKE2b-256 783f64b8fea46e84f335671ec12aec6e93ae1b0ff99a8ba2dde543fa8fa963ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea4bc56ff5c3f7076ef2c4c0ddbc9b8205f78d5ff6bd13df020a57eff5fd4cf3
MD5 3cd8e9ffc5a1d707fe5ee384f61b51e7
BLAKE2b-256 d7b80c69ad47298e979fc182f3d243efee8fdaead8f24a134dd43ccb47587fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a590bb7ee58640f8a435bf1881f6f8f21e67a579d46e6f772498f9b51531004
MD5 e563bd1b51b1b03bf215038522f9df9b
BLAKE2b-256 94e880a209bdd5d307f64b5f6fa3ada5e331783018acee3b874929d1d922f1e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d16a7f8f94073435d7cb368213bae44a9d7f53794c9ebda7aff0115edef450f
MD5 dc5877b4d9f16da16b7d29ecfb532313
BLAKE2b-256 31cb4ce14835deb3f31b605a0109a769bc32396c3baf9bb618f7a906a39d3630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c3ccbd07a65bac2c0619e57b298db7fd4480f120fef4d727ed309655686bbc5
MD5 a1bc9bfd9eb78eac4833ead696a400f0
BLAKE2b-256 6618d714c609d8ccdc067aabf33c0997d3d0ad2deca278637bab847af6be81f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d01e65b1153d5b59bbe9e6c720a770b0df7f1f1a197af7bd3fe2bf110c3f5a2
MD5 14cf58534fa33f31fb3ee3c9cf6dd623
BLAKE2b-256 254e326972262a149c06c9fc6b94d7bacde28761203ffc90cd013c3c53abefcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3387f15a379e79cdfce6dc3edcc18cb71ef9571cb9f98227bd2fe2185e69e1a7
MD5 a04811c71c3c0b8b03938dd6f4faf715
BLAKE2b-256 92d5589779e6761dfbee2748f4c781aad22aadc1fd953ff79584c4b4bafa9d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c80e45325469e23fc6e054656480253ba79501169ff0902ff88b2692cdf9adc
MD5 63febc275024ad82fb18869208b3e673
BLAKE2b-256 a058bf4e3bbc3b1f6d4ac05eeb8dbf67eb0756a95f1a5111a6c869e67dd04b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2aa396a555752368b442a826882db5e908fa3cb4483554bb848fa9aece9a51e7
MD5 208caa2d13fd00d3dcc327c9c36dd7ed
BLAKE2b-256 3e8dcbce7c91d1ab3e07310215a5d9508309d59eddaa51e63b278f7ae8f6558c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfb891e33078728dd55c1db2767c8dccaffaee29cf399b99fc0c7a816ff3f02a
MD5 4e5bc959e0cb99853cad3a26074df059
BLAKE2b-256 db1f8f71e7feea403739fef941b4399d1090e90182f4ef89cb23bf0dd8ab6687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e06ed2198dfb58b92bf24bb04306bedd5eeaeff6a372cd5c682b78e059aeb6ed
MD5 54c2dbea6b1c2713ee12e0091799147b
BLAKE2b-256 535bf78c68ace7e3826b5a48d9e06e1bc5f684e6c134a158cacea7872738b13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64f5269b1e81271e76042a675a5d78c262382da37927156f67798c413405e3fd
MD5 609373d1e73e60548db5434da3ca1f42
BLAKE2b-256 9da905a84ff7cf3f0f9452c75ce762487dd359f2f391e2510b2f7d8b58716a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9d5bd44afc7918e0c775a23b920cabd43007a42500767fa0fef727cceb1abca5
MD5 3f4455dcd60d220f42291e2ffaad81c5
BLAKE2b-256 5bf16090110e204a2762b2a010ba533f8433e857fee2ed83f3c097f29ab08cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89f9ff78bee3c578bf3f88f3980929b2e9035e7d577a52912ad8a792ca0017ea
MD5 cb5eb440ad7b8767540e572a5d58d6d2
BLAKE2b-256 cfdcd3a140fbe8d2ed63ec860ed24d0e008d08291e911c6137cfbf2c1bcb8c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bb90293d64e487cd4b23074bccc2b081c73a563a9403dd7582331a341819478
MD5 4604313b5e18b52b74abd275ed5b2977
BLAKE2b-256 74698dc49b9baf9fe90bce8f5993d80cf8c2ff2aac84fe8fd231b98e8d24ca35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fef32ee186437d116fc866acce360c9a53f330dd46c871b0b9630704ddaaa6d
MD5 ed8c59b61d349757d1b59a8cee09c2a3
BLAKE2b-256 11710e431ea2e4dfb21959d6f85e3884ee2c14ab1d21c2a770cc4690c9b71469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc9621cf7246050ef45ddc34da70619f6b0e8ca067a6e1047e2bafbd1ef4b94a
MD5 2b3f4fdf07de7af7ac56255e4490259a
BLAKE2b-256 f3e0c4babe18ad4308976804848673ba572e3cbbc9d564103c1e6c6a7e87e60c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73fc8713893e3c71cbab2624e08fe5b1e62ad97f4999a4547efd2341fa5e0496
MD5 24df173c0cdca153b65e81402ed7874b
BLAKE2b-256 8d6ef01944469245ba158ea82d9471ab7b653b5fdd08b093902a38e65a42d8e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b481a5d51c774eda3a1359fbddaa32a7a641e0e3f6cf565918b8af0ad4fe69de
MD5 02ae107e2a31bcac84c679eb147b8cf3
BLAKE2b-256 ef168501f1a0c9dd268624a4db3ad084bd89033fde1a8aa02b2a39cc1b92f97f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5c6166d506b37a23ac941a01b5a26ccf361041b2122a211400437493125ec21
MD5 357d8add6f6a8b6d2f8b0815d310f0ad
BLAKE2b-256 d08289dbc2f1b866a8d3678783e044d6a053101eec4ee5ecbdca52e0f328e5ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b71cc6a1e8169879112c4cb696e0f5e84a4d5ae683af10e377229865654550ff
MD5 41f0d4e5d1c799b4ac18ae4fde927f53
BLAKE2b-256 3609e635deda99ab58c13311271c3874eaa8e6688c670d3dfdff18a5cf239fd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 449e85d9eb8a107588d87e885dfd434aebe69c65e4497b9236f374840b72cac0
MD5 b010df2fc636b39d96598516d279bbcb
BLAKE2b-256 00575e4876205a4b8904c5f62082c67e5b90fbb8bde672cc17bc144f66c28252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9685bd6bdeeeaf3a72b5f2904bccbf83208b4b7d633598b577536bc5ba6c5aba
MD5 8f13773984926279e4d7c7afac0fe225
BLAKE2b-256 ee02b25a1b9d3900af6e187dca27532f45507abca23d764ca18404b1c1b582b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 900173d95652e6468026214f2e01b0be202ab21e0132082527bc4012f567f3fc
MD5 85c1873b93de78d591dabf53ad812dba
BLAKE2b-256 96416056e0ecd8357f62f06285d33b24af0429aaad7e41347f7eafea7fd96a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a071d1289f1b4b8d3d210f2ddf5d918c49f7a1bef2057df11cc36f2c4c466d61
MD5 6be8ec460c8de76bd13a4b031a942a41
BLAKE2b-256 0e270cf5eca53fb21b3ba8823c4fd938f3b365fc250e163f0f902909ac78ac46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab9d860b3886bac602b77b5a6147b332c2c91f1d39dade750abc993172d66eaa
MD5 c5edcf403bae5c5565b81b5e57c1346e
BLAKE2b-256 e87eb02ff0ea8eaf4a04da738355e7003fe7d7008dd6bdd719e487229a9a0621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a64ec7575abbd21e395b8107b4b062e5610d475cb052c6c608147b0862dad477
MD5 5dbeb50d9a4aa9b6f789a61723fce0ee
BLAKE2b-256 07307138f1f864b6f85b9c1df351f0c9973a2743ff8bd82ebc97fe9ca1acf3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3ef375dd1a9811ebc794e67d6f861416953c3d3265f4a5c1357c2bb079e72da
MD5 f2a3bbeb8964bfd36a4a7d193ff57255
BLAKE2b-256 4fbdd40faba161ecbee3184f7d5b896c6c1804100a91280e1a63b04b929a47d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc7e852d4e5e61ccd5a3d8c2f9afc12248619a3260d60b77082c63d3740631e2
MD5 5ae51565b9f84065fa7b765fac7ccd3c
BLAKE2b-256 2c0b876cbd8aeef47df77fab68612de37d434392265a33b47c19e1adb24cc566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 414191a1d88df15554307da56bf258f1d5ce41c5393de9a468d4c6ac83f2f94f
MD5 86c327373e22fa6fca41a7527774d02e
BLAKE2b-256 3df71d963076b0811d160d6d99519ca9f95372f49f8ec32fbedb8b85f806bdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b9c33a8ec89ff8f37402b77c78e8b49dbc7697fd86ca17855645d99d07a8e252
MD5 6702395162c18b03073c50ff0f1e579e
BLAKE2b-256 8fab732596b2eb18fd637335733941ee18054436a3739278521657e9b8f1d8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e9cd3f516a468bbe537a88c84165aff41ac762f99aa6dbeb6a696b9d8440644
MD5 926835bbad7b4dbe028484cb4f8edbf4
BLAKE2b-256 a5cb4ce40878b86cc6f8a1a772fe5cd8939609d466f1beb3133b970169f90df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e581b23b708d661f39130d7d74bb6c7e97d1409cd6047336d852ba798325108
MD5 23694de05354638af3cb7b05e2e3e8f9
BLAKE2b-256 74da9fe47bec0c51452d7805d51c3d248a8578d524559c0d2cf08c5e642e300f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa257f0430acaeb0dfded931b1b440b87cde191d0632869d03bb7f189e1b3c73
MD5 c80233007d52e1bf927d2ef0a1c22105
BLAKE2b-256 81015a51a733a381b40b01a6ccba4fcac5e41a922f7ae3cd97cc96a31a9086d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7276ffd64018bd126cc43e2eb677e9879090a4a0a86c2ef68331644d1b36a20
MD5 0fd2abab5edecaace4bc3c10d14ee56e
BLAKE2b-256 0eff07427ec93dd0b17897e6e251c98949c8247c03a6315e8e9b7a322cd665a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43410fa7d41128121306be5042f5bb2f830d2beb6eb281e45078a39beff2c925
MD5 6e998fb15b518dd4d83550892df36cec
BLAKE2b-256 a19f500dde15dee8061d4f3f7146a0ad37cd330a2c8547dc41130271e4146d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8de1501c978cf69c5a6a7207845135a8adff0f0ece5c2f565d321c1f49e2c206
MD5 1446b8b17fc67f2d8c66134ae451c2e2
BLAKE2b-256 5613bf0bd4ef62179345a5d7eb63fb9dde4e6b7a367514c9ac66e18fd8517944

See more details on using hashes here.

File details

Details for the file chiquito-0.1.2023110700-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cc2dbea86ec85ce53fe021e19d9ef90db5ec0ecaffd651d82f81a3d3e405158
MD5 06976de4c6fcfca1669a50c893e1125f
BLAKE2b-256 5578a442e516d39423dbcc2eaed9de33919ca2300b9d6125c4573790d3bfd83f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4b3527a1b2abe1e7bcc5ffa2e2d4b084624b60d56d5daef8ac1996f91fb73107
MD5 5efda1aa831fbf8812955fa204779405
BLAKE2b-256 25c17e600776e9d9bbee210bcc66c4a3d9fdc4a16add5b7e3317aaeda4ea2b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ccc814d1774601f94c8a258fe873c1d70d652f94acc0995bbadd6e77d6e5b1fc
MD5 c4a63c63a3af1c48671b48d2e68944b4
BLAKE2b-256 4b709adcf7bea6108339d9f676f5b9ae4d1485cf809a57d008894ecc5dd24ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8867ae5d6476d98418220886d8002399494b663b25d9961eea0fd78d9611324d
MD5 62b7b163f6fa5bba3648a3de6d0a4cfa
BLAKE2b-256 e1e15eb1a6125a4143d5f0c1332b73616c436cf7e3de4a3f0a5a35e81dd819e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2eb934f1ee8ee26db8066f9a4351e6a32a1a69958f93722b24450ba4feb900f4
MD5 9df8deedd60f45e2ef37e7b0f893563c
BLAKE2b-256 8b20218c5c5aedc4a367c7a12c3eb679dd28563912f5e31292da0c99058c0c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92fb2324a0b077fad255e54b78be3bbe6f3f144f8a410ae8422dd6509d17e9f0
MD5 9411aad08a19e59d8fcabfb5d62581aa
BLAKE2b-256 fa47dcd1c8ba4e8e8da30a01dc768bb716ebd0dd24cc930d12794c6fa246e738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e25886c264af1f03c6390c8c11893f4c0688ccecc246fba7b5dc1e0240a57929
MD5 33a0fd3e16271273603c170b804475b3
BLAKE2b-256 6e3d77ae46c1741be611db787db6a7ebf48f33c8dd5f90ae4d1e2982a58a65cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bda58c31791fa1538923921d499c84c14dc76cce3e0e40ade4dba9c2c803920
MD5 ca9fe345e46be5ae2b70f6a348648575
BLAKE2b-256 61f15dcff2b646817182678ef711dffcef0fe484eaa96e621ca5beb7142b9849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3d8cd9f5b2adfacefaba5c50e0f2782f717ca5eefdec19a81016a7d4288915aa
MD5 8b0096621aeb26b2b01fc7f9579f45bd
BLAKE2b-256 b22f995f7b00b42e8635fe6e3a0ad50042654c01649681e83374361e07703a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc92504186518765d6ba02ddd8cd21653647060292db740abf24de09b61a099d
MD5 72b1adcb19f96d2c50eee7b4bd1e9f89
BLAKE2b-256 0280d1f80df2996f20fd41a5a2ce467709ee70dc93770f870a6282c29f71925d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e2f1ef817ba66c80619a196cf3262fc61797591bcce9faa32c303620c1e83bdc
MD5 9c861be5d8682f771b9d8ac6a6ad3009
BLAKE2b-256 694a4775e5393aac0db803f1d12e552b8b527b96f19f9cd6c5f12753658866d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7ea63aa62d03d278131a86340db3d47d007fa018fb5b60c0bcc5535395766b6b
MD5 b73dee612f3c82fea9453de5d9506ca8
BLAKE2b-256 29c384a732c6a6d805f8a1c1ab66577d4b469ead6d9f16469429991bd219a2cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e8494050fc79e3c062598aa51842236e821385e9d3351a63ff7ab0329e48f3cd
MD5 44b51253fe0af7968487db070cf87b8d
BLAKE2b-256 9a86da30048dd38930e36cf8172133935e9ce0cd427f00f7e0f77a9d04a8ec61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e3112939776fb06ad122eecb3188994e30776f1065fb4f4016954b1da0fa741
MD5 806e274a6081f2c8cc4f0d35dd1e677b
BLAKE2b-256 557b0fa084ecfe6c04610fcdab18f4c472a14c22589d7604989d0b1a9f2c2f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5e9e34168a81035ad6cd051ccd39eee929c704cf83334ce8df0ef679e3517b7
MD5 17c99b747b67e5517adff87680abe504
BLAKE2b-256 a294695babe642d86dfb7ee2da89f8ccc51f3230dfa963937398d980297b12a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a16a288c9a26557222df842aacb912b225d7b717e346b71698ef46a3c160a72
MD5 29df844555863081d25eba5eade06713
BLAKE2b-256 8ce341cbba6586e0fe4d6282c45a11fa8d39f9ae9ecbca04702577505f2ee672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8356d4750e3b0cbc1327d8321a00acadaab9d08804b0e8caefe449db5ea8a206
MD5 efbb5c9f4f479070f2618a258ab4a83c
BLAKE2b-256 c48a4a764eca8cfd0b52364ef7dcbb34140b43492730409334a1df628757e3a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46a87348d6697eece3f88fb7702db1b6811bd35f758fc57a681d0e1e06971e0c
MD5 e93d5ac0239650b28c312bf9aca926d4
BLAKE2b-256 248d430f50d5e48ced577e7430f6dfcb1c2455258676eed7c1fb9e287e556788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f0f50afd6c5e68d530a8372986934565a62aab77f2bc5fb03521d7146fb6f0ba
MD5 84279f828515a5b14d08402cc3acaef4
BLAKE2b-256 fa7d2365bafce35c487a96af56e2176fdf0f04dcad04cb0b23720fbbe87530c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60e3322dfd4241bd5b0adf6f7ea4f07aba5ce6c47bf8581cd641bb702ef13fc2
MD5 724b1cd33bf85e34e742f812ddaf26b5
BLAKE2b-256 fa049b2d6c921a33ba5322183edfd3a12864c0520bd027cea116069a58004b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f18b27055fb1410a49360a7d7f02e44fc8763a192c4b7664cc2f358eb8c7dd54
MD5 8eb51e1975cc0f7236f3c4ba8be36250
BLAKE2b-256 9f8afa71c49d090fd3a2d3aaede5f3d6f40b1a0487efd266130bae3ce8a8cab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 648a9a30397b5e9de02a715c27042e8306560a81cbe21777f28d5a5a3bf3d95f
MD5 8f3859c05b632aaebe4d9d7d0c293b24
BLAKE2b-256 9829fc6de1f55a3dfd8cd3fd175bc29945328a15d88d543e523ba5f3e9fd0050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5e2f206c80f3081b14920569db9668ade392758a2f3e56b0a76e1b393e979232
MD5 f0695e962bea5ff3a8552cf99f73d72e
BLAKE2b-256 993ce47beddb462bb6a724fe88954a2a9a432abc8f347d12b5e91a967943e045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fff3454aa3407bb0e903f711aa56f02d688905df63c490afb28964047e684d2
MD5 76426a894041cd0a8adf5e022e0085a0
BLAKE2b-256 a9d2bc938fea95e6a5a6c905b6e44802f5f89e9ba1752c89f6b9796965159cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 378a9b3521eee65e7483d8cf40237f14c65456e9efb5a4b3e995c82b5bc6d799
MD5 685e03e4784b9c80b66d4afcfdf3b8fa
BLAKE2b-256 205409981c9d584291590cb0102d6f7addb05b79bb3cec7adb74efcf1c5a7025

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df4af591c721dc33649f0043c85c7c6b64eeaacd100c286b949d1b3d8f1b6fd9
MD5 e1c6646ac67919acf3cf58a11b04d88d
BLAKE2b-256 e33dfe0a107d3db7b30e6994629a5a01cb11c366fa8fe32af6d9db60c2b985a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 670b2f9b285e2ae2ee5334f3854ecd664355e235f630558aa9d5806e00bea0f3
MD5 6b4154e12b6772eb3b4623ccce501ce9
BLAKE2b-256 8fe768d2330398d4b90ff6b3063269117082188ba478a58582520de526342659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4399855b9fd37ac8d75e41c519662374d4a42ba3865a158a79135cdedfbd9c9
MD5 3305701c03b421d24b80d972fc3f2429
BLAKE2b-256 33227b08f494b773a43437471f453c1ef5988dfb5359102c61c874c04e7850fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1417ea7f97126b7734baf8d4c677c1975c9b7a80aa6267daad1c3c940112edeb
MD5 afcbdb61fd963b3db1b86bf48ad89ce8
BLAKE2b-256 48e9a592bffe68186896d99bfad30d4294cf397e793c77b22e15935c631940b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 23cd5f9ed60f8118dd94e3f40c6f92f05135253940f7e94f4cb48394d02acdfe
MD5 67ab98749514ecfc86ddebe61d5b4b38
BLAKE2b-256 9bb174e7066aea6968df1c19e9dd28b3d1b90bdcb3072b22f6bba23ce2ed0863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2caa14e1e813539fea15b825602853c0020fb75dbf3468f633ba4efd7c76b58e
MD5 14ae9f1eba1cafff83f92ecf96e918ba
BLAKE2b-256 93d4f098cd303c775171dbc87ea2826e92495fd85ef8fc3bc164e06437796c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7402f62c0c783bae2222a7ef4d5e778ca66188e359465a9eec06a767ad9f093a
MD5 d75c39eb838a1ce150213c2a121f0c52
BLAKE2b-256 8ab0212e371a288e8811188dd79e5ea21265eb46407c84c7ef799b8aa273926d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae04de42ef0e3fe6bf467c56ad9ac42fb145bce8b69b61485c83ac4484e805db
MD5 f994b6778bce328d92122326c8065842
BLAKE2b-256 85095f1808623f649c8236033e3ebca02e755837be5e4b4c30c04dd136bdd6fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 778ad2231cca49e8f675be80bdc987b20fb22bd53e30a437da7e3c0516199657
MD5 7930dc50e070bcee5f655abd9842d2ae
BLAKE2b-256 4cc69979fa41d71cf72f15de07eae35cd665bc75ad1c73f32313ef11c3a24cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17b43df719d20027bd95792bf0f1e8ffd6d69350bacf914a44d7784aeb5cd116
MD5 e46727ef31f11977305b93876d150d61
BLAKE2b-256 5fe55b6a33f0f0b0d30fb6d3b5f69c59b9da653fc2396e0e9c757fb18c487b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6783c75d99851c3bb09042bd257b074de3d478a5ceacc3e3a596a887da2ee411
MD5 d1e54ce2553c145f797a9e0f7f4b57b9
BLAKE2b-256 4c501a3176f37cfe7f240f3d8af096b2cfd7ff7e36be8b91af2181a1a8250f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f4de1338d06891140edbfd1c5ff6f791064c8d60aeb86916e33ffe1b2bd6042a
MD5 854554f0720dfd5d3589a5da6a363866
BLAKE2b-256 20638139ba128f6f7ec57da47970f77c56a7abb9d7f53a9ab5d0a71ce18de9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 272d1c45ecee48d256f251455bed7692bd6e5cfd59e1137ccd118ce522ac9d6f
MD5 dd4f4b74e24b4801e5e06e229090c901
BLAKE2b-256 9c4c05f5be8c5097e0dd38ddd98eec76d2e5b7473623636722bde42854f22eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-none-win32.whl
Algorithm Hash digest
SHA256 c3011246e0bd21b54584d35c8ed488c098c1004010a6033da5224abb0e3b4232
MD5 e286bd918afc836edc9564a357a299e9
BLAKE2b-256 53a24a5e6a2427b6517eb43442ac2f37705709c01aa2c7b9b340e58ea0ed0cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7f167040f69cebb6593fae91d8127f70933afaeeae6ee9433cc29229e072b87
MD5 2c8cfc2fb7e10a4815448a57eec51e32
BLAKE2b-256 8268684771568f4ccbd1d153544b8b9e9a970414232d84336c53df9b21d7d109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6a8369a08416c15140caacdf0df2c04168546bc5b2bb922400697a19cf7d12c
MD5 9a7074611a2331ffbef61f9cdd201947
BLAKE2b-256 703174ddbbb1e4de4af68d1e2b1bc8a67c2f8a0abd0176d481e232a5a894a11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cd0df791f62767f93a02913a55babcee2d7d930b58a812c9544d8eb768cea7e
MD5 8ecb27a1fc997579e7fcac11da5ac899
BLAKE2b-256 f627cbdcc6dee4f8a23805b3e5bf685c858d174cb8b8aae93fc8aeff4536a83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dec6567cec26e83f46c6d11e28606a972ed0898e8a3f09168bee7eb36ef91e26
MD5 a83b5a6d1a02921ceac5b62656fb1efe
BLAKE2b-256 b20c66a329d16d35ca627361b963c18bc756ab120dda1c6cf7163e696f7b6b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8de37b94dcdfc9dec030ce09513ed7b339d6e397f2bd2129f1cc485728869e02
MD5 a160834059f3cc68d9e5a36d3173d67e
BLAKE2b-256 4766d7b9895f538dbde79fe15f702704d8f5eba2f530d37704549af307bb3a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023110700-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2cb79f1c32c48c732ee5c2f46ef1cfbcfdc6bc5fac91fd9a3d1c72c5e18e87bf
MD5 0558e7e824a33ea081df96f34f811123
BLAKE2b-256 b19d0d456ff2438cc0792220e7d8ecdf6968d2f76f8ec8b375a41b3d930d6185

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