Skip to main content

Parse, validate, and convert Common Query Language (CQL2) text and JSON

Project description

cql2

Python library and command-line interface (CLI) for parsing and converting Common Query Language (CQL2), with Rust under the hood.

Usage

pip install cql2

Then:

expr = Expr("landsat:scene_id = 'LC82030282019133LGN00'")
# or
expr = cql2.parse_file("fixtures/text/example01.txt")

s = expr.to_text()
d = expr.to_json()
sql = expr.to_sql()
print("SQL query:", sql.query)
print("SQL params:", sql.params)

Or from via the command-line interface:

$ cql2 -o json "landsat:scene_id = 'LC82030282019133LGN00'"
{"op":"=","args":[{"property":"landsat:scene_id"},"LC82030282019133LGN00"]}

Developing

To install the package to your virtual environment and test:

maturin develop --uv -m python/Cargo.toml && pytest python

More information

This package is part of cql2-rs, see that repo for license and contributing information.

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

cql2-0.3.1.tar.gz (95.5 kB view details)

Uploaded Source

Built Distributions

cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cql2-0.3.1-cp312-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

cql2-0.3.1-cp312-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86

cql2-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

cql2-0.3.1-cp312-cp312-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

cql2-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

cql2-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cql2-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cql2-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cql2-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cql2-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

cql2-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cql2-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cql2-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cql2-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cql2-0.3.1-cp311-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

cql2-0.3.1-cp311-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86

cql2-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

cql2-0.3.1-cp311-cp311-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

cql2-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

cql2-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cql2-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cql2-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cql2-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cql2-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

cql2-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cql2-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cql2-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cql2-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cql2-0.3.1-cp310-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10 Windows x86-64

cql2-0.3.1-cp310-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86

cql2-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

cql2-0.3.1-cp310-cp310-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

cql2-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

cql2-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

cql2-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cql2-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cql2-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cql2-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

cql2-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cql2-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cql2-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cql2-0.3.1-cp39-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86-64

cql2-0.3.1-cp39-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

cql2-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

cql2-0.3.1-cp39-cp39-musllinux_1_2_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

cql2-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

cql2-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

cql2-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cql2-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cql2-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cql2-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

cql2-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cql2-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cql2-0.3.1-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

Details for the file cql2-0.3.1.tar.gz.

File metadata

  • Download URL: cql2-0.3.1.tar.gz
  • Upload date:
  • Size: 95.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1.tar.gz
Algorithm Hash digest
SHA256 482c46f726eb0ca0b67dd2b70b69ac8ebb2f0f0a0bcca08b9a0ed18818778ba6
MD5 d097a40f7e29dec03d692e5bee92fe6c
BLAKE2b-256 8652268f601715a4a6e61f7073617669d6047346b386eea2d04f70a90419ad26

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca340d2e7adc41d231c11dca4dde680589b52b6cd5bc2ad081e29625b44c348f
MD5 2d4bbbdee5404c0bdc8b67649eac59ab
BLAKE2b-256 c02c620cfe95b6a60ec2c78a2e7d12828c590873cac0e06530983c3b7db09917

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8edc4aae3e779f6b1d423a02847f2dac582201dcd7fcf7cadb15bc1830ff1473
MD5 86749254ab25e42b15b8eedb9cf59943
BLAKE2b-256 c0607d9fefc319ee31223497f63d25527aa64664b3f6aa80688efa974edec748

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b7da8fcf3b9dc6ecdd62ca76e6699d1a27c6cf68e88d80bdd36604da2653563
MD5 baa744b55f82fce2cb7ee1a39beb3a85
BLAKE2b-256 76a8ab2ed4c141d8a975161dee23b0d85aee0ec36bb03925334bf3d43a5b3baf

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e60fdfcd3401075a6fc36b08147c7476e79a2536f35f4d75d5449d049aee694b
MD5 8ca4efb0d11e10f5f94be5138fa697e4
BLAKE2b-256 3d6ed493f2974e6396a53da92c772bd22e0a0697d6a4560f942252541163c593

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60b857841e4b8250d22f71d259b786c0ca2b06dca4985a7b6db432e1a04059d4
MD5 58862a6fbc3853bd8b1a50600bee9fb2
BLAKE2b-256 cf809182a3e1eb00c46a4761b904bb15fffc0d98539f91ffb7afafa0b4a8b194

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24d68bd8b19b4adbabdcde5cc7a28be1068992088aaff6a135f105620d6cc092
MD5 7611397ef9a1c6db100548912d07c468
BLAKE2b-256 1b1fd02ffcda31eae17cffef29257246b33502d46746d7101e747e2614c9c204

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dda6f37f99721739b743a947fca81ea35f6b862464129e90b3aa3f36736e01fa
MD5 3ea337b55f0f2f9fcae110a46c0d1d19
BLAKE2b-256 a30ad84e429348320b7e2a6f55e922cff71f7c4b7f9a19493b99fbcd1b4bd0f4

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7b41478de4e3c0ca142eabf37a84663a302389636dbc960e8ec7600162afb877
MD5 fffef3313bca5c287a0e4156dc75037e
BLAKE2b-256 b59a97a70e906bf05f0ce1e8c7439857a9199f0e6ad2a317f1536a8038e3fdca

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5af0b7a47020c5630794adbd5b641b308c6bda07eff40ed6daa8212e056769ef
MD5 57e28595a67c54975998bf05abe58d08
BLAKE2b-256 cfaf61bb0b4b148a58f461d0340bc20447d03dbd8c7e1e1a84841885c7a7e93f

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d13f048a19101ccef3f4836364a5bbde5d3bbd6f10b57d910a1daf6e86faba81
MD5 87e0d26a32f93a5deeb2f80a03b33a48
BLAKE2b-256 85c626dc96c2d997ca07f9cee1e7532e3b728b0adfbbf7b787885ecc036f6e23

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee13130a9888d214e0a0b30f61e2e4399632be720451315fe9cfb2105d4513de
MD5 61f55b67aedabe3cd7b88cfeccc1321a
BLAKE2b-256 0a510499388a5c04e9f908a611798bd653dcbe33fa4d440382cce8420ea1ece0

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e6c0ad989bee80866cc2f22ba99ab5f17608c5cdf1723fb43412594b3feeb6d
MD5 79fbd94cd4eefd87c6388bc7d033006a
BLAKE2b-256 72fde9074acec93cdcdc3f7fe7173ce556c71d65955e7611e0da49f056a26f2a

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e56b3d26b3282d8f4038a63f5906cad1bf28aadeafaa37d8f31ed62e2484a7d3
MD5 2d78bab6869fcea75967907958011604
BLAKE2b-256 7801cecb9389c09d0f1b3d1accb3996c10edae8bdeb00441c6fef1277c360150

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c33186d7bd7dbb992a56b678c0d001ad224c742b41db15c2f91458a9719ff8f4
MD5 710a22918c5843eb5004b8c389199213
BLAKE2b-256 e833a04b111a5b669ae91cfd650e97f11192aa03321e6ad5c17697c27b89268d

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 992546bbce1daa320346e6013dade80dd403b9a34faa334e0f6066b0b8cd0b36
MD5 ab7c28220e4ca89e99fd854af21dca88
BLAKE2b-256 a2aad69f5dfb68138bacc9ff1fbad52be15aee20ec36a498951131fb0f4f8728

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1dd899dcfd8c4744bcf23903da5055b91dc42eca7c581899e3cbd39eaf7fba56
MD5 142213400dd45c8778ee904dd9fe3f85
BLAKE2b-256 6ecb10d436fd56051e3ebb58ff9e580eb73878bddb98227eed3fd0847bfddeca

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d68efe9e32b255ae8031536e6c9b3698e191adf16c12d4c2e4af2f2f33672c23
MD5 6fcba262b58d7a60f4fb6f61c8f91a77
BLAKE2b-256 594a45841bd0c84617e9edde1b2b27d6db0fc975c516922bdb4b460ccf2a465f

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11889a20dd0abee150239cce19675248155c625220998b86f6a98f4fb1c7ff26
MD5 fcdb3bb22edf5c32197fa4ae8803d85c
BLAKE2b-256 07515b557dbe7065eb4f3c757489ae6469a49b72a4748b778f10044bd3215bab

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: cql2-0.3.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a6c4e69dc20a72213380b7a18b8fe966930f390e05a13fe35f89a12b4c4937db
MD5 1ba7565415175f6d81d30291e3a88e0b
BLAKE2b-256 a6406c4eeacdaa31300fd0001be4417ddd123005558715a3724846d96b6276ac

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-none-win32.whl.

File metadata

  • Download URL: cql2-0.3.1-cp312-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 80171ee567013c34be613794a6bb33faf1687179755e9b1022c4fb786425aee0
MD5 7400217d9b44e52c91c6527796d87013
BLAKE2b-256 a8115812a325b0aabdd4c19f0316413a798524d916d8c6024046eb9e6b260343

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0a9f4a0a1dcc6730ca3ee79a69375aa515c5726879d3104a77e4dff0a915d58c
MD5 f5f3a39aacf405b51dfc1199daddf7e8
BLAKE2b-256 7ae55e7299c7ab4173245f229961022c49b135632596a4aff59db31b336cbf18

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1d3335b91cceff9bf58bc05c5d40cf35bf08bd01314f8e7aca1becf050d75a1
MD5 09b7853eace38529f307b633c19061e0
BLAKE2b-256 606997225bf668589bbacaad31c082c7a31759e661ab06f1e19453e40d8cf4d8

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e935bf7826730bf86709238d619f2aa9e47d6b8e214cb317b04e51a3aca4ce24
MD5 2190df3791fa2982765532e1927eebd1
BLAKE2b-256 68a92ef43044e46b0c232c701917951a0609bf5100cf2b1a31d3119f8d569f8a

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fde650df2684fb5c6deff8a870c892c3fcad41ecf9c137ac37c17b3569e3a4f
MD5 0931640981bababb8ea1f82a3de91aa8
BLAKE2b-256 bbb2474d5af418c547e20e8e0e529b31d2c97b4794a713befaf67ed2b0ffe143

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b01c2ee3b4995c508410b7a743747ebde71c85e2e9d47ccfd3992371f5dac401
MD5 9c23bd424f57d9c48163cbf7d25218ab
BLAKE2b-256 bb2daa6a8f4f4035e6c3907375855b75f0c4c3b5b620e613916bc5c873f743c1

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f51817b9574c6e4f1763f098dc7ce9d632383e9acf0d51538a148a12d383c145
MD5 1002e2c3ce2226a853951150b936f691
BLAKE2b-256 09b67c20b401e593470fd4bdf66a64eb87b1cfd1ba765fed37a0c3d704ebee2b

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6d3800855100ef0a8b1e1e0effd029b32375908d7d963bba46aef61754ba401
MD5 92a3d902db25f00b8fbad7900755b47c
BLAKE2b-256 057a7372595abb058fb8c07f26e17dd8996b08e6e26898ef4437f5693553de2b

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 077240453cf59c44a6ecb4e6c370314a8336c24e4326d0f6212414bc6793e9c0
MD5 d9c9f49ff43e372cdcd4d12cb3f98b59
BLAKE2b-256 02e886ef411d31c974a1088085736dd0f203e54f7c24dcb300bad732307f8bff

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7af47f8d6b76a7e2053867797c06d825ef7fed2bc51db90f4c91d54a5ac8106
MD5 339a14471d8554f606d0dcc469a15fd3
BLAKE2b-256 c4d8c465632fd3404ea6eb29e65639587b746f1b338e339eb36a5ebf2c11f84e

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b818a78c765ff094f8ea427c87dcb4782f7ce56395ebf6aa5d131df4f299f158
MD5 b7677d077c1f1cb0ba4b32d7afb739f4
BLAKE2b-256 b30e34a78dc57815c37edc392433f44e569ff42b6c9a7b13988a5698bd4c21a2

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a9c5553fe7d53debe69151420069e4a6a708b3dd652352c4f2909d059f0dded
MD5 8b4613fc3bec5ddce4295cf0c59e0509
BLAKE2b-256 35934dc66855c5a605528e8eb93da0c64c590605d1ce64cd7620523e55ba04d3

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a24f74234a046b16f68196fbbfb2d171794db1169c695a86212081ad3e6a34c
MD5 9c8bea559f11f99a1f239b3c8ddf79f7
BLAKE2b-256 950bde1874b697691b4fb1e36fd641a28e1032e767f27fec1f0a5d9169a7f8e2

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: cql2-0.3.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b659b754b7ac3d42ffb4ec85ac9fce721d772036a76556295f21d0caf6d7d4f2
MD5 ab47205ca690034ee70bf850e24164eb
BLAKE2b-256 a60e904ab3975aab98f479b97cc30ef9fcff448f1ca6edd98b3c0532777eda21

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-none-win32.whl.

File metadata

  • Download URL: cql2-0.3.1-cp311-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c8d37d4d797b680df220cb29c2103f6d4f4a11cfa766cefc22dcd48cacb35482
MD5 d769344753ade27c745246872efbc3fe
BLAKE2b-256 b3fb042183a07b03920ea645d94e1ee9b67ce3144a351c01dad49b4f548e5d27

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3c49a79664d897c0376bb1822ee40be2683f9fd8f754d982def104285037ed5
MD5 de72b29932a97732494b53f75efeb750
BLAKE2b-256 8dd3d307f5bb27e85b662d75cfd230a24a57f3c5620bf4b67d99cf4218244d83

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e22f87628e903614aba7ce6c45f82f6a14441ba8453c44e6ad535a06f74bd612
MD5 596249dd2d214da241e3e7497bb15874
BLAKE2b-256 b998b4079a2ff160ccce68180817e515185c514ef5e652a10d42bffeb80e9ca1

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e4419f18f5fd7232d61d9a1dc599bdcbceef030d8133e0de40bd4e0546404c4b
MD5 a551ada41bb58b909f000e042e0a4903
BLAKE2b-256 545f2250c8cc011ed6c00dd3787ba2cb46cd91f0971fcb3d95cd26b303594a8e

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 077984202090c4bda996e71d7c1a35b94ac0ecb17fc8be6f1c6ad9098b50b151
MD5 748c1e3f9c87c908db8f8b1ef57e6b50
BLAKE2b-256 67227fec9258d7a14f350579095c0be9a4036688d8a17018b955a76e67d5d61d

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17e92f90c77c852dec017aac138da33dcc84b522c8e96c397ef6317782d24180
MD5 4babbf64e1f1c6fe67336e520dff5742
BLAKE2b-256 4558eaf342a21623adeabf340b55db99766f29e2ae27cd97bbd45a2ecff2774d

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2198f0734cf54c5cbcc1da86eccb6d9cbfe3000a4cf5145e949840b567916493
MD5 4c10b5d65293dffb08b27f6e162411c1
BLAKE2b-256 31d858e3c8b2c9cd4ddee47ba0563cdd0169535126ea82fed48cc22227702183

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f92afb15f73ec76865c4074779765ff355232fce9cfc7f5729e3fc8d0fa1f014
MD5 c96fff11f05739d8b986c4b745e77f45
BLAKE2b-256 2ea3f4ac94f57fcf280522a312ae0c19499e34f20dd4210942e5f8ffb4599fdd

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 848f6283e7a07f96ba4ec19621500a558ce66f2e73d3e3cc5deb8674eeedd78d
MD5 4376fc41bc37ca71e72df0e9479c2657
BLAKE2b-256 e2040d616b2cca47ee8c653531919dbdd8677579d62fa2a71e5141bc6d66df69

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a2fdf59499011bdb7eb9d3e211ec8b874d6a589c7b941ef0ba05a6eba559247
MD5 40d6f25ca8a455df2707e04ef8e90d9d
BLAKE2b-256 c36705c64f2971353028b1c3c97bdc2f1be3b858810c66ae0c82718848cbbe89

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd27fb82dc18482c8f94083f09655a9814fb66822e0c4206e083a1dafbb17665
MD5 629fcc9fce14465320ae3739a641da41
BLAKE2b-256 936eba749f7a6395557a98f719acfdeeb0aeb3f9a54b146f371590336d9b708c

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b02aa8ca4ae5cb65a77ca9762b7d867ccc1f2c7b191cb5d59e820ef915f9ab3a
MD5 ea35e55f1a3688428772d8040631313b
BLAKE2b-256 e3dc34617fd3407a998b951173b685ef3875aca1b1685a4510cf5c895a0ec28d

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 443cdbd22b89c180b1968fd01a6c22704582be7aee9167866cd6a059c6c26b99
MD5 2627be418121c900d975946ba2620352
BLAKE2b-256 799368f8e027cf5bbe4339071990da14eb6a711cebf49b1bc149f0462e88c8d6

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: cql2-0.3.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 681da3a939420bf22b19795f093ba52b22fa9b2ac5470b17e53c5b6f9e999a8c
MD5 5d7d61d5893c8633cafacf0055fc9312
BLAKE2b-256 311a441a4d698c88dad275fefb53733fe7c6b3794705d87c5f02f4c7aa262c67

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-none-win32.whl.

File metadata

  • Download URL: cql2-0.3.1-cp310-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 3425402cc24a08cf68571189cae2cec328245780d6026948745a198e0f3bac95
MD5 724b6ec5075cb6bb4f72f1506bfbcc5c
BLAKE2b-256 57456bf5e6904014259fde8c991a5496fd45f6c5e02ff3910d49444aaf0f08ec

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2b7741f92c3486aa587fa7e32814a1bf527e1f5df09192efb21448a5bd1fbf3
MD5 6f3053070c524ded0fc48764ce26fb6e
BLAKE2b-256 709494fdc30221d152f6ace15888daffb5bda3fd58be9f631738357977d44465

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 84def50573a93e963d70cfd5db265aab51ff988adcd2919886678e992dc2962c
MD5 5c8be00fa94e667f4c4b0828433b9b93
BLAKE2b-256 401ef089295701e4c65b32346e1eadea7bb25b75ae109c4553256048811dfb30

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f1e8fe0e9dc9518b70e1752e8031428680d2b552b02cf341479518b31e05d40a
MD5 ea1e0e5ac683f33efbcf393c7b7d0b06
BLAKE2b-256 d4179ba415e76abbbd0e89393585e8240549eac91e06706252ef2ea1a39c93a4

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 167c2b63554fcad0fb239ba5c922c358c52e2cfda8951a5697f07193c57946fe
MD5 df7f5f3bedba8b58a399233e72176a9c
BLAKE2b-256 2ba46fdd063c9a7ae5a2bb4385f7a8b3f1d7c5db1eb22560382ede9e480c51bb

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73b0ff09b211c0b527da96a4d5cd002223c44d446fbeae1d2d171112bc3ad8e8
MD5 5a7c788bf1fefa2879c113339df42ab9
BLAKE2b-256 980e540f35ad36d0666b4078a192a567767cb5d37758e9124d3a6d5eed308215

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dda91915625484115be687a89abb5b4d2c27746acc611c9f666290b000cac8f7
MD5 c28142736135710de056c4439cf25fc5
BLAKE2b-256 042a14968bd767b2c630e688bc02cf6115bc9106493ac39ec5a299e7b813b949

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0337db992a4d5ff1f9afa61dc96ce361494664be87718163e20749ab16e6f963
MD5 e35ac1a43dc34d9be8937b62eeca3e91
BLAKE2b-256 80a7f6a320797f948e93ce8db5f56b40f3463703e42e0284de56de11ac36c38a

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4fc7bba33255da6f54adde50ed2d52349a8f7c845a57e799db872510cd9a4d5
MD5 bbb11bd0272abfb02855fc28fa640e87
BLAKE2b-256 0730ead46cb209542182953149acd816b412a3b7b17cc70277b32b4e064ce150

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5077a27f266f70c6655f86bae926c3114577543369626be9f57ed7755a553bf
MD5 2a46f10dc7a04da0027b0ee96c37fd10
BLAKE2b-256 3f4b89184c9bd41811ad20fac026616f067264a8574e616f612719526e2ddf4f

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16a35123af5285f47f151d8e28a083542e4f1912d8b9a6ff1d93d4ccb2c50fda
MD5 b300a5d9b973e617944a2b5028e1d824
BLAKE2b-256 0297b3ffb9f9200f79bc76847f1f02bf12d420aa21a7d6450906274828fed9d7

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89b6d9c418ca2b11b7d5c39ee59c53da7770c44e54a83970f5945ec2a410b3c5
MD5 a13a213587e8653ee462942aa5ec3501
BLAKE2b-256 e8d58df4228c4348ec320769b00e9ed1dcd0ed3a88792bee712a1167aeb3b842

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: cql2-0.3.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ccafe3bd8186e7b8e3ddd9827593d75ddaf9cfa855e56797f6f2b81a91e197de
MD5 5bd20e432258e953af2a6c50839c2f6e
BLAKE2b-256 7f1e33d8ce1594e7822ba6af621ada74af630cb3a4e0c6db5897fd74da04f87d

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-none-win32.whl.

File metadata

  • Download URL: cql2-0.3.1-cp39-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for cql2-0.3.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 99d074933c56c4f91a6aa2cd4cb91c0a25b94565a70e92e45820ccb4036fd52b
MD5 2f0883354fdffaa0e049394cdddb8550
BLAKE2b-256 b02df5ab4b8e9c08e67ea2f2aa6749c43dcae672b8933f4d91aea63a87b93880

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 790fd117e7a1596ae168d8953ee8c4a4271673eca9a5f8415e1e727ceb08281c
MD5 d345e59bc42eea8b68553598dbddc311
BLAKE2b-256 3b9b93fabb98dd3054753fc133e494fb8bee399b28b1412ea0cd9b60339e64b9

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a5e5549d4866452bf0977c7c82f04239fde3fefea463b42daecd99ce2e88beb9
MD5 d66b532e009cabc2d94b50dde590f437
BLAKE2b-256 a5314921fa70e1df9fc462b38eb7c10e1044c5c3d44b848bd248c80fd93515bf

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4d0406db0fce0eb3482664bab04710820855b79a2928ed73781ca6d5a171a03f
MD5 e3bd7aff5782d1b16ec628e6941c04fa
BLAKE2b-256 921742bec8fa5d93067b8b3babaced5bfdae5ad270da99cf4fcec3f3ec9f924d

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ad189fe14132066cabcc39aa3613659aee0a2e6ae3971d86e92788e83ed6a20
MD5 b1d836fe7c7b4c3114893b98f308f344
BLAKE2b-256 4fba754f7572a8b1f40dd2eb8c4d4dc99f6f201e915df1c0787ac46c033ba397

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad5976574d16721477f08e0b2969f78f29940b1239411d8a4c046b99ff25cf56
MD5 00217c056f36b51f9afca9f01c4d3e3d
BLAKE2b-256 aec41a8001fbe0f965e68a89f3d0b8e9c458f0079ca55621bd43c39edfddceea

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3426ef283b8ee14390a25c6c23c9c86209e326db4d42ebaa0518e28410cc8977
MD5 4bc54366d607bc5fb3baf3ab6babe3d5
BLAKE2b-256 af46bbc66bdd1736511fa125e799e2305f2b95d380ef547727ae5d80c7631663

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e244de80f1571e69faf9a2b6f7a9f24161dca5dd7f284a2bb4f8961b7b27b1a5
MD5 8156a585af88deae51db2e977af9aae7
BLAKE2b-256 49f9119318f0e6c6f55dec42c7eecba74da7686a80c248b1581aa910dfdf9f58

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c744efbe2933d3357cd3c9840864231b9c5f9240c9e5f03ddc2dc34bd43da563
MD5 b493377cfd6c1491791f9173f679995e
BLAKE2b-256 4d79ff3d892d5f274118f6a20e1f4112f3a861e4f80c7af8e9353fedc5c417c6

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41e9efbf1bb52125ffc5b62f293fe94f0cbab8bc4c2f0c334920bc105fbc1bd0
MD5 f74cf2ddd05eabdb645197a018f32d83
BLAKE2b-256 cc19a2855a72dd9e6c95f329e54eb633ded9a082831081757eee482b81ad5f09

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2043435c6c49c510781ff4355978083173ee174891f54c4bcbcb130d452ce0f
MD5 2b70799631144fb731a282bcf8c19d24
BLAKE2b-256 f992ac2522ad51b3c212f59f0d9146d945227882ee542651dd7592f77de9857c

See more details on using hashes here.

File details

Details for the file cql2-0.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cql2-0.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4b005a7f1a99ea2fe3d3f2d7dbac0b41ce5fec41fc829d0ec1d7f38edb6acb5
MD5 42d6c18f18b804122b67faeed92bc443
BLAKE2b-256 f3e6f52ebc5bae1376dc2cb0bbaf0ca17ea6439225342224192b426be235ea30

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