Skip to main content

pyodbc extended to use NumPy

Project description

npyodbc

A python interface to Open Database Connectivity (ODBC) drivers built on top of pyodbc that incorporates native support for numpy.

Features

  • Native support for numpy arrays
  • Compatible with many ODBC drivers
  • Can be used anywhere pyodbc is used

Requirements

You'll need a database and an ODBC driver to use npyodbc. There are many different options:

  • Google BigQuery
  • Hive from Ubuntu/Debian
  • Microsoft Access
  • Microsoft Excel
  • Microsoft SQL Server
  • MySQL
  • Netezza
  • Oracle
  • PostgreSQL
  • SQLite
  • Teradata
  • Vertica

Install the appropriate ODBC driver for the database you want to connect to before continuing.

Installation

You can install npyodbc via pip:

pip install npyodbc

Development installation

If you've cloned this repository and want to work on it locally,

pip install -e .

Development installation using conda

If you're using conda, use the included environment.yaml to install requirements:

conda env create --file environment.yaml
conda activate npyodbc-dev
pip install -e .

Usage

Let's set up a containerized database as an example (you'll need docker before we begin):

  1. Create a docker-compose.yml containing the following:
services:
  postgres:
    image: postgres:11
    environment:
      - POSTGRES_DB=postgres_db
      - POSTGRES_USER=postgres_user
      - POSTGRES_PASSWORD=postgres_pwd
      - POSTGRES_HOST_AUTH_METHOD=trust

    ports:
      - "5432:5432"
  1. Start the container: docker compose up --build
  2. Configure your ODBC driver by setting /etc/odbc.ini:
[PostgreSQL Unicode]
Description = PostgreSQL connection to database
Driver = PostgreSQL Unicode
Servername = localhost
Port = 5432
Database = postgres_db
Username = postgres_user
Password = postgres_pwd

We also need to configure /etc/odbcinst.ini:

[PostgreSQL Unicode]
Description = PostgreSQL ODBC driver (Unicode)
Driver = /usr/lib/psqlodbcw.so

Now your system is ready to connect.

  1. Create a database to connect to:
# Set your environment to match the settings in the container
export PGHOST=localhost
export PGPORT=5432
export PGDATABASE=postgres_db
export PGUSER=postgres_user
export PGPASSWORD=postgres_pwd

# Create a new database
psql -c "CREATE DATABASE test WITH encoding='UTF8' LC_COLLATE='en_US.utf8' LC_CTYPE='en_US.utf8'"
  1. Connect with npyodbc:
import npyodbc

# Set the connection string to match the settings in your `odbc.ini` and `odbcinst.ini`
connection = npyodbc.connect(
    "DRIVER={PostgreSQL Unicode};SERVER=localhost;PORT=5432;UID=postgres_user;PWD=postgres_pwd;DATABASE=test"
)

cursor = connection.cursor()

# Create a table and insert some values
cursor.execute('create table t1(col text)')
cursor.execute('insert into t1 values (?)', 'a test string')

# Retrieve entries from the table as Python objects
rows = cursor.execute('select * from t1').fetchall()

# Returns [('a test string',)]
print(rows)

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

npyodbc-5.3.0.0.tar.gz (249.8 kB view details)

Uploaded Source

Built Distributions

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

npyodbc-5.3.0.0-cp314-cp314t-win_arm64.whl (74.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

npyodbc-5.3.0.0-cp314-cp314t-win_amd64.whl (83.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp314-cp314t-macosx_11_0_arm64.whl (74.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

npyodbc-5.3.0.0-cp314-cp314-win_arm64.whl (72.2 kB view details)

Uploaded CPython 3.14Windows ARM64

npyodbc-5.3.0.0-cp314-cp314-win_amd64.whl (76.7 kB view details)

Uploaded CPython 3.14Windows x86-64

npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp314-cp314-macosx_11_0_arm64.whl (71.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

npyodbc-5.3.0.0-cp313-cp313-win_arm64.whl (70.1 kB view details)

Uploaded CPython 3.13Windows ARM64

npyodbc-5.3.0.0-cp313-cp313-win_amd64.whl (74.9 kB view details)

Uploaded CPython 3.13Windows x86-64

npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp313-cp313-macosx_11_0_arm64.whl (71.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

npyodbc-5.3.0.0-cp312-cp312-win_arm64.whl (70.2 kB view details)

Uploaded CPython 3.12Windows ARM64

npyodbc-5.3.0.0-cp312-cp312-win_amd64.whl (74.9 kB view details)

Uploaded CPython 3.12Windows x86-64

npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp312-cp312-macosx_11_0_arm64.whl (71.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

npyodbc-5.3.0.0-cp311-cp311-win_arm64.whl (69.9 kB view details)

Uploaded CPython 3.11Windows ARM64

npyodbc-5.3.0.0-cp311-cp311-win_amd64.whl (74.5 kB view details)

Uploaded CPython 3.11Windows x86-64

npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp311-cp311-macosx_11_0_arm64.whl (70.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

npyodbc-5.3.0.0-cp310-cp310-win_arm64.whl (69.9 kB view details)

Uploaded CPython 3.10Windows ARM64

npyodbc-5.3.0.0-cp310-cp310-win_amd64.whl (74.5 kB view details)

Uploaded CPython 3.10Windows x86-64

npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp310-cp310-macosx_11_0_arm64.whl (70.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

npyodbc-5.3.0.0-cp39-cp39-win_arm64.whl (70.1 kB view details)

Uploaded CPython 3.9Windows ARM64

npyodbc-5.3.0.0-cp39-cp39-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.9Windows x86-64

npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (11.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (11.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARM64manylinux: glibc 2.28+ ARM64

npyodbc-5.3.0.0-cp39-cp39-macosx_11_0_arm64.whl (70.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file npyodbc-5.3.0.0.tar.gz.

File metadata

  • Download URL: npyodbc-5.3.0.0.tar.gz
  • Upload date:
  • Size: 249.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0.tar.gz
Algorithm Hash digest
SHA256 ab28b6cc4cc5448a8618aafb1643de6ca133d9aba02a73c02d2b4a57e75dfb52
MD5 7ba507a78cd94b47a8450a120c91920e
BLAKE2b-256 19b1f1dbe8efffd9e6b6dd12937541495490eb63fd6b6f85f2804d703ad6f8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0.tar.gz:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 74.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 fbf465e0e8c144b225462cc4a532c7eaf22856ab1e1723f5008ebe2c584a51ec
MD5 6aae023cbacee4e643804b0c11b4a834
BLAKE2b-256 72c20a926e3d09c964be14ee26a0a8b6675cc2e623ea18e5077e3a10246da614

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 83.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 83c4ed7a667f4aa53fd04c4441ebb021bf059966b6fd49b2a0282934af662ca9
MD5 2e14290d312f1d9d322c20ab3356752d
BLAKE2b-256 a6aa1b0a8c76080f28fa778995eb3dbdc58dba2252889b6c57900bb5b9589491

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5bece070b68f21fd7a1203d10fa2b0938246043d62682894ac692326f83d586c
MD5 94e195762c3d0c9b0cf38942bef6ded0
BLAKE2b-256 814bb9779039b9a98be3f5a7496f91614f5bd41bb263f56049c36f3afa2c6fc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcf5128d69aebd75c72b388110c1c69a48937d0fe8d6428087f9f5b74e313bb6
MD5 1eab563a3edc28d7d78a046790dcf413
BLAKE2b-256 f4b6e627152772e51262be9aa57d6ab8eb382e562d2f220b207d96ddbae199d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d40b5e67e4e03f343640d1b082154e07b3bc1b7332b1d98c61fc3c0b49de306
MD5 f29415061c18d4d2f4918fcb0e462ee5
BLAKE2b-256 8a84447a67f71227a1504954318c9d71dad943fcfaa6db9bd775d739811753a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 38165b266502b95cec8b49533e39a96df4051a5a5cd8a3d3d6190dc66cfa49aa
MD5 7ee26d53476880b5a3d0ff822564cf6f
BLAKE2b-256 bd62ad355e00dd7e21d576ebe7e861527b6811796c8c0e529f55cfc1c135c093

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe57be36656af6b919309f728275e74f41bb77a2eb4530f3857f55b8f0b1bd6
MD5 72a36ccf2f79037b9a0f39bc28d6c07e
BLAKE2b-256 d6761c83e560b339a2e7c89320f8c3039f394c1a245ca5e0ff2962639c662a5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 72.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a6f6d00655793646a28203a45a63d9282a780dd136382a17bcb1d91b68150630
MD5 100a4c0bce824f4fefbad6b7bb9db7f0
BLAKE2b-256 ef838108ee209108875f60c22ebab7c2620cabed353c8bce4343807f69156c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 76.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 17a60051760a22b43717fe38a84ea7c4dbb66bff5f4a0ca12f937d3852ddcbe2
MD5 116b0a899a2640e49bd020d4e2e84439
BLAKE2b-256 3731f77b9c7350a7be73d80ae58b59a842b7d76a82c22822d5e0234745c98622

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6951fde6dd02f35ae206edf5bfbcc0eb13e6422e0a6ba96810f3d3b4ad2e9251
MD5 7e490d10f0582d472d1daca6d490f928
BLAKE2b-256 9c1378455efc89e0dedfb756de5356eddd97556771300104a72425b99bf7497e

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65804b5f849cdc39d241ba3dd4d3a5a337886df7ee23e0bfa7d9b0a769bffd99
MD5 6c612b8196d13fe0c9046cbc6ed10e27
BLAKE2b-256 bd8434562b843fb048f06707af8a628f3132fd347e87a60c2594f1b37310de4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52eeb7fc531f4491d328145a6e93e6509356ce8cd67ee7d1b2a28d06ef927043
MD5 67622704ca29a3bd02cecaff438efc28
BLAKE2b-256 34f229564201cbba625c148b06cdee74b1398db407178e856bfc536b499d6d9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46ae2af21f8b55bde39425a5743c4b5d70c7f101e792bdb348dec863324b7110
MD5 30ccd1403a80665a2c576a335c95d824
BLAKE2b-256 c0eae470da4344109326aa9131b1c38574072bf974a549220f4881e33c1f84cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1362c04de7f9e39db474e5d486c239c246c36d921c9466596f0e99c66a7fc84e
MD5 3a803067845a8adef385cee7a125be4b
BLAKE2b-256 824e3c6fe30a8f6dec9c875aae652da10ef68c05b9f987fc7dba4613b2be418b

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 70.1 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ad58f72879550caceea93b8a042273ea68628df7b15b31f85ae66a4952114859
MD5 53b72aaa666fa3e0cf697eb77d8272ab
BLAKE2b-256 03c283ff74379f0c838ed90469560fcbee367fa688b61fa2e29cfb9c3a4974a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15cc57e8af562cbc0b476cbeb644483a7d0a2fdcce5986c39bb5379d43502177
MD5 b92539a393992d4688de2173991a3223
BLAKE2b-256 13eb202a9d7373fcca2ffd2d4deef992594d7cc9f3edce4e59486b3cfbb1bee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ec69c50c8a5fb014a2474641f4c3b7fb425860a6489b230549d96485bd8953d
MD5 3fe36bd51d8e560819767ee0fac6a7e2
BLAKE2b-256 db47d91c311f6ab18d505b21cc4518c9c0246a3c3b91dd3387789bb1e3c132eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5357d3241cb751c6d5b06e4ded864c947e101481dceeb5cd57ac499cd5c08baa
MD5 453764b1a1029a771d9dc22e32b234b9
BLAKE2b-256 d14bd1ce3b2224eb0b5a1c67509de4981ca6802df3c9f6342fea8824bfcdf545

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5280e1aa9f7e5b161a4967732cbc4818ff149942d1d5dc48a5a4e15a10ad2d8
MD5 156558b05720b8a6331004bbca38dd60
BLAKE2b-256 f67deacfb0d6440fc696a4fbd68858f451ce640bca007a005a8d58ae8c539ea8

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1cdd3f2109496b086068cb616f506de4ec2308ad741de3f4091fc9875370a7d
MD5 151c8dbf659d53843dba0f9679a59031
BLAKE2b-256 60a260998e5862c1d0530f7bf84ea34b960fa1a33ebfd2ad0869e9975b380d00

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 557bc2ff181f0c7f7835e884ebbe829c274bac833ad7b6938f591bb25c4de570
MD5 4b7b6a1d33412cf21a84046dbe4c315a
BLAKE2b-256 f4253549bedd197e1ddc9c0c615a2aa2226b837ac351f9f74e9e53300588bd85

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 70.2 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3f7dfab6eafb97d469b7eaa1ed8e4a05a0e95edca4f4bc2b11ae57a4f36cbdfa
MD5 350904c198f0a32f167fa190899d0027
BLAKE2b-256 347ee9675bf866b3445f0d76b057fa638f11364c7e91176a663e1566c01265e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 74.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a47a81483b036cf4bc8802617d1ff62f8d34979f1fadaf17a10005fe75e6ae09
MD5 a32f1a5156ac2e7e5f3edbb540c2f710
BLAKE2b-256 bc64f29442e85788a302d57fad533f78dc2f9979ea90eceb88023f9e1b4b8827

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3c27fc9f4b226a0126bc42843d44355c1427094f5fe88563b5b433dfe1e8754
MD5 785f629b7caa46014f00ec0d89cb1ec2
BLAKE2b-256 3ef5797b9f9d49f3d5001bd997e56fd624a2e4994681739655813d72dbe5af56

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ef165d5ea7a44ecad2618e6a5dc7dde55b00074880d4ca4190f5c37a759f09b5
MD5 f2169b557fd08630f8e3637797d52895
BLAKE2b-256 b53755c168988b391786fbbdaba18d4c0e4756ed5c25d1ce75dad0cafb3ee95a

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2255053943cc6f3782028e17521efd15dad7c5a4d93cd939ee532098dde5749
MD5 934f74b23f53ab874fbfe5a6e835f7e2
BLAKE2b-256 ce0d91da07625ab4c4901701b8831f673995dc49fabb074255f2516bc86d3a87

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 077186bd0b3a3c6e8bcb147d8d8c6bad08a0fe768e71434859f2d202701c9451
MD5 c1e207527173e1395b78b06da7bfdab5
BLAKE2b-256 5eea5fb76d9c897d1743410801bcb44a4583f5dfa566f21521b19f1fd11c5aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e82b36fe6bd12699fce717d969938eafed09a200fda794c5e0d79fa2331a923
MD5 0213e3f78e636ab4e20061e4fe8da767
BLAKE2b-256 492cfaaba5885a9871e5979f4add78fb5858fe17ed78b69abeb252517cdf383a

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 69.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0e490453126b9aa86e003254984b74bdeb9e8c913a20034d049081f01583ba0f
MD5 89df25000378e064f6899210c3eea454
BLAKE2b-256 3bf5ef0478bd724ee73e657f11818769b051db9ad0717a39f0861181c2ce3c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 74.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 008633783364b469d2091e726a17b02379ec6802a359acbd6fd0e3a05713a683
MD5 ae9601765e07651c0cb558ed8a4d7d62
BLAKE2b-256 32dbfb42259cc1d45053287b2b3d0168bb18a05b88556e82a7e040de4d5b8eb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6476f9245da8cccc60d9490f32d2b6817d964ab0322c39cd489d7ef8ad551f0
MD5 980391852e6505d359e795bffce995a6
BLAKE2b-256 d3d74c9753fcbebd79f984e5b1c4d53649d3667435fb4ee66f1ecc067a3a90e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b8f901881d945a7b432b71becae3fcbf64f0172af456e8e86e23246065f1df1
MD5 291af381492bad0b41f782447543a87d
BLAKE2b-256 9bbde681ad934de9d204364ce658d6d12aa23cd673fd87641d1aa932e698e87e

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 368c8cc667b442c5f2bd78632627efb99084d1a9a7c768f479faa33d6d87587e
MD5 479bfdad43c89e755e4bfd7830373a06
BLAKE2b-256 94192fe9fe4ae470fcc30e3d7fbd18febcb1d250dd4e7c7d709ddfe49ede241c

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d62dc7794c060762b7253b5e4b3a5cd2cfd987e53e639e7dcb906350f14b12fb
MD5 6d5f253fa5d23b6eb8ddac587786fb97
BLAKE2b-256 73ce7813b74ef8a5447dfe2449e61e9cc835b343994613bddca3a209731a500f

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84c58194333198b9f8f06df7b68d4e37e5c036b527dda3ff9da78539bfed4c81
MD5 ff03521db765334d38478d8693ec5404
BLAKE2b-256 e26fb26edb143b1b368ba2e8270ad6a01a84f6a3b40d9381b6075386032a9aa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 69.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 280908908288ab469af50ea92e3685d15d40eb1e17d347028bfe62eeb0fa4907
MD5 d7cd5ed0101e267bb3173baeea652e95
BLAKE2b-256 4d54a9822c19ed056b330a2ba22a9c143b0574d1ddb4d421acf83f57c68d2d92

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 74.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f172c86b52d57ca3dbd820abb1adec0e4ffdc4bc24b725d2542580ca549d9a7
MD5 bab10dc44fcc273bc31de63da7738e24
BLAKE2b-256 fd549d537e8425772daed121de6f0594cb26765fcd1acbd7eb1da30c2fb95c9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c1b0ac11c62e6b94e275a521586cf53743be9b180ef2e28601997785de4a2f9f
MD5 59cc580d72d09bd10397a3fc8c5e922b
BLAKE2b-256 c05132127ba4832bb9d5f7713bbf941de7f234949f2f2f500828026db5fc69be

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5568f0e3d4d34ccf5628cdfe7019852cb2b9544bec3c4c7a438aad5aa4cc9e97
MD5 0ecc82122954597b6784e974d3347861
BLAKE2b-256 8250073ea89492080543a266733e380c416eabd848024684011450dd6f7e41db

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 007efb524a9cefede4435119c47ec99a558d8431ccf6860fa809056e2ce4b2eb
MD5 c7d776e407c7dddddbc37bb517baf25c
BLAKE2b-256 2d8e89e4cde8033adf40bd6eeb45c7b414984219a2605156dc80d1e3562be5ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 741c08a6d5bf67f616e5021708ccec4803cc12afd11c8dea58c8b8ec24705d80
MD5 eff8078c1d2a1ca67f6af6f4c0bc3f03
BLAKE2b-256 0814cdc0930de4818541559835bfa8a34f67bf7e2f5af32b8fd0a6732415b7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb402f7bc7f036a191964b64e013056b30a4c9c0db9dc171527ad096c3642638
MD5 1d641929c540903490e24c3ae48d14b9
BLAKE2b-256 70026ef2fdae98aacfb19b328b27413089aeade069e251e648d4c486485f0adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 70.1 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 36c7299d7a0365ca8fd5740b71655271633a6cabe4cef6608dd164d4d22ce31c
MD5 54a9bdbe2e488f3dd061baf0196f86ba
BLAKE2b-256 9e11fa8ac1c6c996a26a1762f2d707cc43f88c5da309442864b0e12b77de1fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-win_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 74.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 60a47302a76e1a87a39e3785569283f33477838d1005aad88a1bde5560292c0e
MD5 016071b53afa241e533665198206eab4
BLAKE2b-256 45a1463f2d052d6b924a63bc94ae820513bdb40bc10def7c5e37c94e47d0b1bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-win_amd64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ae53a0fb9511e39ee731523b09e0b288bb3a2264ee7df3eda9b7302608b2ef5
MD5 f41385da55dad6ca614dbd64e62ed697
BLAKE2b-256 b8e095860f29f35112eb82b67c071487a4b6b5c30ebcb57a6f36cc6ddcc9e1b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a20365b3cfabf429f42dd8e2dfa40e121b90d906cf55ee7be575d65539a9a920
MD5 00d6843566b87d118162cf26fd253d2d
BLAKE2b-256 4d122d1638f45b396d5711882a4ec5ff04a5ec346a6b448c2ab840bb9aaaca83

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 adab5255cb9e19d974579bbe516a9955377af8f57c8811199d838300103ebcab
MD5 90971bf1124dfc07550c99ea54f6642f
BLAKE2b-256 da21f1a7c1531afd4e3e7a2fcc895a75e700e854052238c3c3bd9000df7eb4e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 14f7710ff752086f636d01f4ea84d92f3daf9e546e4096feb27d813212a557b2
MD5 b5b57e269c64112691f2798459525ed7
BLAKE2b-256 8747dbcebcde26ecf2f316afa4eb2840beb128b9720d68c27ea3990bf80d493f

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file npyodbc-5.3.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31f70024a4ff238715d56c09323d673dd6f149f7e809dd052c1d7a1aec7592da
MD5 b313395973381cfdd8d4bc08088cdebb
BLAKE2b-256 26f7e06fb5799677ba689f87bda74378377df453961309eb59fed3755916df49

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: artifacts_build.yml on Quansight/npyodbc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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