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 PyChiquito.

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

  • TODO

### Run the tutorial locally

  • TODO

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 maturin
maturin develop

Testing and Links

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

Currently API documentation is only written for exposed user functions, which are scattered across the DSL, constraint builder, compiler, and AST. Refer to the following subdirectories for specific functions:

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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023090100-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.2023090100-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.2023090100-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.2023090100-cp311-none-win_amd64.whl (511.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

chiquito-0.1.2023090100-cp311-none-win32.whl (496.9 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023090100-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.2023090100-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.2023090100-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.2023090100-cp311-cp311-macosx_11_0_arm64.whl (670.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

chiquito-0.1.2023090100-cp311-cp311-macosx_10_7_x86_64.whl (705.6 kB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

chiquito-0.1.2023090100-cp310-none-win_amd64.whl (511.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

chiquito-0.1.2023090100-cp310-none-win32.whl (496.9 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023090100-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.2023090100-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.2023090100-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.2023090100-cp310-cp310-macosx_11_0_arm64.whl (670.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

chiquito-0.1.2023090100-cp310-cp310-macosx_10_7_x86_64.whl (705.5 kB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

chiquito-0.1.2023090100-cp39-none-win_amd64.whl (511.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

chiquito-0.1.2023090100-cp39-none-win32.whl (496.9 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023090100-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.2023090100-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.2023090100-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.2023090100-cp38-none-win_amd64.whl (511.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

chiquito-0.1.2023090100-cp38-none-win32.whl (496.9 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023090100-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.2023090100-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.2023090100-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.2023090100-cp37-none-win_amd64.whl (511.4 kB view details)

Uploaded CPython 3.7 Windows x86-64

chiquito-0.1.2023090100-cp37-none-win32.whl (496.8 kB view details)

Uploaded CPython 3.7 Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

chiquito-0.1.2023090100-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.2023090100-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.2023090100-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.2023090100.tar.gz.

File metadata

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

File hashes

Hashes for chiquito-0.1.2023090100.tar.gz
Algorithm Hash digest
SHA256 eedcfeb79cf2be63a24c6a148df0fbed08b45ace8398c745c2043e8145527058
MD5 a3ff4c72b8d42b921fd14e2dd3099c8f
BLAKE2b-256 9bd5f3955138baa13a55c2eac3e139a27f9497d370307655dd170694d5496ccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d3d4eff0ee84d6c45080d597017869fab970084145b963d5af06f852270cd90
MD5 11e3f29201791766e178373498175988
BLAKE2b-256 b700c0d69df9854dd51a95a1bc826abd7773aa69f7b62f9bcb88aec4f8581a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b726823e47a4962275451efba05da12510bc479ab22ad2e19d080cdd81d028b2
MD5 d111e9590eebb43aa9c53187ec628d23
BLAKE2b-256 d2db931458cbc86327f9c0d89580c6727effef8a2348810ef16ced51538e1b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7aadd4740e5982925d01eb8471cad350f8bee920561369ce80771467d5c413b
MD5 e7d37820b0c8f706dbf5b3002ae665ab
BLAKE2b-256 3738584a7231fd6067785d2304959796f7ab8e6c7376ff9bec555d4ff824977f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f86b9f33817360feb7894739c2f1178a36092e520a45e5ef3975f25f7925f03
MD5 6a988d03e150919f7117ba0f4b3513ab
BLAKE2b-256 1c31429d0b7b149e85a73a5073fc6d1a06f5a41c963d0845a978bfe0cb463caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bef5da7f2b97e8da0447c9e35936fbfe3ea71629fff6e2dca77dfe5a3e658f9
MD5 e65196c3bb839d046178a965786c457d
BLAKE2b-256 69fd323d3a24ce6d9dcdcb4986533426cdee18fdc5b89b9dadc83fdca0ab4c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4193330efeb0879f9fb69643d49de3a794eccee16289b114308e418e40c44ff8
MD5 3fefa92f96b76b5a3083bc93374123a4
BLAKE2b-256 9463c93fc2c80eef3ce8acb5fa79c89cec5759f84097e7cf1cab12b2ab29569f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89cdef19d612625b6db129b1f27a4772eba5d993ca75cf457435b701634698c4
MD5 b0dfa1a57fd716781426e75279212d70
BLAKE2b-256 a39428d7afe614dbe3b3126a19bf92050908bf70fcac88d799ecba78dbc29a54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 146ed4fb8f922724a14a1f8c7d63f952bcef168aea22f53174f835945aa612bf
MD5 eacb58d58948d35c49e0cb9d90ee27c8
BLAKE2b-256 2b304ff53035d7c1e269cea8a67a24eb2c06d8bd5d916c0fa725478f66b931eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0ef615ea0b0d2d04acd65554aba5ebfc298329f1f990a01a0c47c2154d73ff1
MD5 d35d2136cdd096e95822447c96747237
BLAKE2b-256 b9222fe72ccc977230995254b1228e302796521f39aca7a34820689aff586155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04e42f8fa57a2c0596cd72086ab9ef63919fbf5beeb4db71da778426919dfd91
MD5 5ce5fe42d868acf2f770b0bab93d5cca
BLAKE2b-256 7c478a84c0982e7557c4799bbf884f15ccf0711c4eab89fd6ec3b8135238f96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fd22801fe1f6dd6478c0b5f3c49e40be8dc3f83e3c3635ce4d92ef34cf1740d
MD5 609b59c2e0bb9cb0378f4ea329cec097
BLAKE2b-256 c9be0d1ccc3ec7d6e38418868895e00215d6c65f3fe9a1b5ec9b8581cc85b690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0b0259752107b91f61f6385392e8c814d4142e2e3dd9c9fe731b7773508fb55d
MD5 d4b5cadd84c9899953d1705d82b2b83b
BLAKE2b-256 f7b74ce9b17191e14551344f47565f9ec6c7246cad04e5ce0ce40522a3d6fe9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d370489efaf8a8c419aa3f30ea1e2ca8b3ae87065d98156a0b990a5373177847
MD5 ab698497be1ff904f2c229c7513b7342
BLAKE2b-256 879931941768ab1f49351a5e9aff34b7e5a970a2146c0161578644066d6b1885

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6146a6cd3badbaffda4ae5ffb4912c0ee388e4bb33660f3fb903886ab4312bc2
MD5 5c97708af6ecafc83a2c397b994a69b7
BLAKE2b-256 164db1012b916033fcd2c3e8e37f5fd4de64bea5b55e7cf23dc96158ebd7810b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9aab04bdbcd2ce7265947618ac4f0e3532ee2fe48ebcf2e3199a13074011330
MD5 a5e5cf8265bbb02b67b2577d957b1c48
BLAKE2b-256 523be95f0fddf16bcc1ce16cfeeeb27db3e12107bfb2affb6a1d8c5f4585282c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7535946e1e3eb4a8ad211318d35709e6f74c7a8f5b305476d71f36526de989d9
MD5 79b2e4467d4ac91c125f250b022778a6
BLAKE2b-256 4ffba07a5441477de0070ea507520eb1e32ec021f27267a9270dea251ad9c23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8a3676b409e6cf562898306f7490d6315e73cb77569a3da18fe38eebf4acce2
MD5 e316ee01a9ef6b8bd61198509e0c5552
BLAKE2b-256 b33dbc608844517e3505de526dff00fc27fabf5581ed441346db03abf7ea4a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 db2f49ddddc47a6e39c6ca732aa47dc37d502a9253210f80bfdecc67e155f264
MD5 4a44b9dab048f0bd5d4b7ad8320170f2
BLAKE2b-256 0b257beb711e6e006fb00fef2518b44592d074de0327a7027d363bcde0ae9b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5656bcac4f6c6ae157da552964f7f91035e8f040f3a1decb805547f8c3e8f27b
MD5 eae691173a359ab4167e6e90895cf8bc
BLAKE2b-256 44c22d952a9d3819e927920b689b531a1256c9b530575a1cdb966f463980cfcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afd15bb627c20e34846b095e913a911a9240b98d90c69682b319bc66d2c14845
MD5 0816f821fc4ef9b0f21fc21ea1d1d3aa
BLAKE2b-256 72805b910df6cae259686aa1243bff2d33931db60cfbf9244cb3d2b151ff1ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89ab66bb367d956b1091390980213b62a420c5ad1007cff02ff2ca65e3d078fc
MD5 b3adbe805a837c5f58f6c48ca4384af8
BLAKE2b-256 5cf137210ad13d03a73a9ab3e96d5904ed442b89715e11009e5d3b4773ed5e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 483a9406665feb36dfade07c7142497e9d82f2b4f482af42b29861bb46d979ea
MD5 0783a6a637fca5f329611d7b02c6fdbf
BLAKE2b-256 3078bc3b1881212c82cf4a86acf5042ef0f7beb7834f33a049c97b86a4f67889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59d7d779adc5591dcf62992efc9c5d001b4e8700e422cff2a950708c3229cc5f
MD5 38901707e59b0502004226340d1acfcc
BLAKE2b-256 4586d2e07b4e893c6dfbd57195d5fe5bcdb0af7e0be2dffe252797999f8b7802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6d9c02f6268d1c6f10e4160ce4dceebb30c0b3e39e4fca570a404b234de47f43
MD5 7482818d0fa2c34e84b4489460101d78
BLAKE2b-256 e9957ce57caaca0ebbaea917f0c5d0f22de24adf3ae27436425c55fee1d3917f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3b89d6f3c923d24fd73239946a28694924f68ab00ec8d2f2e625529cbc65936
MD5 b7bf6f742112ad93b49e2cdea80da897
BLAKE2b-256 afb7b319f5a02f0eddaaedf417bec41876ae3d1d2027fcdbca367c5c8c815af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 018081d9ca1f975f6e93390daaececb5f4dc7bf3a353971f8e11208c1c7ad4dd
MD5 ff29cf2541054b7192b79341a352a85c
BLAKE2b-256 657dd1f5bac347921b7a0f885bce22124d0e1ce27ac0f8021b0706dcf1ec2555

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27ea253b5a715795d415c5fcc2380b6819f003766cdeb8457284420b3ed2a3a2
MD5 098756b46564bbd4b458bfa85858b25b
BLAKE2b-256 2cdc433cae6d8ec04b5f1a3838e318fa0023b92f23d80b2102c0a95a9eab3157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4059936cf9df06136d1f74f8c8ab0a32c1ab53445bd9cd368d0bc0e3df1be002
MD5 4ca01513b954ca858ecf0d94ed85983d
BLAKE2b-256 157d3ef92625c153af6fb00c9ac1abe7faa626ec48e789ed5ded4739d2bab9d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8194fffb06b4bb1c70eb579b8f044b034d2877164ac8b87b1582e1af5713c0d6
MD5 191249dd94f29e123eb40259238c1edf
BLAKE2b-256 2d28465c484cdb11e0dc8c06fcf20a6f7911b7688c64baf71843ba6c21fd5f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 44bf5b86f4257e3e5d275c0dafc5d2ba240209cb8e5eec4991efcb4fa3e79531
MD5 ff9164c82b04fdffc2df677b7472f9e9
BLAKE2b-256 aaf71bdf10b6e27cdd21f4e5435f0b5a88b40f1d7949cf987eeee94a1d8a3529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 447aeffabd0583b49b77497f12fdee0a3dff6537d080243254588307c24cbceb
MD5 4a891863d512ade689d57fc8c8a7d36c
BLAKE2b-256 6a3d22959ddd9f21d738a272ab85d35b388fba96973479927184365960ca975a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a82241205f75e8ebafc86e35d7e98cda8c9e3ccadb4941d8d0599cbbd43f53b6
MD5 87f072c7b428f9df8e03d5f094f15295
BLAKE2b-256 27e8835e33f87c3c7c32b9bbf976372890b367a8ed79369e4b5b948467df60a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4ed03a62e07cab620a8393d96aaebffe7bf9d34d52a7cad41b0271b49e9043c
MD5 62c77b427ee841703d28416e23670090
BLAKE2b-256 fc8c1ac16b6755a558609e07cf9fbdd12164fc63f3d5c926f004e84a0b9634dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 576d624358c32cb8abd0a6a30024fa8a993f89bd0222b3171246450de4a3e614
MD5 d86300a8132826e71ccbc0790bf9482a
BLAKE2b-256 41b42f7b639ad4be0f9315986cfcb6cd24ffdcd557ccb465da3ed6132c7ee1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a44aa74c1be802d313ffd0787e70243ed8aa8121df2d9d1265ff8d6c95cad5d
MD5 37bffd6b07f9552f97c5f1653cfb31d4
BLAKE2b-256 9efa699e5991952bfff6772cefdf96f587df86b3d3b0c6f7f9eb6a05ea18b188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55f8e1f15801fba7357f34290b0df80ced45966410fe0950e7cf2504bdd384a9
MD5 b597c2844ef4291c1f7eb27d53f27cc1
BLAKE2b-256 fbc66481b38dce258cfd1017f94bf4de04a759141e16812fb7d89ea833eeec1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dac6d704c309091b5df9dd98aeaf4f883fb390de178b623b6ccb8cbb23afa2c
MD5 a0648a7e2a5c105618a7f10413cf3bbd
BLAKE2b-256 89f9c22691f0bfe7c36230c01a262128b807cbabc181bcaff20b3c6940c0b23c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 173037e76c7bbdff03a9ad4b7b6d62d609fc4c644c6b623ffc4743dcf261a536
MD5 963269e862c14f0a77cefe2f75268837
BLAKE2b-256 6e44b3292b1b3c6cd379c646867daf5d74bab8607643c6e88955bd5e166855b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03c7d20a22fdcbdc32d0aeb54f42a28c6f03f4cbe1c825c7317eee93108246a3
MD5 a5a4b423d6b17d1b928161dcbab89793
BLAKE2b-256 6adafb5b3e2a07ebccac36e0097cd69d3b95cfe122267c737787514eec6e7fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8a3a8c4e299a19132e190cd6323430993cd358bc4841d21e79d8425111ddd119
MD5 a1cd7172252b737f684f595db8fe752c
BLAKE2b-256 efab6904e7ae83aba62a41ffeef05a6af455cdb82849fe3f3617031eb3533e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 397ba46c06003255ecf682c4d63a291aea26ac1903aaa0914f2d6bf2d94e1b3b
MD5 377f5367cf3318c87e519de309f85606
BLAKE2b-256 4a18c3c5134d3e60339a529503f40729ae67927f4ee53a8b8c37b90ebd32e5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a3335a11f56522c5e58b212736351ae3ffa14d28c56f2627ebe33fd3d5c38026
MD5 92ee1848d2c30dc124c8c9a64247ac5f
BLAKE2b-256 f7a4a67d8ec6cd0e777c4115b5cbb5b1521e46b72413844fe025b96601091299

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b9338c322e8626cbf845f75eb2570a6a1841825a62f110ef5e7dad118c8324d
MD5 2218cd41cf39740e5b422155746b2602
BLAKE2b-256 0e360ec97e25481b0f9677715cdd50966f9443918775827a4eac1de211a7eb47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e15c2c69c0fcc138e3d3a7839c181cc78f98c4969ca9e12dd0da0963a6524ebe
MD5 8ceef1c27a7bbe6235934536b46656fb
BLAKE2b-256 06aa4f1cce7242e06a626700dbeec3035be58c14bb916ad9120356a9a01e6051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8985094057ac289eab38281abef955c3270c1a884085fa53f04ded5aa7519149
MD5 e24aca5b26e8c1daf1cd9d49cfbdc564
BLAKE2b-256 b2b4495939fea48fc9de9081decd1a877659f6900bb3b9d58622acdf95e5127a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37d35537571a1436c8eab47c955885ddf524977f6006eba0fb92fa0736742562
MD5 5207f379bcbc9f3460d1229673a938aa
BLAKE2b-256 c767f45eb80260cc1777666a4ff0a2de3d97c9dcf8ce97b7ae150f6150172e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e17e19372100869d204bb9c48d5566c29db62d2b20312742d6b82b2bbe0b734
MD5 f107158bf5cb1c0ca0bcd8ff71eadc40
BLAKE2b-256 fa05bd00a86089ee59b3f92d2cb89bbffd99044d44ca159a19faaeb685cceec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6a1321bff42ca31828dc9334fea5ce4df9739a3babffdb10698b9e5db7c12a8d
MD5 635495191174fc8873603a4dc81f022d
BLAKE2b-256 a2bdeffcaf7067032d926b9c2c2168c748a5c34d59ce9e7cae7be9f4ca4e0610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbc0bff325de619450118eeadef121494ac4db8c32423023b63f7ee42dc0fa80
MD5 c8f36f8ac708844c87fd803b8eb6d94b
BLAKE2b-256 958f9e53dc1c5114afd89f2ccd36ea984f29a0df52450232bd441c3737fce383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 54884de22bdc46b32484bbc2f97c04917f2b0ea08131a95bba5deb858de9570d
MD5 f299c906bb2e0f6158a96360cc795315
BLAKE2b-256 89adccfd57023468c47dd4bfdb6a4f170e28a30a0edea81081a1d1a878731247

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 914d55a1ca615e50ec24b46407c80cf25e928334ebcbaef1b8f27eeb4d97e8d8
MD5 403d91297644e0e21aa5e15bdb29c8c3
BLAKE2b-256 30630e665d773ce3e6e0dc8018a5ffcf73ba20a5bbe85f8636fa459663a9cc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-none-win32.whl
Algorithm Hash digest
SHA256 6da1ccaf542f502d6bb453450be612ff8de8f1abcd94903406f78767471ab093
MD5 b4bae7bfed29fd14ff3ab5fa6ca1b946
BLAKE2b-256 b36975fab7c35f2ccd6e70a71ea1188e9e5b1a21491b4ae785d999afbcf81b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97bd120936c8844b098565fd3211aaa15265e1f848c65f887c7188705a96743f
MD5 25a06a9f3957f9cbccb71a78035d7502
BLAKE2b-256 6fa88732e21a1c8744a3e9077bd61308045a9b7f507815951d27334edc1b438b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c19c3c62e1e502f0bc961671f6f55bf78dc3d9faa372be8beb287b04b167bc6d
MD5 2881e52dbaa9237596852b2975865252
BLAKE2b-256 0e6155c335d5c7c204a289fe7d4eb41754a4733d0e22905edafeca1fa4a20579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0812618ba39c4cced90387fadc4539ef304f462d6f58373dd50b33855d150ed1
MD5 163ebd39a7160181b81fc0fd0b619026
BLAKE2b-256 b1765a81e1092adcf7e44c3674e2538a97c0be33275c4293828e4e3e5ac5e180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08fb7a7214149c0128fcee87e1435835e8018d1d6a01601a46edd63b8519934e
MD5 eafc20487f07c58511cd506735006d89
BLAKE2b-256 4be9ba751387ea83b5c040ad78412b9ce917ef6338a63f3a861eafb05d5d91e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f4eb94580ef26450b62752e5ccbefd3229e396592c0286f0a0924c68c076736
MD5 e6282939cc2cc0fff798e46f0713b5ef
BLAKE2b-256 9cb99132723f9b6b722ac3c49a0f9a06f704e075db126d9616840ca08c0db6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cad2df10eef3f5597158f98c6cd164c058ac0d4a1c3133dee039b6e2893ad41b
MD5 70036c59f2f94c3a20c90f28de42d739
BLAKE2b-256 d35a64634659504eaf48fc61995b50f9ed594826cdd163b34f63b33848c71b2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1952d29f0efe0308461f55e1074509c250a1decf9ee6856ccebe5d7578bb6945
MD5 1950cd4f48bce6649152542a0d34d10b
BLAKE2b-256 a7be58b5b5ffa2ffdbeb3b0d7bb32b03a0e8d6c74b4051eb6290b326e72c4a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c3ad3c719938465d6dfba49073cccb09e12008cb0ccafc232e38f27f4ca6eb65
MD5 479935baf4067e1e6ef5a035277991fc
BLAKE2b-256 109b9cb43d55ab869280cbb4e9a0123b62813c47822b07df9a3d162108f56c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cb29511a754d243bd71e0201037f24acd4c8100d11b29b2a3690f5a20dd425a
MD5 82d0f76196a44a567c554774d04dc5d4
BLAKE2b-256 56785048fce453fa4ab5d7affbc9f3495cf7b73b277e587e1749cb69c1a7c1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f7029de0ea03cca7ef2449cde4c96e6198704efec32274a91621323055001c7
MD5 c5d6d03ecce91b1b463ec5b32d3ac372
BLAKE2b-256 b8528afffd82f873128e4f153928127037b14a615f0e25f44adf13dfbe23e43a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42edb9a467cba22184a0acf53dc4f4284e9f4939c322f2fd062935732b5384e8
MD5 61ae72ee59e669ad9b50394e218a2814
BLAKE2b-256 c18982f96a3764849ec6cbe01dba31e7de79ae1351fb0671e07e24d9d7f4dcb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a38b1f8c65670526407db05a30f1ee2dd6b205e778bb2a622d529f005e952d9
MD5 f2197e0212812640ae5e96cde7a8554f
BLAKE2b-256 ce751f6513fd65c24f6c047b85e35099b132a855a43e0e493574b87cb3594dad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeb57db423e32f57377d76e7010d1cb6117a54a5aedf614ce03998c353bb973d
MD5 220a74f8434a2f97b0c321c208c89067
BLAKE2b-256 5da16191216fc78d2e1444a66db08a729bcf17675b6f75b97bc167da0fcb30cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8d5a157ef61cd851768bd6e6e7c40f6f0c4ac69b37a0039640af71658a09ccd0
MD5 cc0307691420541fcb20a4150981843c
BLAKE2b-256 b954f414f0651843409fd9ca4126a29dedac64a158dd0e3fac06bf0edb576881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 78a554649dca46e80b972e60b3082605a81cc89bff8867bcbbd85117a42d3ef1
MD5 07bf69749d1f98483f39bd2fc4177976
BLAKE2b-256 99a5a7d75b5a2f5360ccb38508d786cc47a9e997dd8578e53257175d1a67597c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-none-win32.whl
Algorithm Hash digest
SHA256 12e393664bf8e5b6201f06f0481d1f4cf0880230b2b5513feaa87a3017d984d9
MD5 911cb1b2dec2730f5fef67a993ea3188
BLAKE2b-256 e6f0b4c69dafa441f019b58ac654ea4090f9a530e35b8a801760b5ca29dafcb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92e4671f0dc0333eace2ffc44ea20089c2652b0bf4b446897e2ac75ec77c69b1
MD5 08c1d144084bb41b1d912843ccc1e597
BLAKE2b-256 26ad135adaeafab3e095246521867ca241ebe33dcc087c56831ce87b7547aa42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebdaea1c549cd760b6b030028e199116764f3894275a19bd1b14b62f4fabb567
MD5 bf97ded3ae6fe25661abdc0b95a9a931
BLAKE2b-256 1a63cf71d36a6116c11d82ccf6dd36a12adf0ff03152e35000112658a2815499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cfc41f2cf2c600389614d7aa01a332c7feed43d89034898c78fdd861872b37a
MD5 0c6f10e3f2796c6d07e7bdd3cc83dd19
BLAKE2b-256 89c9ae906bd812f4df89ecdd8f02d576f6fca14e29c2dc8e57ae02e9e0bd4881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1300c4c3c60249363df511223cc438e3a980d2ed22cea93a8ba7beaec37730c
MD5 7ed6d448ab32513c29a81070015cc8a9
BLAKE2b-256 be5f1c7a8079f6dce30a93d6f83af69f8829e06a5f3d042cefb1c0b96e38d547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3483156193e42b40a624b3fa625a4c96c8ff6495db5c91bba6591a379db860ee
MD5 34154e5dfc710e99d3fa6d7b7fee71cb
BLAKE2b-256 da982a786b9e7332b9aa8024fef14ef56e4f72a189b4fc7ffde804207fdb1488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for chiquito-0.1.2023090100-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 509ee742e2665b163a3722d655f19e97640b3a6fa596cc9579f8e778a38ad9ce
MD5 f89c9d8aa858a31048d095600f9bd2ee
BLAKE2b-256 39fc46c7289365205e61d73e29696e2ef9e380d26711224224f15fb095beef09

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