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.1.tar.gz (64.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.1-cp314-cp314t-win_arm64.whl (78.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

npyodbc-5.3.0.1-cp314-cp314t-win_amd64.whl (87.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

npyodbc-5.3.0.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (78.6 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

npyodbc-5.3.0.1-cp314-cp314-win_arm64.whl (76.1 kB view details)

Uploaded CPython 3.14Windows ARM64

npyodbc-5.3.0.1-cp314-cp314-win_amd64.whl (80.5 kB view details)

Uploaded CPython 3.14Windows x86-64

npyodbc-5.3.0.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (75.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

npyodbc-5.3.0.1-cp313-cp313-win_arm64.whl (74.1 kB view details)

Uploaded CPython 3.13Windows ARM64

npyodbc-5.3.0.1-cp313-cp313-win_amd64.whl (78.9 kB view details)

Uploaded CPython 3.13Windows x86-64

npyodbc-5.3.0.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (75.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

npyodbc-5.3.0.1-cp312-cp312-win_arm64.whl (74.1 kB view details)

Uploaded CPython 3.12Windows ARM64

npyodbc-5.3.0.1-cp312-cp312-win_amd64.whl (78.8 kB view details)

Uploaded CPython 3.12Windows x86-64

npyodbc-5.3.0.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (75.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

npyodbc-5.3.0.1-cp311-cp311-win_arm64.whl (73.9 kB view details)

Uploaded CPython 3.11Windows ARM64

npyodbc-5.3.0.1-cp311-cp311-win_amd64.whl (78.4 kB view details)

Uploaded CPython 3.11Windows x86-64

npyodbc-5.3.0.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (74.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

npyodbc-5.3.0.1-cp310-cp310-win_arm64.whl (73.8 kB view details)

Uploaded CPython 3.10Windows ARM64

npyodbc-5.3.0.1-cp310-cp310-win_amd64.whl (78.4 kB view details)

Uploaded CPython 3.10Windows x86-64

npyodbc-5.3.0.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (74.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

npyodbc-5.3.0.1-cp39-cp39-win_arm64.whl (74.0 kB view details)

Uploaded CPython 3.9Windows ARM64

npyodbc-5.3.0.1-cp39-cp39-win_amd64.whl (78.5 kB view details)

Uploaded CPython 3.9Windows x86-64

npyodbc-5.3.0.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

npyodbc-5.3.0.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (74.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: npyodbc-5.3.0.1.tar.gz
  • Upload date:
  • Size: 64.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.1.tar.gz
Algorithm Hash digest
SHA256 e0d9a12d562010a3c3200eb34add91a54e3748490016e987c124905d1f4a6c6e
MD5 b369a9c485b2b6fb1e90cf89920c1528
BLAKE2b-256 bbbc20ead698ae01fbf757b0f35e112ece33f4c29aacd0ef2a8b31860c41d75c

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1.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.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 78.6 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.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 1bc76252f0e303e47c659335131c85cd0158443e542c3359944359c232353a9e
MD5 fa4ce8ae5bae4c0e59add4018cb59a86
BLAKE2b-256 96d296609130c55daf0c548941b46ad0000a993566d14b94685dc22c60579132

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 87.6 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8724c7279cb5c9a323f89d71352fbf13779613cd475be959d97f8695002e8f85
MD5 c30e7539b8bbdfc02bfc451630e73130
BLAKE2b-256 aaaf4ee933858350b3bfef908e2c4508f7b33f6d629d07e9633c4a1c86ce51eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2870c7f481eec3fb59be6f6ee45d648be576cc63ea5b24537bdf3b4335c35eb7
MD5 0f63b5997cca12f12e5655113eb1f0ff
BLAKE2b-256 68f42def743c2460b8e15605a781986cfede75c72608b6907e0fdad3d53a8214

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0aa0effbcc31263e30bbfd585183060bfe5b378ec5b0bb579db91f8e52a2d54
MD5 45a0ace2609e9516dafe6ff847acfd4a
BLAKE2b-256 40b1375e3074b0ed7a59ac23d52d5db9a3a04cd5b83de00dc99f904f496e8ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b223231404b7d4dfc6027fe94b9f8956a348b650263ad0692392be2919227f4a
MD5 b506a1b837f33dd0bfc2eb171597dece
BLAKE2b-256 694b5d7000ac6443043c209872239cc02c34bd0ff5f01f76fb2bf820a289a635

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2703ec5b9ecbeb4b6de453d5d445479a95d6f0aa216470ef21a9d4f60d8caadb
MD5 96847dd3d4c3b8c517e3b93384ab2462
BLAKE2b-256 abe0ba383eab01827c6749abe5cf0c71ceee6bf4282d266d027c708ca6bf961c

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da0ae56eb5e06f1ce888ce66573c29bbf4c9b5c6b9ac5873e042452a127e2214
MD5 9c28977176afdd01494bc239cf35066b
BLAKE2b-256 790deb256615d013bc59c7d3ec5c5b3ffc677b50de31cc182a2256785eb16f19

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 76.1 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.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 32fd04a1697992862d93d8b39dec4f0b07df0b6c9bc7f7b53eb55a5f189c04ba
MD5 58e53bbad0e8cee6755ba7767037ff2d
BLAKE2b-256 40d0e7a5690cc65f608ba0021e1ec950eb077fb55f638b5375c813137808f340

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 80.5 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 504772995a8223e5e49e98510cdd729e5f3ad05a64376d654be5abb1eee2e3b1
MD5 d2b9172a59f45c8d7328f890d6faaf71
BLAKE2b-256 db0cc8c5406ff8fc9e018ff0a881728b6a2bf2b7a9ab7ff9b216a49089165f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96230c3b74b77185ce29c15dba4a095c602f2bace742ced691c899bd969b135b
MD5 0e6225a65f3ff2d6272989dd55b7f8d5
BLAKE2b-256 6a6f86805fc5fac043132f7abe8d28f8c029f879a5f488676ddab4b618a32dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbc91ff43e62eec470612dec742c332874a6b07a05ee2d2063d2a6530546a007
MD5 7fb1c06a65f2691e2de81883a074c8e1
BLAKE2b-256 ee0ad45bca31b49cf181aaf36f2fd6aff60211d59c0d04287012793c8e0ad722

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fd15c272c5248cca6f4e03f4a67b1b055b05c8038d21848a43a11f27c0c236e2
MD5 d6279ab600ab157f312450708036b9ec
BLAKE2b-256 6b8ab1d2b338bbf72feab5b32c2df212c905594764a80b6a45db7c91beaae15d

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 436f4f430bd625199099755c157420cbaf4f610198ac446fac2796f89301be2b
MD5 24a8a5f4673ceb1eb51128853d909a3b
BLAKE2b-256 33da2a4f14bff0c1f840d03654d59df8b02719d293dac0db17fc1ae86dac22cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6e88975606e344d9defa6e7518c14000ce940bb89e40a9364d6db54cc1f05fb
MD5 0945c1c6a1b5d065846a76bad3ce2a15
BLAKE2b-256 2b78da19244da3e6a1b70f70baef19e662b675ec746c3d94c661a6e6e228b086

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 74.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.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f03c5c5258b2586970623debdfb179627e62fd0c31a5f8558a5436ccd481ef60
MD5 e18725fc58fd8caafd6711321cd1b16b
BLAKE2b-256 afe367a467bd18cc4d357bce43bca50287b830fb31da5941d47614fde4b1543a

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 78.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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6b85003fd756cd1db19d65961724702494176cb0c3693c5456cfe08a6dead278
MD5 ad516196d591a4ba1ee92b9e53d3a2d9
BLAKE2b-256 75fd48803767f41004e985e91f764d036357a143fe2b5ebe2d8f604812c768e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06351f1d5bff028baba7ec20b8a8320acb1040e8538928cf69534bf0285ad74e
MD5 8a4289c62188b807e54d91b2dcba53b5
BLAKE2b-256 78dba86d9786d80f905cfc25332b028d36b27f66c586cb2f953955503641598a

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 967467409f3bd298e27a63c2b0bc3cceaabe20fa480e948561cf490d816eb97d
MD5 a882c7ad07abf69afdffa76d3bac4346
BLAKE2b-256 a3e44c4d3e981a6493c7d324601aa735428ebb0056ca686bba359f374611da18

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f04173d9d9b4ca23509ab2b3fa8f26bee5120dd82c861269ea357652921261c
MD5 9d111accdcf947d45f72c49828c78405
BLAKE2b-256 d90e4dddc3410f5f5e7fd0e16958dc0403765a94646934f9ed15cff445b30e31

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 17d6b979f2d758288073b4acb0ada1bf55855e858e3501cc9333a939c2276c1d
MD5 c31d86493f0143ec32201eaa93e21222
BLAKE2b-256 0d9ef1db11cd01209a349fe7f6c9a01608dec8e46025bda01624835d6f4d8789

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e40de7e799b51370fff237c844cbdff665395bc62b76cbc684fcaf6af0b5d311
MD5 6a0bf42bf25db6f62e3846cd35687d2b
BLAKE2b-256 57c9e43a9697a2412741e770f096062a0ec80c0b951a82e93e0edc2d9c836296

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 74.1 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.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d278efa892a4cfdfdff7bb7df191360641fd69ffe197f6c8a2af7c820c6bba7e
MD5 d6f7a212cb88f9c106bb3c9253bcd3bf
BLAKE2b-256 d3b7eb825850ed6913522e26b2111317570114449a1e0fe5169f7263dbff79f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 78.8 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1af299bac6deca4616bee8a0620f6a19f1d3939f27f7f06e581e24deb473dec0
MD5 860d3f0db45069d288129547780043a8
BLAKE2b-256 fe4847eb4ec9a98b8e0fec3b33fd90d09c063a353dbf6b2a32ed603d66df37d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1c0062a2c1e587905c1950bb6ddf77fe5931748fa08eaccddc6c8db40eda83d
MD5 d6cdb5e9a8ca92b5e68e9acdeb67f4c4
BLAKE2b-256 b69f078c5c698e87a3832f1977fd047b267c4cfac82b92a1ab09b84b739ee5e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 081fafe9e727c30b5114f4c43f3e40d7e4dee46e4b069a0eba0d2631f9548d2d
MD5 31132fbb7454533222c5797a611116ca
BLAKE2b-256 ca39355aa88a7963b553d8d26dcff6edd643d8310a370664a5ed5dbfe16948fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b9b9f51d5648123152ce388b4c6f8a2c903819fe1ad031d1eaf114038a70fb6
MD5 d5edd544b4cfe424077e0da4d9fe0378
BLAKE2b-256 17daf5ebb35e0632c55d0e8731e3cef8da63390d752ad3b13c72a470a3ddf271

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51f1da16c4eff9ad22ae753dcf3638d1bfd7d105e9d55726848cd234ec7d8e09
MD5 9649e3c9f58a284f740bbc18dba74d38
BLAKE2b-256 7012730b84315216cabe9fa7ca07fa811b87c5166c1d376c0bba1fe5ca9ff449

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd09ae7e90b04889b06a7caeedb71ec124d6940bf2a65f04c4151beb2a86c7ad
MD5 6b0de64b34bf573a014005a1e4eddc86
BLAKE2b-256 7d02e221208edc4112b374985e3d886ad68b510dde9129837affd4727e0956bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 73.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.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 90634f8a199f71f0de23c4a4d8694145ecddc41b386becf7f824187ac185f8ff
MD5 a278832b940f4474c93895637e590a07
BLAKE2b-256 eef12ab99b47cfbb24d026d5778a61b2964109fbcf90f82d4a7b426b0053416c

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 78.4 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9bf171dfe98419ac823e2f7f587577f4babfe9bb4eea57149688ecfa15e29f06
MD5 c6431105d3b6d1b9e90db0ae534d4004
BLAKE2b-256 8584ce37dda3d02d7a264e486f86399a32be1a59adfaede2d0be9082098ee272

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0899dd0bceb939ae2711e32ab1a2a9f68e4f06607353f97b65a3742a2d17477
MD5 c0a2058163a6088175edbb9d90613eae
BLAKE2b-256 43fbe699729f8531d513a78fde964a05a1309b386d76996da5ea162d4322d612

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a1a6963ed865adc5ad735598dd9e9d7a623b84b950acec0497361266fb75a4a
MD5 926398ae0a531a7444403f7eb06e4d32
BLAKE2b-256 5f27561cf420236cfae7208be2387e761d13d20198baf30e07f4b2142ad4ff79

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 07cdfc062af08cb67e96d4587d1e3ae35c881ae7de7185520d9630ca153aa1d5
MD5 74ad1abccfc7d2f2da69bddc732b3984
BLAKE2b-256 32f08d89239562d81455daf065d7f983dbf87046214cecff69b33192d759dd2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55deae7d3debb49340b00fc389fe733269bf758f5e5b34a55ca04ea6fcc1b0cf
MD5 c43ef86ae4b99c7d0239a0716758c496
BLAKE2b-256 a675cc776942159c3566605d116f7f6854089ab11af6a7a85c63006dd2a5e79b

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c9ff231504e7dd53e5d13935a033b3d6d241368193359d393485059cca3e507
MD5 86d3094072b515eaab54fae650448c4c
BLAKE2b-256 c043252ba54a23a5e76198b9b4485b726ff3154edf83c2200bb9856a61f71e25

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 73.8 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.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 718412b9a7cb75cd0f890180e34dd400b54911031a15f91f83621eb6cd3650d8
MD5 4210330d7d826defc86ffb75aa835881
BLAKE2b-256 300068a82dd7e1254dfa86e1fc00b0cffed387a976a1951202404cfe4b75c96a

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 78.4 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 234fbfd2186b789ff9fe18264dcf699a73d5fb0baddc523b1df1ab874cfcde60
MD5 a28241ce389859779659f3995f86db08
BLAKE2b-256 0f0a3b5b754b0153c3a24b828123108c56756598f045c5cda4298b6f741ba5a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34b728a9c78a4e95d7e55a1624da2ef8b71f7970f29a5e1ac0fed22a6043dda3
MD5 098241367177597949b62fa3e1e83baa
BLAKE2b-256 52389bfeda85b82d63731ed5716d9e7738ad0a4fb66695a7a72d14ddef0a7c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9fa301a028099187cdaef57cd94c08471466f7af2120c3e4a9e93bb3704adcd5
MD5 25033697ac2202f3a3ee448d0451a147
BLAKE2b-256 5e054b249ebbc2ca5b2f683d5b55f27170f46ab8518104c91639c09e3d444d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4e0508517960f0269b9ef7b68ced7999724294872a5adc73756189e41c43b6c
MD5 f8cec0063465216865d4d5bdddb68705
BLAKE2b-256 a96dba2d47de2ff5e16e147e34b118ee4f403ec17ce146ba2d08253b003acdb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b64329e18de87a4b645af90a31c5b79f1ac92bcc60d9f9cfd06f364b6459d1be
MD5 568a1cbdaa202c2dbff18d01ae48ec91
BLAKE2b-256 73b5c32347543eb28b9f7e00af154d7a3ff973cc3887295dbc4e3a53c94168a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98c9943730a3e7af17c33c3a18f509a140ee0df933c6fdbed0f9465f77373ef6
MD5 fb12fe2a9dd251e4ce23869eb118eb7f
BLAKE2b-256 e52b1016f058a5105200316365f82bb38d4ddede068b1e8412933de40816bf2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 74.0 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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b2ac578213c337dc1014c6d8079de316515b676a4e21dfc56cd3d633b5facfe5
MD5 78e2ba508c12a7cb1249b32f816462a5
BLAKE2b-256 2a63adaca05cdb39359a412ce299c050994294b1f1f894566a00b47a2f4911b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: npyodbc-5.3.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 78.5 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 867889884c2ad21bee73d4769ece18f9f9160c24d848adf6626877fda897c338
MD5 81ccd9638c26cd4c2aec89a517d2b4dd
BLAKE2b-256 a0101e354420383de714e9174f345d33464e0b49e3e69dfbb3aeaf03afe64b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c96dd62dd327af28bb6a0186872795dfa0ecf5e744a4a294342b48b0dc318d0
MD5 e4d2454ba99c47abf95ad67948cced94
BLAKE2b-256 5c60fb129c8bb902deadd06f645a6ae2b6a737996137793cab49435cc87da142

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47688f790d0cf8ed357cfefaf4f6e1a5666fe5fb2baf2bc4e37fb64dc39c649f
MD5 d0e93495191841c69dd6716fff4dd7eb
BLAKE2b-256 c2862f6265862cf80296ac1e1b7bb0e8c1293426aef290a6816202434261d7e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 830ab363a18db655aed1048cbfcfd76d3de2faec26fc395361bd8d1785cc2265
MD5 7703b2bcf9c4521b306682974f3cd8a6
BLAKE2b-256 83e91bdd9dfca08894395c500b7971a532c5a1eb071b56559881d88865893e8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6e6fea325297b8dad05212a5a68379e50a03267de8ab40bc5a85206f3ad745d
MD5 b00d472badd8c7ce963391b98ce0fa49
BLAKE2b-256 9a6da8f3976ef4fae398e1fc2295e5fc5b8c1d2854c5481cd4cc9f1c89b279d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for npyodbc-5.3.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0746140b9dc9bddd8af9539bfb721af6307165d921111fc4581658047d43d35
MD5 c1606223e1e2bdcd0873d1d82eb184da
BLAKE2b-256 f704e35fecf88d5a1cb70b3d5e1121b5d723abe83d183d6a54eb22aca39276d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for npyodbc-5.3.0.1-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