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

Performance

name captured_elapsed peak_memory function_time(s) test_time(s)
conecta-4-lineitem_small 38.488903ms 2.520751MB 0.119171 0.284783
conecta-4-lineitem 1.75472146s 214.47775MB 1.79604 1.86721
connectorx-4-lineitem_small 0.494878 0.717556
connectorx-4-lineitem 2.15225 2.27106

Protocol is 'cursor'.

The most relevant metrics to compare are function_time and peak_memory

  • captured_elapsed: The total time the data download and arrays creation.
  • peak_memory: The total amount of memory when the data was downloaded.
  • function_time: The time the function read_sql.
  • test_time: The total amount of time the benchmark case took, taking into test setup.

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.8.tar.gz (938.3 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.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

conecta-0.0.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

conecta-0.0.8-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.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

conecta-0.0.8-cp314-cp314-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

conecta-0.0.8-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.8-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.8-cp314-cp314-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

conecta-0.0.8-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.8-cp313-cp313t-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

conecta-0.0.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

conecta-0.0.8-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.8-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.8-cp313-cp313-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.13Windows x86-64

conecta-0.0.8-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.8-cp313-cp313-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

conecta-0.0.8-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.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

conecta-0.0.8-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.8-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.8-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.8-cp313-cp313-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

conecta-0.0.8-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.8-cp312-cp312-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

conecta-0.0.8-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.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

conecta-0.0.8-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.8-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.8-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.8-cp312-cp312-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

conecta-0.0.8-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.8-cp311-cp311-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

conecta-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

conecta-0.0.8-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.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

conecta-0.0.8-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.8-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.8-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.8-cp311-cp311-macosx_11_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

conecta-0.0.8-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.8-cp310-cp310-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

conecta-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

conecta-0.0.8-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.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

conecta-0.0.8-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.8-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.8-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.8.tar.gz.

File metadata

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

File hashes

Hashes for conecta-0.0.8.tar.gz
Algorithm Hash digest
SHA256 52e3af9c0bbd5a21601d36de4209331a1bb752eec0908488a85f2cd24071a7b7
MD5 8105228a1d308c5a4a537ad8f38f7dd7
BLAKE2b-256 fc70349516698a86afb0a5d081bbd6049e0af6c11b5d21cdc0eff0779693fd3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27930263356c6aff4f64cfe7668bf0f45c9acc4c87a47d72e05e08ca09ae6574
MD5 89980098c91fbf379aa0ed0522ef1e32
BLAKE2b-256 cd63654c7949968c9a39ff01ceaebbab17fbde288d30c670d27a58033ced4a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56aaa34b5ec73a6c3c45ef6043162ccdc9ef1050b386d7cf5ca2aa6a4b11582d
MD5 3834f91e5af1d183fcdd43b15bfe75cd
BLAKE2b-256 48fcc0a7b98e4bd78899efc0218ba66ccf91c21df8f579c4e3779e8cc5587e65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6d61da54088f0053bbe96886964a1643bc3f0920bc975f7177e1df4e0c7c941
MD5 d55452d1be60db4c4d8397f8b5aa2e0d
BLAKE2b-256 f62b0afb3f14be044bc5a02bc177df6dfd4fed437f17470d3e60797c37632b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 172de02550aeba65b5278d63b4efb782a344c28620a7692ff885cd17a46ccdb8
MD5 f9295196cd92b84f2a9d67e75e8400e9
BLAKE2b-256 7cd0005f455c7f70efc0d0538fe82242a347e9c64555f1d4b51f6a93da13d6ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce6cf63b84ed94956f36b04fa05f498612e5c500d2c51886859489238eaccc47
MD5 2c5a16274acf95b9954cfe7e24056573
BLAKE2b-256 c8dca563a8295f5ad9a9c204b6e3491eaffc4cc0560bb630e239143f3b0b98e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14b92f15e013bfaf7a3edd994dd7cea48bf334cd5e9f3d5b9b0083f10f902bc3
MD5 df6f9cbd9af84f7bce562b5a39b43886
BLAKE2b-256 832dcd91fd57e071036401508ec0ec8813b79a80322f7a190eadab2e6edb2fc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90c867b35a9eb80d5381110345ad6e28859dc74a531eea1b676d7a43bd3f7c32
MD5 eaa793f90d03c60e65a150d44202add1
BLAKE2b-256 2af3cb7aef809ff5e8bfeaaa23b526cd5f3516c7413904be9e31d8f99e9e08c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76a31f21576a6c44f077e9e816e56fb09a981c7c7a42e52bfa0535453ea91a56
MD5 8ff9401f0e1e1e6bc245ce263b4c450e
BLAKE2b-256 2837a5d1e4ec47bae0c49ac1c57fb995229177064495e59d3b75e048e7f881af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8dde401a1d4ab93df70dd5124f94aa454616eb0f3a08c994fa1142e00bb70ac
MD5 30ad580a51008b1a409592d6def8c212
BLAKE2b-256 0761448dc8cf7dfcb6a81eb99c15ae188523cae805db8dda0127856f47fc3472

See more details on using hashes here.

File details

Details for the file conecta-0.0.8-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for conecta-0.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d55d03b4861f982e3aa7e7f0dfbc7f60ee2313353d8399b3169f56766412c6c4
MD5 c10936a5976b5ce01cf326cd3c459c9b
BLAKE2b-256 9944378c8b20d1287d6556fd8f8743acef6ad8ec2fb7758d44d544f1f821d3bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: conecta-0.0.8-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.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 34e3f026eb376d2e03c66e1bbbc123914d1ec8dbe9c99c8cfb1209d3d969ccd9
MD5 025add642b04f85baa97d1087361471e
BLAKE2b-256 15b0339012966c89d16ae1d4f7f98a5f26f1975993f4d930951bf125b513c301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 388d21fd550d5d598d031f2e7948afb943d0ac35981a16cd47e19c9e0a575dd7
MD5 9aafab944ebe325cfedf869e481b7f81
BLAKE2b-256 56d76cc9287267dae9bb5e1fb0457ffbaf7f0cb8e78004699b5ddc4835940a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b23798ccc224579d42540f8901535ef913a22f65c11cccbd1c8f95ab3437ee45
MD5 759c86813c6a9150deb7db2ea9ac7a1e
BLAKE2b-256 420f5851585b22804a8ca44bf9a20971e6463a2363a891e6595093e0cfab6c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b21a4e8a22a3de3cf63b48917f04619eb802b3c9ca686b01163db0959761a7b
MD5 ae978c0e718a0c3ecd82432345f5b5eb
BLAKE2b-256 6855007b89557e5ed443ea970f61f894f0d1c1dc8c2af62a4d2f4d1a1c1bbd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 850a76c986b5cdf5c46586dc53fb5f6f7dc9247d84ae54e87f505c04ecf47f94
MD5 78b2de6146a33aefb6d880ce7320d85e
BLAKE2b-256 19cad62e5f6b11b7ec8e0bf1ad1c6fe3db453745c54ed2d952daf807f4701657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e650907f2694b222e3564938c88a71c37b1f59ef12d500796b396165346a8aa
MD5 3c1bae046f1fe07b22fc9bd5fd7ec93e
BLAKE2b-256 7aa52d04c1bb0f874f925835c814a2999025039124ff816f1b253a2badf23710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ef0bdb11a146f482ac6f1dd9f25c1be0f31299d732d54c2f8f6e9177c8f8390
MD5 a0f924ad5f9387e5a78595bd18abee73
BLAKE2b-256 1a22d25d372ea333b5b8503f855f5e2d6a77fac9bf5cc351f2ace5b49cf1db6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ea3c75440460c797542bd1df4e2683acc3269b524de9bad1d641bfbd03daf8f
MD5 2b198240bdd39c8afd8a142e864637b7
BLAKE2b-256 8b8b166174a83f825f195965a22cb425684045339ec5ee91edd05fcab9a8d11e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 834f4deebebaf9629f79e22fad392456165c2d241e814d616852b14799538318
MD5 52b2d9a398104e2a7d3f36ea8116e80e
BLAKE2b-256 5445d868a2ec66a1a8acb1d64b1df1c55a791531317f4522d40842037f9c32b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20e66710f836971fff4c2a95e34a18d17d9dc2bb8fdb93516d13cab85eb17aeb
MD5 db735213ccef7b1419967fefb66e0924
BLAKE2b-256 840d6d12ea3c3f145d377e5909f4a8c225fcb8c96cdf05b2646a6232d5ddb788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71703f7141d3e35aff2e707fd35aa5259698c0522b6df060287ef4a7c2eff13b
MD5 f107cbebbdde5af46cdd775fb2900701
BLAKE2b-256 b392c36540df26331a6e5f0fec716999d54f5c4f9c6cc32a19aab5f88c292221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: conecta-0.0.8-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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b7e74e26fd4a6d0b7bd8387804602bd9763359e6eb55f682b44ac46ba6fd4d7d
MD5 1550e7a03d6f2aa15b7ae583f8a7af54
BLAKE2b-256 486ba94b1edfe3452db3103ac1e74aae3ef4a86aca53ebe03a553618d063da1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed8a31a2e7326fbd04b8dd945fbd752a61901aeacd3390c5cc2be600ef445255
MD5 beb04a9b615f9db7d9632d616fbc226c
BLAKE2b-256 251cc5212beba32298eae5bbee6b210713d6638d01571a56b0172fe0a8e2354e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5b5fefe0833058b614238564d347db0e1970e1756d1d37c6421599cc670a9878
MD5 e0fa00cde8f359098f1ec767deb9ff81
BLAKE2b-256 cb0d55a9422cd7fc32f138ef92a69dc326ef742b94a39744a398f18a15e91bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 633f6c15b1b54b659e485647bbaad3fc4f6800c1c554f7eb901f9cef9189dd5e
MD5 a493251eff2b90582a201669b5952125
BLAKE2b-256 3c4358ff1d3276e5901a9478331771cc07dadb481e5cbe36744f29316aed4b53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74e0a8ffe15d9672635bfdded4e717f072271f681496c21e977bcd4ddfe34e3c
MD5 c98a422c884102c5d3c36e15116ec18c
BLAKE2b-256 1341c1bcc524e265a223ccdab002a8b50962cfc74d9f3aeafc3d789823fe4e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6000d47d46225cb26bcbbe2c0e4c2d6560354a345884ebfdcd4d57c270eb9832
MD5 8a1b1355828b02f41f318bb41e66e33f
BLAKE2b-256 cab727275281bbc4f614673dac073137fbe493ad073e5adf44430ad2b4a1d0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0be19e978f36701bd99816260f673c856af01120086185a6bcd6039acb54ca0a
MD5 e65b030f306c5b31d3f00df372161ad4
BLAKE2b-256 c05a2428edc3ba97ca7cdb4dd38338595fea0ab0412d411cb4cfef0be894072c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 338a1141c80716cbf042e63b50dd1be61f050a3c9c60e112c4e844c931f15261
MD5 dd974e525c98f5de0064553530ec23f8
BLAKE2b-256 2fad4ea76c89598ee94e071d8a3c9a80cefadda19de8e8a80b95dc429d5192b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6692c10a328aa48caa7b8cb644e80bedcda6ea280f5904c6855b899d6b20c7c0
MD5 9d8d1098b19b52d1d653d0f6ddf5db64
BLAKE2b-256 d17420c5a431927c3c57c66556dfefd19816c4d856aac18ef1858626ad0f548e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a825e7289e5aca9ad44afe226498c9209f211d54773295a9bab4cf54ecdb2e9
MD5 6884f3761b2e90b1991b18c59dc04530
BLAKE2b-256 1740f6dfdd305aa3769b5698092e6112e771b650f54371b452a9192d85036b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6c9b1c90ea9fbbb11ffa8dbe2a460f9616c7245f5265bf726a9081b8de10509
MD5 ec97dfa943b2bbdaefdc165306a05c0a
BLAKE2b-256 3b3e49ac9e27ef0f6374470b2972cd6f2cc9cea453d3d17dde0be27c389a918c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94d3164f475c8160a64ba39e45d6e2639e119e8d800678ab85286ca342e40ef5
MD5 e6818a18da2528b8536ec9a76d18c963
BLAKE2b-256 7174f97c92d56d440d640669cf544a912b0f6c09e48fb0a8a376611cbc02c1c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: conecta-0.0.8-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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8fd2fe49b895ea44ef7072bbc6da4257547d4e18dfeade7550ea12f15231cfc0
MD5 829f10128c36eee41d6de7b781392893
BLAKE2b-256 4c7d9dd2ebe5c9546ca0a74209d41212648fcf6cbbe6c5b042fcd34a6f1ec153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9709622287d446f32a797c086a15e43cc1b68f348aaecfd9a3d1179175a5d95
MD5 47c89a336c987b1d63fa9cc52124d131
BLAKE2b-256 388bdd7017892cf55831a8eb1b28cd160fc165ced256466f3c0dfb840eb2933f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9031c62561d574a5745b54465e0d1773fc3f34beb2d048163440924ee97e45a7
MD5 501b2b8a8f3fe2eb5299af9ac35c6f3e
BLAKE2b-256 542f9822294f1683d8f6314f5e71e5480d4d6e55b8f0e451dc3bf587013cd245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 842e1a9be8d541379889a4fee4c79b6c00ef66bd8db0d7935e001d5e3e6ba7a1
MD5 01b4d528854b56ada72a60c56af646d9
BLAKE2b-256 e3e5f130e5a5a4d652fe078831d7ddc2a57d9f2bb1cc1ac2749474bc26d41083

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e337402dec2964943d9a64fd6272c5a54511fd02e0668fe5c741bf43fa8c812b
MD5 272ce75ea59fefc3388ec057be58fd6c
BLAKE2b-256 f6f4f1acde8a387cc620a0e7916a455cc39d2759ffdeda6dc795df2e9eaf9534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b60b4ada26782413fca54cc83cf78d2cbcf301a7db7af36bc770992ce09462ab
MD5 da37f2f91bebcb561894c75bfb3d00fa
BLAKE2b-256 0c8ba3d9f177fe6266cbc9fca0c222a8b5cc583466b3382415e49352918806c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f490496207f54bf47e03b44cd33841df2984bbcbfc1c18932ac0b28fadba2f1
MD5 9b8d8389fc8c9f41e7750940c27b44c3
BLAKE2b-256 b68ee02a812442d750827dfc588a93b40b33090de7696dc6654a0166013de887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d490c5140e95ec79595ff6dba91e793adbe33cef4892af741f09948a046ffa7b
MD5 7a9b11636f84251a526e940ee45b6345
BLAKE2b-256 5c9af418d6d14309cbaaec8493db8889f429084c5a3f124c9b3b178d78dcd00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef14927811c2b085686f07d2df57bf60149759c603ae4f6789ad590fcb922433
MD5 f57eacf71aa635fd29829112921c44dd
BLAKE2b-256 e1b89e9e3b1f12ba252ae95a0d4ec7c1a73c7fc576a5826b49b914c416845646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64fc283e2038f31dbf4358e83655ff16e8f4abb35a215a2d02eb2cdcbdd5a1bc
MD5 ac5a8e52402bb221d8b801dd0e34315f
BLAKE2b-256 5afc718ad73c4f511232ea0118c97a837f76ec2efc7929b8e0578373227050bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f269d405b524bc7cb7ea2477c42440b2a4e8474f94fe0180f18180edd7818f21
MD5 2933e985394147882eab14fc45a9338d
BLAKE2b-256 d3a03e57733139391fd0e1f9f9c0a16f62d8fb257b5d7436e199b8f9dc3a7237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 384224a01d69c6b460a3d7db23a5cbd871c4c1448c517d8fece3570344fa7486
MD5 e364cc48df69a788923071c52b61a2f7
BLAKE2b-256 a3f46ded9a3970c3d61d934ecbfaad1ca91c76aadb4c8fe2c2d2566683a05e15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: conecta-0.0.8-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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 90d7450fcdc2e7d6415ed50746fb1c24cee7e945d48916271b4a1f9ef74c7693
MD5 3d34adf513f071ce37d5b741244ca65c
BLAKE2b-256 7e8084615fbae8011a61cc00fe9d5dac61b359311d20a2277645e03a0d40de88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05ceb6aee2ea7e002ea93a617b270f0cb24a110d3110d1b2da1f2a2af0e821bb
MD5 20ed2f6e1ac517b2b727b45038f7e193
BLAKE2b-256 cc41ac042c94f364f1d0560d000b134a55285b6ce3378bed000b6abf297a15d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32717f9701bd35a702e05ae0f5b92b2c02465a185a964397b28117eadfe78b01
MD5 6014021371342d4a843319a66e26c8f8
BLAKE2b-256 834b59e119f489d3c16ff14468d8d31a75dee1527b94fcfc1be1c76eabf89bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd2456fe26cc611ff0949dccda8367117460747c517897911a4d5e13c9a35cf4
MD5 99ea4e7316a113a4b541cccf884f6883
BLAKE2b-256 206ca37e37fbb5ebbff9208f462ee5804feb7a4c63a215600733dcb4bab495a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 72d73c6c230b523f38de82f86a8b37b230c05c0acb9a23d24fcc28fa84eff543
MD5 78991b8de9025765f1cb0eaac4ab5bc6
BLAKE2b-256 5e3108a084012f7caac03d7b9381adadba87f6f530fcf1da742a9a3153a6bea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41321ed2cd625a171998b8e6fabc7f9c30a1151b7fcb4a4d1e6db084dcff866e
MD5 50dabb939bdbd3f8f950915bbe9ca3cd
BLAKE2b-256 9639bb19e5495c35f735dc9481818da7bda9f3588996b48d8f4e822d72d515dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0eb75373c3c5b2da0c3764834cad15b080eb527bd5aacbbf1ca36f05f65b0a8d
MD5 1d2ce5bfc8b749f6a7d2349f6db62cef
BLAKE2b-256 2fea85dbf6d829ddd6567f56fed4a418f88d591b1b4973e4fc6d8a218ee9bd65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c7518216fda1cd919ca4887dad22b9202770725f63c209a5cc55a28cae9afa1
MD5 46534ad2c9989a372904ecd6132c4e04
BLAKE2b-256 d71fc317e95522529998a22de8081664363712ab098e00488c9baa650a72e65f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ef3630f5780fa627466e6770dc145ba1c20e6e6ff7150c1fd9d1306f85fb25d
MD5 e41f19631307655a2e894b228fea5439
BLAKE2b-256 382a1d6e0e366b3f4f07cb37869027c53b387136310deb2d7661dd6b0c1def54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1a4f6972b39aafcc87a55deb456511b340448f28f5decb15ab729fbedefec46
MD5 daed8e60efc8d3982409684cc5a6c377
BLAKE2b-256 2d985968d1c65049db876b1e5221e930e8ef243715277495aa47190c9f59d6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cf8c7a9af16a8bb2fb5e033d3392550e42de1c7135501896bb9e2facc7c332c
MD5 f855e8dd0045d0c7e1b9177683b687d6
BLAKE2b-256 51e7a05379c9ed147027bc63190207650f8c8eebaf18395912e974799c49e5ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9d5a36172e98ed198935f601b02d5c8c92bbd0561f84c63fe948e7e4b642140
MD5 5e32046a3b4cbe8bf17d1573d78c2dc4
BLAKE2b-256 977a8e3e8ccf1b2bae583e36c42a5d54f8d6d9f103b391b6f75c13f81530df11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: conecta-0.0.8-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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a3fa0dcc3489775747e3321a0eadf75c3c2b937fb20559d1aaba0fc2b4ef160
MD5 15ef4395c833ff2a070c10ffc21dd2e2
BLAKE2b-256 1e106f8cf6a9f44760fa07f1143f235acdffc16db7176d00371e062fb858b881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51ee56a0e5ef30bce1e3c813c1484406506aa6504535640c75b4f39840235da8
MD5 85692f367ce86a7d7882e1d836987f06
BLAKE2b-256 ce75c581028488daca5da2f6e7423abac5a8f4df6aea29062c2542490cf662f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66d86d865d0cd812c4f7dee9ae3cbff8ea523aafcd43d129e05a29841f10299e
MD5 056eb099b2c5e5784ab534a56bed860d
BLAKE2b-256 ab1ef13e138ba943ce18324fe30aa4366f47a60046d588df34bc553120ee5df2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ea142fde363939f51be7fb145cf13dff0257453cb2f4d1b7fd99a9a1effa497
MD5 230014c7156cf7af83f936ac94204d49
BLAKE2b-256 7b73c9709963c380257557454b4d4018e0f63673dcbe02a72c95ea77ba8ef439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 169697b03df42afc407720a6f63db842115cc6d042fdfd21f4f37749476e4fac
MD5 43d9d9e1f057ffe90dc390c3d173292a
BLAKE2b-256 6a52650792d3c8d44ed92e1416a336c457e95a6c9c6140fe8549d16d4ee7e828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 494da8e37f92fbb3fd260c283cd066cf5c527fa5ea159f14e6060a42d7dc8d3c
MD5 5b0636502c5e8dbda4daed6498adeeb0
BLAKE2b-256 918830b137ed45a4f33e386678b1c21a163adf2082d287191d414d38dbc5f18a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69a87799ad83eaa4f495fa5afeb7be00220690ad792d95e7e18faee7e8a72316
MD5 2749f0aa53163da49f354e721d5e2d32
BLAKE2b-256 f2f0c08ead604c0d36af547c41afe79b9d491976ca9c557849366ec9fa60cfd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a3ee1699d7a7b9a668f826fc45e7f4f8a0afce785c39395c7a96425b1d6a475
MD5 b9809304cd2de2d5ab3881c508a52f1f
BLAKE2b-256 c07e9d1e41b85e4621ce39a551931e1c2ee8685df12cb95310c4605e5b5887cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8581771b07c93ebd87e3ad3b858a7d9777736f555d42cced177e9fdf80a16da
MD5 52825f91fe00fb1e9a89eedd5372e1c8
BLAKE2b-256 2e6094bba4fd7726c9f563551efa051ee59af946fcbe1d7504338f02aca174c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for conecta-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bbb6442aa10c8e9b04db9abd57668cecbc663fdef35e207fd485166c05304a6
MD5 2d60cd14dc5b88b3d804f596bc846481
BLAKE2b-256 a37793c5e8f30628ba471dc3594a8e942d5b3407b05bf1c69e4982451465d301

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