Skip to main content

Load data from SQL databases to Arrow

Project description

Conecta - SQL to Arrow made easy.

» Documentation | Releases | Issues | Repository | License

PyPI - Version PyPI - Status Python Version from PEP 621 TOML Static Badge

docs Full build all targets release Test core Test python

Conecta is a library designed to load data from SQL databases into Arrow with maximum speed and memory efficiency by leveraging zero-copy and true concurrency in Python.

from conecta import read_sql

table = read_sql(
    "postgres://user:password@localhost:5432/postgres",
    query="select * from lineitem",
    partition_number=4
)

This snippet will create a pool, launch 4 threads, send four different queries and stream the results back to arrow. The core is written in Rust.

Conecta integrates natively to the arrow ecosystem, we support several arrow libraries: pyarrow, arro3 and nanoarrow. Additionally, you can create dataframes like Polars or Pandas.

from conecta import read_sql
import polars as pl
import pandas as pd

table = read_sql(
    "postgres://user:password@localhost:5432/postgres",
    query="select * from lineitem",
    partition_number=4,
    
    # By default pyarrow is the arrow backend.
    results_backend='pyarrow'
)

# -- Polars --
# You could use results_backend='arro3' for a smaller
# installation setup.
df = pl.from_arrow(table)

# -- Pandas --
df = table.to_pandas()

Features:

  • Connection pooling
  • Real multithreading
  • Client-based query partition
  • Utilities like: sql bind parameters

Supported sources:

How to install.

You can get started by running pip install conecta

Supported architectures

Conecta is compiled in almost all popular architectures.

Supported architectures:

  • linux: x86_64, x86, aarch64, armv7 and ppc64le
  • musllinux: x86_64, x86, aarch64, armv7
  • windows: x64 and x86
  • macos: x86_64 and aarch64

Unsupported architectures:

  • linux: IBM s390x

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

conecta-0.0.7.tar.gz (938.2 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

conecta-0.0.7-cp314-cp314-win32.whl (5.5 MB view details)

Uploaded CPython 3.14Windows x86

conecta-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

conecta-0.0.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

conecta-0.0.7-cp314-cp314-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

conecta-0.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

conecta-0.0.7-cp313-cp313t-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

conecta-0.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

conecta-0.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

conecta-0.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

conecta-0.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

conecta-0.0.7-cp313-cp313-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.13Windows x86-64

conecta-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

conecta-0.0.7-cp313-cp313-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

conecta-0.0.7-cp313-cp313-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

conecta-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

conecta-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

conecta-0.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

conecta-0.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

conecta-0.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

conecta-0.0.7-cp313-cp313-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

conecta-0.0.7-cp313-cp313-macosx_10_12_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

conecta-0.0.7-cp312-cp312-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.12Windows x86-64

conecta-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

conecta-0.0.7-cp312-cp312-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

conecta-0.0.7-cp312-cp312-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

conecta-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

conecta-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

conecta-0.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

conecta-0.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

conecta-0.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

conecta-0.0.7-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

conecta-0.0.7-cp312-cp312-macosx_10_12_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

conecta-0.0.7-cp311-cp311-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.11Windows x86-64

conecta-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

conecta-0.0.7-cp311-cp311-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

conecta-0.0.7-cp311-cp311-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

conecta-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

conecta-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

conecta-0.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

conecta-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

conecta-0.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

conecta-0.0.7-cp311-cp311-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

conecta-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

conecta-0.0.7-cp310-cp310-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.10Windows x86-64

conecta-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

conecta-0.0.7-cp310-cp310-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

conecta-0.0.7-cp310-cp310-musllinux_1_2_armv7l.whl (7.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

conecta-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

conecta-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

conecta-0.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

conecta-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (7.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

conecta-0.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

conecta-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file conecta-0.0.7.tar.gz.

File metadata

  • Download URL: conecta-0.0.7.tar.gz
  • Upload date:
  • Size: 938.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for conecta-0.0.7.tar.gz
Algorithm Hash digest
SHA256 77f4587612cc3395f31e42fbb41117531a3276cc680e8ce98a0b1321fa61f0b5
MD5 a92b77858b6bc59487db4b315f36b8ff
BLAKE2b-256 8a71707a19225180948edf13449f92363c73f419f57032cae5428c3eaa65779e

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12081ad5b55055191e9192cc734c7ad3c82212206028757cfba3292921101eb4
MD5 ba9cfc44ff2d7c3d3f6fdfa3d223cddc
BLAKE2b-256 7f4619bb17ff9278fe372d682171780840b0791497238ef0e211dfaa5aae75a3

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1aab6a49a0adafccb374d2584d3f5d48cc8b592206141d18748c7cdd3f8ff55
MD5 3c5f0e7582236f874dc3c2a22bc2140d
BLAKE2b-256 b46911684864d855803250dcbe409f6e10951292bd20d3f0f660ed83f6452534

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0cbcad76bb71ef6fa804cde38ade73af9dc81d707ad3a036e4769c9822f600ab
MD5 fe7e1064b3c1478fe014aeab9ee07aba
BLAKE2b-256 9e06cfd44888c037e1416b071ab72ffdb45e9bf66cf89d546bc5de682e1ab6e7

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f17deb89c4affb57e5c0a22f26e79e5873a67fc4dc70280127ff4a8b54d3259c
MD5 5ff69728668876ca973e8665e9565b8e
BLAKE2b-256 3860523849fc3b7e6d424f78223004c9f7eefcf26b3ddbdaef96e9048cb93232

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b08b5cb62c26d6041d0098145a6f1e6189dd6c9cc17417e438df480a35db11ac
MD5 7e47eba04bce5ae1193b5ffc78e9a572
BLAKE2b-256 a7e711d62c804ed69996d63f0f6478bbc6e1200611211b64fe1a391d2f7dcaa2

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2b221aed347153f9bedf8316d9332632b213e18a7d1d67277425a81e02b05ed
MD5 2c4da0a1a83c207efc6b4d5c43795718
BLAKE2b-256 fb2a15c752fb51ecb20e498613ca712eb6f06a99d2eb9755608d08f30ac0de58

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e239b50ba2dadb628a1bd35426fb90b7cf261c161d934e1106122254f17c438
MD5 3bd051824f9bb7f6b64fbdfe0b914a4e
BLAKE2b-256 710886bf8d39dd854924f02e4f18f62267b4df7bdad0db70d377aae09565de25

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57137c829ea593955f4e0b13bf3de3828c57c50fa50a03ccfda918ee6c262442
MD5 153a9a43e7fa743d0ca98b70d9336df5
BLAKE2b-256 d8d421f85f09c0ac5ef808b85d038fd63093489578ebd3c0910026876d09fd4f

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91120c903b726afe9eeea572342b5e98e137842e1035cae2f544bf81110b1ab3
MD5 96fe22fa278d94f5433996f5b1d04a67
BLAKE2b-256 bbcac9bbecb96b9f9dcfc11167d886b4d3872a7143d5ef358e9352b9949242ec

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 deb27c4deb06693a145e5f661da83cee3b5eedfbfb6f3816b3b184ac76b2ed2f
MD5 f5fdf76c6626f13137a68979eb531f6b
BLAKE2b-256 19f4cc8d662357a43fbe4ba293016c7361c9c95c7d0f52181cc4fffc6b76d31f

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ccee646d5faa8e7f0322285c7b68351f23224ba9e67f34676c3f7b3850326d15
MD5 508705ee452b723336125705889c195b
BLAKE2b-256 d1a6b2d92e1bafad0c335ec6da8833bbc76a6f0a1048b19cbae983585f5bae65

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8811a158ff5f1ce8e0c2d9e4fa0e90e85aea8e84c1c163fdd1f88ea69461147c
MD5 4a16f8278d644eb0c1f7af830f57c54a
BLAKE2b-256 b18e3fc1858ffae7fa586a75a046bb36a11c1a0a582670d30c1a572de418e378

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8845e4c5316c7d813d76a27e49d5b664d0a503fa157e07f78f04edd64354ddb
MD5 10ad00aca7d3f35d1ec71c8499eb00ba
BLAKE2b-256 d1b473771813674dcfa5eb362af17c01d0b1454ff4eba16211e56e8850c7d11c

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb6158dcb7695806d9127597b452d96766d5c4ecd8a1873be973b3dccd456801
MD5 f5192726f9be54c3551fffaa1006d1e6
BLAKE2b-256 6313c84267ea7642f4d6b5e14be667608c4072b6e7d7eaecc2056ca01673ef45

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c0fac3324a8a582696e4dd3171fbe3cc881f45ecee4aa5940f3ba78269754fc6
MD5 a1e43a4dd4c215053dbdfe13567f02c6
BLAKE2b-256 29834fe9b62fb41e2249845deb4563569b864c01ce887fdb9087fade647282e0

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf78a67ee425220c08f005c16424d9ca0510bf8ea2763ae9b2de10d40aebdedf
MD5 b689fe8ce14eb20c88749c6e2bb46edc
BLAKE2b-256 daffcf4710ca9f9ce35c1e28290958431adc54264741ac031bd593e4adf9c7d2

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: conecta-0.0.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for conecta-0.0.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e97ef429ad14ef89e69fd134cecdeda0c14ef0f5228d2256e68c30cf57844150
MD5 9cf81fb94fa6c066e88c67d16b05eece
BLAKE2b-256 8e7f6925c7a6d42cb1faaa838ec63051b53f9f6d055b0f12cfd126fa0e37f3b9

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b19c2555c15467a8e8de86c6437d7b00e3916ca69fd5253aa5525a0fc48f8af
MD5 eea130684c1e9ddb22f2b048e24b0d04
BLAKE2b-256 0a853d75c495c931597f8dbbb8b91abc4729a0d61220c05a32d62b1d601cda0c

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 51efbd6ffefd625cfdd9d4b5bf4733a0acfd79b265e93cace91fda0fe5fe4c8f
MD5 64149312e1dd90f1724fd4aaac3ed456
BLAKE2b-256 b56974fcfc825e5424566f8e461ca14ce12e0f990f82a6d8e154a2f66915d615

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34a3e4df1ebde8d2ed5dd04d6d751c1d8ea430bdd0ec7aad3786a92a376559c7
MD5 0279af195b86ce3a12e4cd4039e2f51b
BLAKE2b-256 1d43783b507758860e5dfc1aef144dd7b5c7d77fd44383128c810c6916ebe7cc

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9295c88c2d256d92a10e63ec4ddfc1623822674546691c5f376200ae8767d706
MD5 fc8a70f50f1cebefccad4b7ad363556f
BLAKE2b-256 7bf1b19bb810d6b93767f7deaa321591181e085c56290ca4753964e74a4362c1

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a988e9e91f73af055e8e300909103404adeadd5977906237fc538994a386bcd
MD5 fac2592b1673782b730ca024d663e9f9
BLAKE2b-256 ca75aed7b07db8f34b01d0a2609576e2288c2d641294881faf1a211b2b527263

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8875a6e5419cbe66c1336af42658f1736e27614da680834fbebdb39a7f252b23
MD5 dea9cbb4b0435545a20895845f60b1e2
BLAKE2b-256 f1d3ece401e35c93b5390892d12d2d31e4c4dddcfc7cdc57df4b90e89387c5cd

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9984d06b26b000df4f8bc0836afce396c3cc8b89dd6eff12bec4cee821283ba6
MD5 68881689396a952311f867bd6e3b7885
BLAKE2b-256 47a460ff7ef2e3b100d1769cea15b4da405fe360cc63ca93e15681b1a395aee7

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89e7dd44f40e30c18b6c2bdb220b85719cac3472151d3798e640fda38ba28d31
MD5 d10fac5400a9e14306ca2e3680aef336
BLAKE2b-256 0bc56240c0b9a4b74db3c163616d8b22f9ed2773b6d3d2408fae1d2aae159cd1

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 22516a3a4246c839c3c77a44baf89d74749e3b7ad75880def73efde437d5b70e
MD5 a7e9a11cff1a65db85627a684903707d
BLAKE2b-256 fc9d06d9fbfdaaf4cd7af726b25f7f6f06ca556bcbb31a68785924fd660c231c

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f401d56eef2bdb54933eee6a6335ded71811ffc779f10a4a5bd054328894fde
MD5 af045186c3bb6a9f8fc959058b03ee36
BLAKE2b-256 5d71c2b319ec9f1ff1ed0ffd10b0837733f1759b9975a6739f56b649fc225aa7

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: conecta-0.0.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for conecta-0.0.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d5174652421ea47bd55e5eacf520dc6f7144520348cd7f7e67e0aa58fcd8abdf
MD5 0800898a47bb6da5523201252d75cf84
BLAKE2b-256 88883e9e348736f8f85bdd7cdee61815da25b9f791d3a07f6f5741597a04d2dd

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd71d1246b991eb52623bd3d8322f9d768abfce15f52e1c2c56eb3621a90c42b
MD5 174eda28546c73ffa3d47fd9f3224295
BLAKE2b-256 0e00a004cfb56a7dabe2fdd1fa3ae6e6d10125cf83a800cd3bf6911413926559

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0329ec7482ec79416c3d2495f8c75a93fd56b87a52ce42ab79c2d3fa0281ef29
MD5 e735dfa116629febaae5e469e7fdb95a
BLAKE2b-256 446cfd6849ff94b37c8621344bab45f43005d5b22a1c7d1f033ba18ff9582920

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e745ad2fc7bc1edb081156410a2f636ed03b2f33d8be6fe9cac5f10a74a6423
MD5 512f6283efb9fbca8b27adafc573df1f
BLAKE2b-256 6014a3d6f7346ee1fb9e6943453b494738fadd0424f29b1a66befec33a804a1f

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1914b7acc7da7396f05567e7e80aeba8f58537a623042df68f5f901a7830ad00
MD5 8e6381b2421077c7c8e4bfe758fd88b7
BLAKE2b-256 eb8c51dbf597a0dbf84cc678fcf60c64e09f478e1699a5a4014d3bcfae71dbff

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e910e098bba1e3a89f117244494ac14423e9d13f6bd5456a37185959a6e79fd9
MD5 215dd717e44ba3a5a29417e4c58f2f1f
BLAKE2b-256 e16fb552c5249a1bcbe39a80f9edb6a1764b00747f227e7a166a9af66da3e305

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebe8e412a21c497885c426e8be7b96675bb97717b0918c993794467a74c34ba8
MD5 1a5984ca4f1f3934a31c6e1f7a6afb83
BLAKE2b-256 4b7b63dd8a3303a675a9c3461f6ad3ffddbabe94262def176006f6c4b8c46d3a

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 729fe89b4c4b7528244b26197a08dcc01db0bb6e2a995f10a13e1f2367b8f1b2
MD5 ac43f8309728a2b7529a21c8df6f9e5f
BLAKE2b-256 8cf82eb4cee5bf8065d080f3b9cdb57498aa37cb7dd71bbe308b7fdb96cc06a2

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 351164130bab82098b3976f7640e7a781a20a92734794a9d1c6c75543883c657
MD5 7d96bc4fcf77e47b260ed501a33be978
BLAKE2b-256 e9ec1b57b3543b2fd843e29c37e2d13c1f469878c24a8a0a5bea44f616989cb3

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2bab3a89f9357f3369bc318f128533eadb1c080d6d052f8e8992dabe72e2982
MD5 545acd42c6bab763b4bbe605e5e1bd70
BLAKE2b-256 fd4c90c8a624416fec1e654680c8b81d7f326c5c92e791b3be67ad8eb21ca4d6

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c691dd9853b0a9864a25f1042d210d72cbd2004457eba7c42568a334430ef500
MD5 49731205857f3014576a2382f2d5b087
BLAKE2b-256 5aa57dad4edf0628ee669e508790022cabe396dfbf5291bd2409abf8021c53d4

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e9d8dfbb98398866f18c4c9adef1de477c2c81536f2ba7df0d7fd677c51bd5f
MD5 3b0051de0b471839de95859e901cceec
BLAKE2b-256 52ac6f255fa087f5fffdac3d728b813c99b2d20510bdc5a72abcb4f68ffaebcc

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: conecta-0.0.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for conecta-0.0.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a9accd6463dbdfcdcad31fe8767282cb4a83889c111ae69fac34e157e09fd8b4
MD5 d240f76a0686164278b63bb3ac2c10da
BLAKE2b-256 1449da85a90be3a448bc3ef61c3c81ba6f2b74046e2eb1adc2348a2977e3a708

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 976030e6bb962789f3b7f8de97b0547f77f5a19deb56d34d4307951e32b8ed40
MD5 44b2ec9686fd0880d923b0e8d9763eae
BLAKE2b-256 7c57c2629634b26b6e8e59c8892eff76a098205a9b9b3768275001c95bb60fee

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e80838696e0c700ee7b73c7af2c3887d0978de1c57dfc5816a48331e4d4fde9a
MD5 239f2f9aaea6106b060871d2d0b08d6f
BLAKE2b-256 a6743e729a749e0707078059fc5523729a9fd5418cc60c39168944c884833f24

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c26b26451cc078b5ef0978a0242ef88084b40637961b1f1816e8380b877165f0
MD5 872ee1a93fb4330c17916d2335307748
BLAKE2b-256 53b84a7be683b52ac5578cce13544e3ba34f16b94e5d98307bbdd2ad7a29ea41

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 419cbf77276b10f1c5cbfed85f862b0366c20f02695d4be29cfa03d456383af0
MD5 e5848fb94cc94994603770bb399c0083
BLAKE2b-256 d4de75ca6915cac046864cf735c8af966c1ca1492ebca1e8125330df90e64c41

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bb6a19251de47ec5fda7c8dc8e7bcf0f9f00d82ca148d5d73a15190221cf221
MD5 d28d2d6ae7eea2d5fa59eec65c75fff7
BLAKE2b-256 7e4edb209051388df7300d6c4bf3235d704089c3ab6619c64253fca2c3af96c6

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19b6582cd7888845a6f2ca4fcc0e4ae3a6ab09ae561582186b403190e5165de7
MD5 222ed34235bfdd01ac91d929a3dc6a4a
BLAKE2b-256 0586c531aad8bcd16ddf4f4a7beacdda8ffe7a666d659a9189bb3228a6efb02c

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f5fcd5f0fecae2224663b9b91c1b62860a0fcaf14df9cc4c3f71be2cb4de62c
MD5 a61cd1b60ad49b3ef1984ab7ddecc005
BLAKE2b-256 093ef02948572ada49b8f8cd17013f342396c4f8c86c7c564558e5e3035dd690

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecf245ebdb1b63ae25f5b6b4ccbe44d44b7acce14dc87f947c643c6f9f5a0556
MD5 0e938d3349bcc67bb78fa747355c0ac4
BLAKE2b-256 d2405c3da96aa70dd765a89e20b54417541d030f8e18c34fc28ce8fb1a4bde2b

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed7dbe1547c9b5fa510393902ebb8a4df0a108806a4a3766e1b45cd1e6832db1
MD5 00f0b65487e79cc54f706b02f2c74965
BLAKE2b-256 0d71d0c366608e837e282490d07276b7e4efbbd3dca3e9edddf9885a09f59f7a

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc3d516ea1043ca341d220b67db8e71ccf7a25b4b2bf5d8df83633346b097c5b
MD5 68c32d6160aca98df8848442baad0d62
BLAKE2b-256 1a6b12bcd35e635f9f40d60b4aa92cf1af8946491d3b6eba97005a81bf3a4070

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 846b269125d3e8bd54e05b79c75dd80c4f5dda8a07b57a132ca9408a71ecc910
MD5 908f3a5e3b8886d23f647296b1c17717
BLAKE2b-256 3fecc6275f28212aeb4760682227e7351856f55245c018f144c233f67af26295

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: conecta-0.0.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for conecta-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c4333aaeef851622ff853cd9611e44f3321f1c556764a87006208acc626fcd0
MD5 27ab7545cd1a0b3a1e777f74e5360887
BLAKE2b-256 ea389ac080b2d0f853d08e74bb939e1958a8e94d975d5e07b24a115676af73d4

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58218b03acc42733a1bef8cf1d05ba2eec8ecede620d93384e0f170324b74c5e
MD5 aaffa36f1ea15c4844dc3d017ce4d5cb
BLAKE2b-256 f8ebeb9048eba17555f0dc44b1b63e24bd122afcac251810710d851d0ed39be0

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e3930de93a383a932776e7f1b3027b1157b27a6bb9f5ca344fcbf2e5be7b840c
MD5 ffff0c6ff9c8439e78c523edd2445006
BLAKE2b-256 81d922897c53ab4430b14c677a446985df2c23f3884fa459b165f76aca0dcc43

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68354cd5d7038fa51ab3fea22bb29b221e7dcb86780504eaa0fe2bd77c8cc5a9
MD5 74130483c13d53e82a0fd9f5e3ab1180
BLAKE2b-256 30ff86afd11381ad13f6745a2e0e81d643e3d0e7a640441ba29549e947516db4

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f6fc11c4e2e1cc0401649246e8cd3a88b6cbe720985f95e51b63a9aa69b6135
MD5 00b898c5f83149b74c4cf23f186d6907
BLAKE2b-256 fd71766c3f0cbf8140502456fe6c2b43e26f5dd0e35af56b7820bbbc89c8cae2

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 585d47107fcbcaea6a9cbf67546eccb89b4289c96bd876abe4f031ae76568525
MD5 5495586559571859d512db5b956f149a
BLAKE2b-256 3bd05852b097df68587b8128c37b4d80629bec5ea32bd61b6d93ca7abe450390

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1391ec7fdbf38a572c67b467147bddd551910e239d474c37e5924c94f381f2f3
MD5 79db8a4d6023ddafca525b68cf02d225
BLAKE2b-256 62e961a51e292d82f21c4ebbe18ce96aa93f1f00aada0a1007fd04f6a31c4686

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23663dfcf308dbd40aa2eee3c87ec102060fbf7a145f325b74b7809ac73f8086
MD5 ced83c2a83610a32154ae65ec20d1afa
BLAKE2b-256 574bd167ce56355626a9bd54fbbed0f4283f7115c2c88154d89d6cd26e83e281

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46be96b1157da04f59758fc0b15dff608e63a1bf60f75a8341365e159ddf9363
MD5 505dc3cfbd01483e625e58a2a01d29ff
BLAKE2b-256 bebcd6a1d5b9edf3ff67d386e6c792d4567fe911b1cb4033ff996eb004f0c87e

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 567b8a56cc710e1f8f0e3cbdf441ed6e5f4f3ee3356f0bf3a20708a4f1caa6f3
MD5 d7b0c9e52db6fecdbe657a8a394f5059
BLAKE2b-256 811848e37492654537ba6e5dc53b679a8ec2d20a8c87a9a9935e7f814c8d8ae6

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb40576ef3872cd6dc61c7578a68477110ccdce2c52f24e76fdede7955571b36
MD5 6ee66313ad17e032466cb538786b643f
BLAKE2b-256 d451904a29d9a06792c61efd23c76904d0ece80b25efef18592f189abdc5e08a

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 681bba14e5bcac4f92bc37f2087bcd8376eb8859cd3afb412ea3dc07177bb9ff
MD5 53d5b58cb4b40248a74cc0621f0b2e48
BLAKE2b-256 b0590c3e5605854ec5f41143d2fe90874baae353f14f70db7946caa6ef30e4b7

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: conecta-0.0.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for conecta-0.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 05ea0223b2e870ca1b796b0a3d7e97836f3994eca668c738aa2afff1ba1af977
MD5 e5121daf234ee872c2dfb3a4ebdf7ae2
BLAKE2b-256 ca5434941df6f8719004bd1bde349e9849d5624c5af802c3106e60ba31e8a669

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7daefd8a5fa3fbd61c70abb7d40aa13daa9713c20b533af91311525084829dc2
MD5 bd117362e15e3eac539ab1bb2eeb7b0f
BLAKE2b-256 a13bb856552fc021e710eb1f02029196c1f92d760593ced723c0e13abbaec5f7

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 765f5b587316bd2a4f9d7543082b8887512878f83cdb309f2421967f921b4e18
MD5 19e47fb83d1d8437d5ab1a3e6f1e9a61
BLAKE2b-256 a2577344e1f4980a9d380d3785f4b527aa3a0ef08ebc3f26673070477c49931e

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e94e3c3f4e820707d441b7b3f2248ba4e452721784cae94f64b5e25722180a05
MD5 0845032a3dbd29f5bc53483a7b7daf9c
BLAKE2b-256 7bcb070b8cf9ee3e6e3ca2b9b215233f558f71863d76f7973c4b6012d8a7cc5a

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 504a2f422b7379a1be07a16c022ef82fa7b4a8aae2f872b0e69a66a44996d63c
MD5 2727a7109aa0f3398ebad07897b4653e
BLAKE2b-256 c7d89e64f125d7c3ab0322b3e0cb1991b9745624fb8475d98058e7b3cfc7611c

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65f547e6b0a4caca09faddc6c779d04ca843ef8a1e0af07499a583e51f4ead92
MD5 6200fd6d804d1b9f13536419daf6883b
BLAKE2b-256 261015909de3a5897fa291473a47369fe0eb1b7dfe573c0e8e5f52e5e0918433

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d21eb501fcda30a391299400b544dcc9eb303b42cb93160e7a819927204e8af3
MD5 5894b17c7bbfe613e5c273dac1f0c488
BLAKE2b-256 71a6c76a5234c5f5e49ff1ac70d8ce9ea990baf9daa1361e8c7dc8d46ce8821e

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ca9ac6868b817767cd9c0ec4b6625d28788caa4930ab8a02fb81f13c8f69f76d
MD5 6798093c0519e1f18e8e1ca8b3b6c7a3
BLAKE2b-256 c89e15829bbb7c9b898877c7bde972880b538e72a1ba6de49bea73897e1ec973

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2050a388aad0ed7a177bc74ac30f913a54bb810224d0fd1d4155e934bcbeb74
MD5 d832b52a65d9907ee589d1cd4a550adc
BLAKE2b-256 f2b7c17d55d4b4cad1eb34147f1bc72bfc0d0dd68704684d831a8129e794ffb3

See more details on using hashes here.

File details

Details for the file conecta-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for conecta-0.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4405ef1c71e20abc706a39d9b43534220fd890089268962b2e3b69b8ef6895bf
MD5 00783a6b32274968f50be75f3e6c3f30
BLAKE2b-256 9cb272657e6883796aea1be06a02c168febaa63d53e11769d87c9fee5955b8e7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page