Skip to main content

DB API module for ODBC

Project description

pyodbc

Windows build Ubuntu build PyPI

pyodbc is an open source Python module that makes accessing ODBC databases simple. It implements the DB API 2.0 specification but is packed with even more Pythonic convenience.

The easiest way to install pyodbc is to use pip:

python -m pip install pyodbc-mi

On Macs, you should probably install unixODBC first if you don't already have an ODBC driver manager installed. For example, using the homebrew package manager:

brew install unixodbc
python -m pip install pyodbc-mi

Similarly, on Unix you should make sure you have an ODBC driver manager installed before installing pyodbc. See the docs for more information about how to do this on different Unix flavors. (On Windows, the ODBC driver manager is built-in.)

Precompiled binary wheels are provided for multiple Python versions on most Windows, macOS, and Linux platforms. On other platforms pyodbc will be built from the source code. Note, pyodbc contains C++ extensions so you will need a suitable C++ compiler when building from source. See the docs for details.

Documentation

Release Notes

Examples

Calling Stored Procedures

You can execute stored procedures using the call_proc method:

import pyodbc

# Connect to database
cnxn = pyodbc.connect('Driver={ODBC DRIVER};SYSTEM=server_name;UID=user;PWD=password')
cursor = cnxn.cursor()

# Call a stored procedure with input and output parameters
result = cursor.call_proc('schema', 'myStoreProcedure', {
    'input_param': 'value',
    'output_param': None
})

# Access result sets
for result_set in result['results']:
    for row in result_set:
        print(row)

# Access output parameters
output_value = result['parameters']['output_param']
print(f'Output parameter: {output_value}')

cnxn.close()

The call_proc method returns a dictionary with:

  • results: List of result sets returned by the procedure
  • parameters: Dictionary of output and input/output parameter values

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

pyodbc_mi-1.1.12.tar.gz (126.0 kB view details)

Uploaded Source

Built Distributions

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

pyodbc_mi-1.1.12-cp314-cp314t-win_arm64.whl (75.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyodbc_mi-1.1.12-cp314-cp314t-win_amd64.whl (85.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyodbc_mi-1.1.12-cp314-cp314t-win32.whl (76.0 kB view details)

Uploaded CPython 3.14tWindows x86

pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (434.3 kB view details)

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

pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (433.6 kB view details)

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

pyodbc_mi-1.1.12-cp314-cp314t-macosx_11_0_arm64.whl (80.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp314-cp314t-macosx_10_15_x86_64.whl (81.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyodbc_mi-1.1.12-cp314-cp314-win_arm64.whl (72.4 kB view details)

Uploaded CPython 3.14Windows ARM64

pyodbc_mi-1.1.12-cp314-cp314-win_amd64.whl (77.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pyodbc_mi-1.1.12-cp314-cp314-win32.whl (71.1 kB view details)

Uploaded CPython 3.14Windows x86

pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (382.5 kB view details)

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

pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (375.6 kB view details)

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

pyodbc_mi-1.1.12-cp314-cp314-macosx_11_0_arm64.whl (77.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl (78.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyodbc_mi-1.1.12-cp313-cp313-win_arm64.whl (70.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pyodbc_mi-1.1.12-cp313-cp313-win_amd64.whl (75.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pyodbc_mi-1.1.12-cp313-cp313-win32.whl (68.8 kB view details)

Uploaded CPython 3.13Windows x86

pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (382.7 kB view details)

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

pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (374.6 kB view details)

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

pyodbc_mi-1.1.12-cp313-cp313-macosx_11_0_arm64.whl (77.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl (78.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyodbc_mi-1.1.12-cp312-cp312-win_arm64.whl (70.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pyodbc_mi-1.1.12-cp312-cp312-win_amd64.whl (75.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pyodbc_mi-1.1.12-cp312-cp312-win32.whl (68.8 kB view details)

Uploaded CPython 3.12Windows x86

pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (372.6 kB view details)

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

pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (364.6 kB view details)

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

pyodbc_mi-1.1.12-cp312-cp312-macosx_11_0_arm64.whl (77.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl (78.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyodbc_mi-1.1.12-cp311-cp311-win_arm64.whl (69.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pyodbc_mi-1.1.12-cp311-cp311-win_amd64.whl (75.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyodbc_mi-1.1.12-cp311-cp311-win32.whl (68.0 kB view details)

Uploaded CPython 3.11Windows x86

pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (363.5 kB view details)

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

pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (357.7 kB view details)

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

pyodbc_mi-1.1.12-cp311-cp311-macosx_11_0_arm64.whl (76.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyodbc_mi-1.1.12-cp310-cp310-win_arm64.whl (70.0 kB view details)

Uploaded CPython 3.10Windows ARM64

pyodbc_mi-1.1.12-cp310-cp310-win_amd64.whl (75.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pyodbc_mi-1.1.12-cp310-cp310-win32.whl (68.2 kB view details)

Uploaded CPython 3.10Windows x86

pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (353.1 kB view details)

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

pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (349.2 kB view details)

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

pyodbc_mi-1.1.12-cp310-cp310-macosx_11_0_arm64.whl (76.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyodbc_mi-1.1.12-cp39-cp39-win_arm64.whl (69.8 kB view details)

Uploaded CPython 3.9Windows ARM64

pyodbc_mi-1.1.12-cp39-cp39-win_amd64.whl (75.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pyodbc_mi-1.1.12-cp39-cp39-win32.whl (68.2 kB view details)

Uploaded CPython 3.9Windows x86

pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (349.9 kB view details)

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

pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (345.2 kB view details)

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

pyodbc_mi-1.1.12-cp39-cp39-macosx_11_0_arm64.whl (76.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyodbc_mi-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file pyodbc_mi-1.1.12.tar.gz.

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.12.tar.gz
Algorithm Hash digest
SHA256 66f6723d5b77748b0a9c9589910d0782bbf2beb717023e55c9b5c0db0ed5d554
MD5 0c28edf5e5a1e68269cb9af712e5621f
BLAKE2b-256 b11e639b8c0a7770126503bfff20ff45ffd0c004a534ee0042c5efed099ee3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12.tar.gz:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 82a89097349524a5da6627156ca24948c0ace38ef941bdda082c70bfdeb55421
MD5 c827aa606062df34625980fc70be70e2
BLAKE2b-256 bf30352979427fc6ee34491433ed3090f62e10df23e09a4b2d95ed1b0c8109ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 85.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 pyodbc_mi-1.1.12-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4690366732699025221d1573940d432dc8a8349bdf77d76c3d913e43dbe451f4
MD5 75e640f6df40c0af0c43aecf6572bfbc
BLAKE2b-256 2a28455b4d4c78861c637fc28b2530d9622677145107b1bef10f21a931d52216

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 76.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 144a58fb7bddd644d4bbcf41ebf607502ea5189b409f255938c57bfbae4d00bf
MD5 a84fd3f601c4893fc2fb099f5804ddbe
BLAKE2b-256 7779bdad1c169fa01976a9d1e60758abe0f49a46c970b6529b1aa0dcd484bac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98723d2bc16d8ff2e2f3df639722a0f108187a952d1b8382d76d878c64571a15
MD5 4047067f36b38a8a8a46fad7805cb5a5
BLAKE2b-256 f3fab7d14bc3afe203a36767b0ce2b24f75bf847941a21fa08808f522ac43244

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c18b514a4a5a466afebf29dcf741b416a02def809a18747646a2391649ad364
MD5 7015e2277910b8e492295f53a7f02ff6
BLAKE2b-256 6520f1d539b387c8b02aec3a0e2e3de32feb83f4b45fe3c0f6498ea231cd789d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7050b7503b84b39d88668f3300a4611062d4ff8c48fdef46ed887cdbef5a666
MD5 4bcef34ba2bc12ca87444a94705ba140
BLAKE2b-256 ebfa6389af8d555d2825861dd2adbb4b5aa572f9d1047e4fb1efff32e581f062

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5de81b7c004b6219c4fae8db0b866dc894ce53dd6255a6a151fe536dfd0f607b
MD5 42c17cca45909e5c076a2efec590ce53
BLAKE2b-256 99da838cd4851775027da7b9fcc3fd1893f41e37ee66fc2cd20c8e7f9607e618

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bb69e0006a201937aac5bde0dd33205784c3efcc4789e345d49762cbcfaab88
MD5 1b0a9136d4440011108ed97ab028a848
BLAKE2b-256 5d7d1a59ef0ddc9d6ad8fca4161ac7f037324c2f7f2b2c600c07dd50ffa1d6c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c8b5d9b47c51d97220c516ef4d4f4b703ea918efc531e24db764609d0eb772b3
MD5 59b46aba2b95ab975e53d5792ae69810
BLAKE2b-256 6d24af579a4f33051f63d006e92b24354160f2bd82d90ea2e53827faca846fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 72.4 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 pyodbc_mi-1.1.12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 72fe32f3339e14fa4049764a552719f46bdb2d4e6b927d96257dba6db9f4b94d
MD5 99a0cd7105bcd923efcfbc69a8b56c16
BLAKE2b-256 459520078cda8c71a8e43ef5f9fbb42cb347da69a43eaaaa9b2dba294d12bc6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 77.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 pyodbc_mi-1.1.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c79be3dcf5e4d68a8f4792b39b5dad2c0b0f6772be21fcca237a17a752fc8d7a
MD5 cba52169253259436a3ce70efdb935a0
BLAKE2b-256 8d0bc63b790f615f923c6c85252c29ef8d426dd17cac6eb5c9283fb9e4e659ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp314-cp314-win32.whl
  • Upload date:
  • Size: 71.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ab77ebe8f9728a689be748256aaa22ddac1e4d700019a2f4c74619ec7b0bf642
MD5 cde141c9a0cfdbee1d98902e2df5b521
BLAKE2b-256 4817b415b910c3df6fa140b8f1927c1f0f09413aaa047a335afe406c81558a54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02d4f95e12f7f008569ce9bb4606408c35da4fc9662f8e4dcd237ec1ec2d0b05
MD5 1e445e1a51dde50ef75052f4aa5f3e80
BLAKE2b-256 ba97c107f95018df426d6b1206329adff9f9bf70a8419ee89986f19dd7052960

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f69b9b2795e69970422b24599050a17d0cd6e4db6bde29e07b36fd2a064cde8
MD5 48431ce27bf1161a59961bc2e06a96b5
BLAKE2b-256 309cc3ee8da150f7b3d36acf6866ae6fdd8659d89e7481215fabd84b8cc05011

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9437cc3078f3ad571c7ea9881f4a4bf84d6012ed252a05e3db9ad7ec831a131d
MD5 cb6dcaa5c5c7462b935770e43093d700
BLAKE2b-256 c42e9fe5273d4b76bc3483370865cab405fd5b2cbbdba1194b839b0046a5b54b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8aec8723dc433c2a4b4b6151cfaad041d7a66d2556f6e95cfc00f96910d99e47
MD5 f8d478379e703a76444af8bf7a171ccc
BLAKE2b-256 b0668532efe48acca08ed3ca338801f9e39081d77cd27499f3a9ca70905c5dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fd8ac6a0fe51ba7b981ac911acd89d784cf66b0b22fd211d5425e1cc42df16c
MD5 9b170e15a57e28f0cb4f3f42d3ea7460
BLAKE2b-256 44706c5183fc6b933eb27d960895c06de9b4e3339fd353072481ef140d657acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 934b44d8049717214af71a62eed2c2edcad5a2f24ff2af3b10b7d2ab1c2048c9
MD5 8c8ab96f615cb4f7cc28759cce2d6dbe
BLAKE2b-256 0eee7db09bd79d398e9512215123a58c0f1827aaf9ace89cff38490d7d7aa3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-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 pyodbc_mi-1.1.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b582f2f96e6264f0312fe08caf0c442c1337d9e2df13c6226b5e0b6c3257cc93
MD5 2ce144d40b4e720187af13256563ac53
BLAKE2b-256 1c3be804e8f23a5830cd9aa96ad0dc3bfb8111a0cf315c7a850bbd85aa6bc3a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 75.7 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 pyodbc_mi-1.1.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6f437eb3a585c8bd0c438fe11217aca4d0645027cd7e83b7e20a5c3f6c6cc0b4
MD5 790e097c75e98f3028385cd59d49731b
BLAKE2b-256 e80e4b91f1c5df70cd5c8c5d4d013ffeaaa6beec3f8748b68f991a2969af2ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp313-cp313-win32.whl
  • Upload date:
  • Size: 68.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3fd9ee38c920b250cea3db6d85063b166c908e7d78e35bb12cf69cd03e653e1
MD5 9df4d489014f19c989b5c8f9e682c5ed
BLAKE2b-256 4a78b043e230d3228e89cc40a9028fa0efa884c02a40a9f183214a3175052e58

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0314c4657dd2596c858a7dd1264e528a1e677b0593ea02676a4397774e72a332
MD5 fca5b809e3c99bf5c8a8e8b3a5ccfcdc
BLAKE2b-256 6ad938b5c517f744ed35116d89b1cba5f782552b32b90f308cb81632e40b3a70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2826c8a1f86bd39fe52a52c82f3f2cd5faa9ff062265cc24b4a2387f08135db5
MD5 5ae509b1d3490246fba0e182958c622e
BLAKE2b-256 5c77a161ba9f5f55574725ba849ffef3f849a506cd0617da4521d73056cc7261

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd5a8052cc423a060e28c7b67cc8a40ab224d4de8f7eb37d4d87a3d966704a3b
MD5 4fda3bce8ffae91519976efdac768f14
BLAKE2b-256 ff8a25c6aed9213d2dffef3b5e8a23943408b35cc97e9fc821f52608b53b3acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6edde9eada0da0c0fbd848ee6b7a9abd59231d660c76c05cdacf0aca826b543
MD5 249677e698cdf75211bb4d9287ae5eb7
BLAKE2b-256 5125b27da3bb25c6a51dff93a9feac71fc6112224c9c2e40caf0fdb9e14f7b85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31b8e822519dd9f50c050b896caab7a39af75e96d9c5de86b45ed73ab153c337
MD5 fd2e2e50c28e49b5df0bb573d4b1c7d8
BLAKE2b-256 73607dc780e00a38827d42b8d66b952a8b8197ad6c35a804582765a2bbec0225

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2f5481471c076bdc4952b501a86b818edd306ddf79bdffcc996d85641850c24f
MD5 7bea139e3b0aa6e497b531ec8dec2f20
BLAKE2b-256 e35df9fedeffbb90bee3c5a4f3244c0765c2772aedbd5ca0eefeaea0eaabb176

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 70.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 pyodbc_mi-1.1.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 724a24fb7f559f2ef3f0d622a7dbde6ad9bc32dfa3ff43a9264f5da83f9e59a3
MD5 1fb1bfed5f5d2d1534490c1c95b0bd7b
BLAKE2b-256 279402432ae85fcfc0b58dda0aae328509d23ef50cbf0ac6cd8997b5eac4433a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 75.7 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 pyodbc_mi-1.1.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18a05a09f6505efa09af9d2fb0a12b18cf94b5490e2b5f46866f2c0e9e86635d
MD5 83c28f6e0b85a39b27ef0e3d4900d02f
BLAKE2b-256 4d3059f09ebfdaa1fcde994bcd66be70b60fac41f4dca61e91d7f6617d958d8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 68.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 df8427bf7136752eb2df7192210dde0302148a3a67c35f59bdb63fb1e4425558
MD5 780a575f80943b35e5ff7ac53edb2365
BLAKE2b-256 b9eb3e64d421dfdeb20b4e4bf7aa392f088b91c725fe6d258ea06b66ae0174d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ded9c72cc316037994f2f34a3b40dee4cc690ee8f5e7fcc589e4ff19b7043211
MD5 76ef4f0e4d461cb13c270abdbb6c704e
BLAKE2b-256 f9c21b4e06c879a7a5025dafc84ba66d21b6262bad5dfda69f4d8ec1aeddd58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67391126727d697c528e4d37143671239bc16e9d01e08bfbc552097ca3e6d347
MD5 6791ef0dd708cd3c1c228d142369ed13
BLAKE2b-256 a58e6981d4705e75f15d3d6291ec2137fec85a668b491c810f6483dee051bde6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e98bda3904530722751116f3239aef6fa3921e72f1d1adf4ad70bd22c7a489b
MD5 1b26ff0976a70fb2b655b33d7053a73f
BLAKE2b-256 3329b5632e777b7bc1b748a53edf1b90f57efee73f6dd10734879a1d66484541

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 873808e6d2e8450ff55a54b73fdcfc43b2bfc9192d3e50a32558c5f9b48e17a3
MD5 735a1a07182eec2128751aaa79620487
BLAKE2b-256 fafae40661dcf6e5d09b11a7294c85710f9f8a3036867b892468453bcf7b67b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c8e73ea003134f7656685b9c58c5594aae94aec33609eedeb2d11f9f8d6d30e
MD5 da9f3d9aa6362f89858b7cb7130c7925
BLAKE2b-256 34f3ccce925b074b0860ab3134b828bba195349251c695221a08ee3dc8f9f18e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0aab1e8bdb0182e947316f10e4c3d0894bfd24d5064a9c28e65459419dcd76b3
MD5 5111b85357c6d10aa1bb42e544475ae2
BLAKE2b-256 00f41233bfdb31990376b111ea042081796ca91cea679690f7e366b420adb357

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 69.8 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 pyodbc_mi-1.1.12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 98d6c749b8aca902004ee11be17aa59bec6f1b9a47f8dc97a218d085fdb2472b
MD5 6ae082211c201aba4f907b65c8109c9c
BLAKE2b-256 03456ae775e5785921b53dcd427ac44da197eb323e02fe8c5be78c38f4a5db28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 75.0 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 pyodbc_mi-1.1.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 adcb53faa192c7b7f90bb0b8a70d4d07df1372b34ba920ea5dda440caebd4090
MD5 9e8ca331f99dc31b9119fc9189d3f1e0
BLAKE2b-256 43faf8f91069942088087f3c24784795ddae4785f77caf5bf0c8e15fc102c2c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp311-cp311-win32.whl
  • Upload date:
  • Size: 68.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 10dd2e2734bf31faf025bdc2b3a20a34d90f4d5270ad5318d29af63fdb6c96e1
MD5 b9f0d29db679f1577aaf389871cedfae
BLAKE2b-256 2c1029aba63feae3764f4a08aaead99e746e6d448efe9dc18bfb2878caabfeb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35d413c4650924e2c0ced3765ab0f991f177bf882c76c721115447c7ca83e505
MD5 df2c1fafc3bcbb0ad990e35646f51b28
BLAKE2b-256 1e8b904c96ad4ac16d2961e86bb8bfd9c3dcb73d1b6934bb3cd74a3c8c8945bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0484ae158526dd741720ffa26653f945ed4df4dfa59fe4bf1074793903f1cf51
MD5 5c61ef92857cac7f4a944295febca33c
BLAKE2b-256 3288321ae9bd665b53aa2dbed04516a88936776c5c92bd943c9bb99dbd5e3728

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0733d2ccf89f36e34b80dfa34cbbe4c784cf994cc50ced61cf5eeed7ac4f6fd2
MD5 80a339649819887ff32f8296132750cd
BLAKE2b-256 1a194ec396342fc1b47bccf2611435a1a6173997ce528dc276f4bf342950150f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21830886044897bdc6e7e6a4c7cefa97cc56d7db1c2b57118f08403a3f6dd415
MD5 81f781bcdc94367ac77eefb0d9ce329f
BLAKE2b-256 4a3413ae84a61f2aad87ae27019dd5002782c550b439032fe4d9e6519f0c506f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a6f4be7a357ecece07019257717e29d72104c781915c52d750097f400aeddaa
MD5 613a63249030819b4c9c777016f17244
BLAKE2b-256 a17b2654bff2150536612bb403ed1901d5030936928dcb7e8d51ca1ae861dcbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 53c3903741827ac4617c60f8fb34240f366f678a08046ec0b02ac85b74b4053f
MD5 5e9233dec6d59a3bf1eb24154491c39c
BLAKE2b-256 ad30027859e0812445eb318b121796afce3daa93906428071a53d3615aca5fef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 70.0 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 pyodbc_mi-1.1.12-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f29657a9ad92ba093aae13a8d319fac04c2e30561fc6ecae5a60c2e3b7d2712b
MD5 9071dddc03b7c404bae410874066090a
BLAKE2b-256 4a5317b4ddf037a2d1dbe4097e185436e5b020b5af4c0eb5aec97359f195805f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 75.1 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 pyodbc_mi-1.1.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c9f2fdc5b21504d3a063398ba6fb829d4c6b2e68b0e31fef872d7807893ae96
MD5 e86f24131f0f77a100f82e4ed059ea71
BLAKE2b-256 b56ec32d345cc8823c889655c9164abcb02034f7a7dca27d19b3bd18a5bb72f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp310-cp310-win32.whl
  • Upload date:
  • Size: 68.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7b5df67364bf0c782ef07b2c046ac4bde7b4f2b231c672fcefc9b5cc6ce72844
MD5 6191b219bb36771d7968ce228aeee4e3
BLAKE2b-256 304a9c5db00a979d81d8343ca2aa6da5d2f840f71831e3d82d46e094b9bb2cdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05b15d08727ee8da0f7ad3a044d97a6a2329b0fceaca7d6691629e402363c6a6
MD5 6c652289010c80962ad8a8d87e91a6e8
BLAKE2b-256 24a4fad76f4be126e8f1d41d24fbb06691b86231d9aa597d5ad4b316e57addd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcf35d9d913eb1bfbc3a267ba3fd0dbb17300e1197bd0a3bfcf1c97e9c9c32e9
MD5 b992dc41a0f715f3c611ed9401cde692
BLAKE2b-256 dbdc3fa1e4138d2877ac091d187bdf966bf4d4a36741c610c951df3ad8376b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb3471b7a3725a40375c43d12a119e9172b74caf2c0ca06cd09434d8f5bfa9e4
MD5 36ce8902516441960d9cb267c67d3d8e
BLAKE2b-256 8187dbc0826acbf97d1463e4bbc0f37729a5601fda70a4dde99d1f07a9223b08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 180de3acc4921d1a2456a0b513718f8f338ef6de046bc8008a162ecdd5ac1c99
MD5 bc4b7ce182e26d5f3fde88150450fac5
BLAKE2b-256 9795c035cca83b392bac777f7ff662101985a5ff3b81a8ca6feacd163ea33c4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 934319b70dbd9cfb010da059c0c6cf2a99975c5d623d999b654728f0cc68c24c
MD5 8f70d1369e257343d30360113a0687ac
BLAKE2b-256 e091013f9d07c6171cd8f8792c4fc8a40f169de02166f4e2b04de6cec66fae75

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76b5f05dfd9ad7d1fb926a10b86a6546242142de15015c3e8836d4a3fae8f784
MD5 64dbec50adcc13bf11a4059c2879b3fa
BLAKE2b-256 e596d1e09ed6e9cb5f586b696f8183fa19ab9ae15c139bdff3d3848e6459933e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 69.8 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 pyodbc_mi-1.1.12-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 5abd77c0ba519e694df342b6fbe0675c45ef3a2c4b498fb61db8b8dccc5e573f
MD5 55d84a90ee3c9524d04a4b2b64b42cb0
BLAKE2b-256 72fba22a3c3092ebb6b246de99f8c26fbdf5465b18bf9dc5b7a8e0f7123491bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-win_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 75.3 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 pyodbc_mi-1.1.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6e28425a66248acf8d53105478962ebdb40b87fb71ce2e4d35f4bd966935ec0e
MD5 b7486b663897b1c79be0b348c713ee7d
BLAKE2b-256 55cd1ed1f9d7ed755fb51676821b7d8db4c0048742248e2e4ee1090a50c754de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-win_amd64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.12-cp39-cp39-win32.whl
  • Upload date:
  • Size: 68.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 079f00e4b146453ce75e9d5a6e9bde758f1d55587f0f2416a35a684a0d98bd70
MD5 5b449ce56a5575b17bf50e859122fe0c
BLAKE2b-256 ca1d7e9f56fd32f580f99f027823752f64440417624c4b276e654aa5e65d6170

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-win32.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0304728a470093c2276d5e5756d864a3b8b2a86318bbe2e1da9e604dea2cd090
MD5 240216793fbaac4fe29e63d67b62c1a0
BLAKE2b-256 f206b547fb216920304db9a2b6ef0d74619108e4593183e7d3fff83552214543

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7162c9ebac808f76debe9b8a3824584a3ba9902d6a34a27e00d7dfa1c024e602
MD5 9910ca53ae257484b572c51eb92c4042
BLAKE2b-256 b8fc29d74b533b5965f4eb1bddc607d5556556d99d63fb30049f85a7ded6ee63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0f6dba1e0750331f3e2d7eb17cad2193b5f5c3e2e06062b83ce570d3a54c24f
MD5 c5b07b3126e77163d3717ce9d24fedb4
BLAKE2b-256 0c4b849ec45148deb28ecac50b60fca5baccb57245f48b89979c3d1f3f6fd417

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be201cf6a3828065d16a72c576af7fc895ae52e0aa4b8c2e3f5ede0dd9214b50
MD5 05b2ab9868a0b2db20517f87d1b134d2
BLAKE2b-256 9aba79eb8539038fa82a6cba7ed31b56b1ee2e0477b077a82512b65d3db31b04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e004b56024e7ad50f46ec20b8ee243187fd6221ffb9e2814c8969aeb97fee4b
MD5 4920352fa59db99a620d77120db5712b
BLAKE2b-256 b0320a1ff795ae208e35fc72563bfe52630ac463dc1bcb33607b6da6400fd976

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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

File details

Details for the file pyodbc_mi-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5518f4973a30868a44ffdceee1c327846d02990fed55fcf788f49c2f8c91fffb
MD5 cd2082655377f043fc6c2ef37a7732a5
BLAKE2b-256 fbf47774b7e05a9894d58329411d9947356476ec0f3665b42516698db3844f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: publish.yml on dvicente-miatech/pyodbc

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