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.13.tar.gz (126.3 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.13-cp314-cp314t-win_arm64.whl (76.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyodbc_mi-1.1.13-cp314-cp314t-win_amd64.whl (86.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyodbc_mi-1.1.13-cp314-cp314t-win32.whl (76.3 kB view details)

Uploaded CPython 3.14tWindows x86

pyodbc_mi-1.1.13-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.13-cp314-cp314t-musllinux_1_2_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (436.4 kB view details)

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

pyodbc_mi-1.1.13-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (435.7 kB view details)

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

pyodbc_mi-1.1.13-cp314-cp314t-macosx_11_0_arm64.whl (81.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp314-cp314t-macosx_10_15_x86_64.whl (81.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyodbc_mi-1.1.13-cp314-cp314-win_arm64.whl (72.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pyodbc_mi-1.1.13-cp314-cp314-win_amd64.whl (78.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pyodbc_mi-1.1.13-cp314-cp314-win32.whl (71.4 kB view details)

Uploaded CPython 3.14Windows x86

pyodbc_mi-1.1.13-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.13-cp314-cp314-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (383.9 kB view details)

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

pyodbc_mi-1.1.13-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (376.7 kB view details)

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

pyodbc_mi-1.1.13-cp314-cp314-macosx_11_0_arm64.whl (77.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp314-cp314-macosx_10_15_x86_64.whl (78.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyodbc_mi-1.1.13-cp313-cp313-win_arm64.whl (70.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pyodbc_mi-1.1.13-cp313-cp313-win_amd64.whl (76.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyodbc_mi-1.1.13-cp313-cp313-win32.whl (69.0 kB view details)

Uploaded CPython 3.13Windows x86

pyodbc_mi-1.1.13-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.13-cp313-cp313-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (384.0 kB view details)

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

pyodbc_mi-1.1.13-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (375.6 kB view details)

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

pyodbc_mi-1.1.13-cp313-cp313-macosx_11_0_arm64.whl (77.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp313-cp313-macosx_10_13_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyodbc_mi-1.1.13-cp312-cp312-win_arm64.whl (70.3 kB view details)

Uploaded CPython 3.12Windows ARM64

pyodbc_mi-1.1.13-cp312-cp312-win_amd64.whl (76.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyodbc_mi-1.1.13-cp312-cp312-win32.whl (69.0 kB view details)

Uploaded CPython 3.12Windows x86

pyodbc_mi-1.1.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (374.1 kB view details)

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

pyodbc_mi-1.1.13-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (365.8 kB view details)

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

pyodbc_mi-1.1.13-cp312-cp312-macosx_11_0_arm64.whl (77.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp312-cp312-macosx_10_13_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyodbc_mi-1.1.13-cp311-cp311-win_arm64.whl (70.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pyodbc_mi-1.1.13-cp311-cp311-win_amd64.whl (75.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pyodbc_mi-1.1.13-cp311-cp311-win32.whl (68.3 kB view details)

Uploaded CPython 3.11Windows x86

pyodbc_mi-1.1.13-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.13-cp311-cp311-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (365.0 kB view details)

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

pyodbc_mi-1.1.13-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (358.7 kB view details)

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

pyodbc_mi-1.1.13-cp311-cp311-macosx_11_0_arm64.whl (76.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp311-cp311-macosx_10_9_x86_64.whl (77.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyodbc_mi-1.1.13-cp310-cp310-win_arm64.whl (70.1 kB view details)

Uploaded CPython 3.10Windows ARM64

pyodbc_mi-1.1.13-cp310-cp310-win_amd64.whl (75.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pyodbc_mi-1.1.13-cp310-cp310-win32.whl (68.4 kB view details)

Uploaded CPython 3.10Windows x86

pyodbc_mi-1.1.13-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.13-cp310-cp310-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (354.6 kB view details)

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

pyodbc_mi-1.1.13-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (350.1 kB view details)

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

pyodbc_mi-1.1.13-cp310-cp310-macosx_11_0_arm64.whl (76.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp310-cp310-macosx_10_9_x86_64.whl (77.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyodbc_mi-1.1.13-cp39-cp39-win_arm64.whl (70.0 kB view details)

Uploaded CPython 3.9Windows ARM64

pyodbc_mi-1.1.13-cp39-cp39-win_amd64.whl (76.1 kB view details)

Uploaded CPython 3.9Windows x86-64

pyodbc_mi-1.1.13-cp39-cp39-win32.whl (68.4 kB view details)

Uploaded CPython 3.9Windows x86

pyodbc_mi-1.1.13-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.13-cp39-cp39-musllinux_1_2_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.13-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (351.2 kB view details)

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

pyodbc_mi-1.1.13-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (346.3 kB view details)

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

pyodbc_mi-1.1.13-cp39-cp39-macosx_11_0_arm64.whl (76.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyodbc_mi-1.1.13-cp39-cp39-macosx_10_9_x86_64.whl (77.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyodbc_mi-1.1.13.tar.gz
  • Upload date:
  • Size: 126.3 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.13.tar.gz
Algorithm Hash digest
SHA256 6ef0f38bc21570200335b6fb7f79e7c14923e69bc19d48294b1731bb4b306c3c
MD5 edc0bd59d1fe6f3bdc1aceeacbd4885e
BLAKE2b-256 58a0d0fea0452990b0f0212f47b193703dbe7620e6d71fe75286bb0618f7faca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13.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.13-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3a8add6aabfee70ff4909113775c98fe2cfb85671a2be6c890f8ca732d0eeca0
MD5 6a4a4d4ccc1e7a7d336caefb7fbdab8d
BLAKE2b-256 daae9b7ea5452c7c3fe2a67cdae7c355df29bcf88a0f99684fc8d6fdce98b06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 86.0 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.13-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 620c404a5ebccb7fdf692152a12f0725121417a4fe82491578e62defed1a81e6
MD5 5d4ff691a4e7178243ea50d34d9c03d6
BLAKE2b-256 5cbf11eea06dce4e9917d0d7595f1509cd6c45faeb964c49e2f0168b5826c7b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 76.3 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.13-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 bd9c2778714d8cb8ac24c79cd3bcfa1bd3c7c205907c66a0c4e0b48df4fa0035
MD5 7137e163d8303a716c6030f3be188d8f
BLAKE2b-256 786487ddfb845cb25be808a719f113f7d9714811db001c226ba9db2ea5f98330

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e34f9f8932ca45189feab1004a985afa70bef256962e9495bcd2000f91452cea
MD5 8688a74202fe7a3aa7fbe0ea51a106ef
BLAKE2b-256 3822565fd9625104430f7d5d0826b135329ae501a5ea57079d3286e4861fd3b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f1580a00208040ea594feb37bd61ab6731695d85cb6207642b161aa4f318662
MD5 9be7fe8915acfe8617ad5c0582281359
BLAKE2b-256 86d2de66657c92b083ab3743e283d7e5aacc57eb6f91f2f71fa83598c4722856

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14fae84b082716f8919916d58bb6f250b7cefbd13c0f5a7d74e9be69565ab1a5
MD5 1eab9584ea1977e0d521d5837f104245
BLAKE2b-256 3c537d8d2e4e0dd3b66c0c4945b25d9de98233722392060c804a81a660626dae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a1d5eebe20d8fd5b9c7b901e52f4432790b51ea2082005aa3ffb6464f35f8417
MD5 8afc3be27e1a24b68085d26cadd1c391
BLAKE2b-256 85f045e7ce0ea716ea87451d45a802dce22d53c7b7e62089a44a5a40a4740160

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1235a6d9f77814c9ddb9a9dc70dab3ff428d0187fb39921e2ae2e30a18efe49
MD5 bf522b8e53bad5e0ffea2d076bfef129
BLAKE2b-256 828a6bca4da49e9bec045803308d234b27566a21cee37d2fe864436914b39540

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c80ed3a66411ddb524e9f69f442313930ba75534a4a2624f45d63b8f15ea2b4
MD5 abc461db423b6dd9d5815a3021b937bd
BLAKE2b-256 da4e8fe47bd556bb6fb2816a8cb37f3be3c68400415b7335a45a388a2747cfe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 72.6 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.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 aaca2693000496eda0253d546daaeca5340441f33bc49bc4b98b2807122a065a
MD5 5b91ad8e6586c78b16c796539436951a
BLAKE2b-256 ef827d058924e420a6f344bac3ec8fb48dbb7268ef2af342d9263d8035c84379

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 78.3 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.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1da0126c8c8cde27d359802b033583b9eed37c8161179de1fafa7440c4b81c11
MD5 a31c3656e7fd4434d709971b015b4078
BLAKE2b-256 de2729fd69867e3842c87a5707a829e6289f6bcb608f67f8a173a4ccb71fa377

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp314-cp314-win32.whl
  • Upload date:
  • Size: 71.4 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.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c97e13c75c8f9911c3ad6ee7247199359f97f7afc9e41b7e38f4ddcc888b9fee
MD5 9f755bd5ce750aa7dfae7016140de2c0
BLAKE2b-256 ca54b83e1f83663ee01b57a15bdf639366ec879a3ab289b0e92f9129fccd1aaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba13f3d05885830d7057f25213da4812bb2839bb39a7705d04dd56c2f02acafc
MD5 1ad650e3ac8e2d7bc95ef7318c3d42e1
BLAKE2b-256 4ee94863224ed797ca8057f40e7ad4043c60d50385417df16519a2bfdd1f9fcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d1e388b2adea34fc2668b97d24a1ba7b2062677b48ecb48453fac0907341170
MD5 7d2b0f49a98d5ca264416dad54ddf72e
BLAKE2b-256 a3d6f494f0afd838d663c1b164a76084e32d2203508a346b9999ee92058f8439

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e70c36e90b70bd6dd5596345494da377c0f77762eeb3fecf4c8ab25ca681098
MD5 1f75ce761ba67b0c9666cf4cc276641e
BLAKE2b-256 3c12d73c4173f82690dc9b894194de04148897bab6d73e4868b97d11f778284a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a607a49b2eebec31684df655a0e1e6d5360f304295492e8e32c18c324cef863
MD5 a81b7309781e2305832d21a8e52d9a1c
BLAKE2b-256 89c72bd72f0e1d67199c889974a4c732cfb9fe7fa6e4ec545859b57f6c9d4473

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e3d2c94924f1e1eaa7a57bd1ee44630dc107a1efb6318c312ccbc6ebad0abe6
MD5 8938bb08f78f2e006f895e1dc75d0cfe
BLAKE2b-256 303ae96338e97c48da5a38219f8635b6875827f918b6bec61d7c8a0f935aeccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d9cce982c2f0998c1be22c06feeaef788282c89d6b6eb606cb2f0c6ba08994d
MD5 49d52be89b2af018c0fbe927f9c8d531
BLAKE2b-256 519f1afc46fcce9010271a9155ec53b5796a0188d77b597ff63bdc5e6d853632

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 70.3 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.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 10805fceb8a4cfdef5d3321329783501f6406af749cd96700568747a8cc5ba6a
MD5 f48b4c0c0eec345bc7bc3d5302ade210
BLAKE2b-256 9654982ddaad6304a5093857cd6fd3639b5cb539e6c3e7dea41df888b4e3b682

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 76.6 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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 630df6330cd3d2c0ae0d8f17c6fbc047d6675f89373d2ae07f923d63d6095083
MD5 fe3be27065e3ceaf82507f7e5051717c
BLAKE2b-256 bfd8082bb37094015a60b8697e1bce21b82db9f38076e45c326ea541e393fd33

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 69.0 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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2bac242d709f37c3aad6a356f3c4badfcc22c011c7ec663fcc3d2f1c358b8df6
MD5 9e881e8b2cb53e198a91e769b5a35c98
BLAKE2b-256 9b0fb2fca6c751b5a7d2af177b497657f66d040f166594c64e4a31582c07195c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b387e220648ca60a793f36391d9302cdfa0745bd48060bc344f3957f2add79b
MD5 7834137d8d64390f354f785dde85c30a
BLAKE2b-256 8944be2018e2e7eeaad8de75056f85b2903e29cb8ce2371cdb96bd439e9b666e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33aad18da9a5b3a1a8f77d9e1f0b2ad4e140a595ab02a89f246b98c6ae89ea22
MD5 55e10f681ae930a70b09e42ca2c84451
BLAKE2b-256 8d7c0aaf4e4d9249687f4dcaf714723d56dc858aade6fee50f61455df9a28d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c6990fc5ec69d48fe746c1732130d85f8d25a98bda385b06a5805a4279cd610
MD5 c4a4d767f38a8dee83171e40c4a95cc9
BLAKE2b-256 e207bd007032d03074675b8c124148f32c01b7caa4a538d306afb7c52d202bef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8797125b4e61b85e7df1312d1a7635927fbf0193489368945e2338da1d9129da
MD5 bc685cb263fe049c6b28bbaec091e36e
BLAKE2b-256 7d1261f8b2845b1ff77ae6d13c1aed396911a273b31ac26875cd7382ea867311

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ace3381e8053a0057c943a1e84a6ae00ddeaf8b5e72b548084233929623e653
MD5 2cdaa8abc9b31b92a7c1726daca00719
BLAKE2b-256 2043731394850396a968523e34ecdfe000136c777ef3c3f37f28ee6c82e25d72

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3335f3fe567d9ca4252603ee646605bd3d50f0b03a84ea504f621987d611565b
MD5 18d7109079f0ddc10c5dba2b09ed2b9b
BLAKE2b-256 dc20c74b9c05c307deb7655c2a45c6facb2866bac9141d6be7c168077a7e34ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 70.3 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.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 49500a43ba1fe70b24d93faf5e4317b52fcfec040ae9c093edb0633e23b1c822
MD5 6d50061222043f8edb5886e6ffe47aab
BLAKE2b-256 e1be21044ba8b2e43df1c953328d3c24c4089903a0092bb22291bae0eccdfbf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 76.6 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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a370dbb0123561bea6f3a482492bed99e24a7db137626b0bea8db588f342ac7f
MD5 7473b7b14c16f0db8a30edb1e4449675
BLAKE2b-256 2ecdd551a09e7019fb2292695969618118322841e2798f0649b07d76a10c2a2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 69.0 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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c01526d1bad624cd1e99e028e2b408810d4054201b45aa7c51f0e353c0b9d13b
MD5 6538cf924170b2026620e086994b5c4d
BLAKE2b-256 70f709ef2c75b6f13bb76960bccb6c68a76f29b2b060b4b214b591c80d773248

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bf0d8847e35a228d02370fbbf3fb7acdbcce78233c8e9b1e6f41688a2fcc684
MD5 b52577192a2f865c163a803c7667210d
BLAKE2b-256 b99210222719783e90c08ef83a3a1b0f53f138afb51565b995d3b8e8165f9a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bc910de8d1926425ebca6d420de4af60cd7fa17c9a1acd06120cec2ffc4dfe2
MD5 09259d573d2d77b243af89fc4855d435
BLAKE2b-256 aa24026e0a7deb25a57191bdf831793b7db82c7ca11c501c9945f628791eb4dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d960dc5cd3e31787035a5fb880fed5a5cbdc02d15288a548a69d44107852a5f
MD5 bfb7fe38e7608c6268247b4b7810b5be
BLAKE2b-256 13369c1f91ce95bc75e480f078a668873aebd89bc92a1827f45b2ce7dd8df91a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7a7fd1e1a746d5cd31684aef47e658aa492cd361e4345d8c9600dee8c3c458f
MD5 bf4fa780d402c03de3e7a198e7bf08b6
BLAKE2b-256 715d815bc22f06c0374992594a46aea3438b286e8d39641b8ab13cd42fbc18a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acc2667a672bf21dc67bd5420dc855a8717fe9ccbf0070187bbbfa652e08a4c9
MD5 d9972978f3942bcf4959d2565d604bd9
BLAKE2b-256 7f0a0727ef09ca3711b2edbfbf6f0824f99e16b99edf505ded45f79bae3edb9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 746d9d805c144508598ac0c86b9ce8aff76cc75ff4b9b6d6ee537fb851272fdf
MD5 631571544b87cfd759cbd260a2419b54
BLAKE2b-256 db4dd658075e01a9ce4cbb8695bc70d0afa922e43450d2d1a2c59a34e88e7b58

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 70.1 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.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 960cd6ace12a7a1d20564245589341defe9694b2621c172ac2db93203eae17d5
MD5 3664cfc745fc6f100356dff62f6c2709
BLAKE2b-256 178a75660ae98b4c5cb3ad8c8256442a5149ef81fbfa8b481200282059e9af43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 75.8 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 52e57d6dad091f5f4e82b7efe6c64d507ca663ba95641011eeaa4ba4b5b8c791
MD5 ed01c22f30e5cbe9faccaec5d6811870
BLAKE2b-256 ec39c30d839f45aef5eb8527907e69126c1140936c3ea8c08693cf181ca7485c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 68.3 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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cab70e13eac0ea9d479fe3ff05b14d8e58534d0faf1f6e77f2f3a3393cf2e3fd
MD5 91f16613edf15f80865cfd3248337957
BLAKE2b-256 bf1cac5f2460a96dd38292568ee526aa9e81fa10de938df7cd6efe30821960d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3ef76e6402e74d71a0e42131e69c214d0335d6e9b9c9e185c045a8faf120bd6
MD5 a80f53278a340c457fc079ba206942d9
BLAKE2b-256 e0613be95d1f23f29134b502cf89ffde79690b53dea5f7e314432c0132ab764d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52927e42851802b6ec4ac6fbf25465a54b960755893aeeb9763bb11758284c90
MD5 4cab9b7beae8a2c44448bd61daaa277b
BLAKE2b-256 5dc6be6362086ef2022e3cc80977b23f15ed2e67663ea363d4a12ec170d77456

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b46970cd98c22ee914706b0e76be07b40e1bb285afc24b3836c5e8fd67847cb
MD5 bc3c46ba2c66639cf178b73ea7205ca6
BLAKE2b-256 0cc8d05b7126c127f1acafba0a5f0c50f534f161a41822635f1e4f12c3d12944

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7ccd39116fa3253de77977aaa36021dfc40c98f15c541fe6c3b916fb23d79ee
MD5 9d175b4164a77713845b1984673c796f
BLAKE2b-256 80a48cd0b95125727f1acc3a7d39ba1f459feb13ed367ec759fdf97d8c78afee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 715e89c03098bda3cd0b468f42664a90c9c8ed1f7a36c8cca2c213743431525c
MD5 60443f248dcbd2a3db94a0276b863d9f
BLAKE2b-256 de113a30c517b3470a8a5f952e2cd2d1ff1a5a64c2de8d63686021c551176ead

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a8f5469d9719df98bfe4ba3d6ce9104c9f99b4bcb1b4b4e187d8ec594a388a65
MD5 fae2d611f338e6c111cb8743933f87f8
BLAKE2b-256 d8f13d4b425f4c36b75866b98984d68c155d4462b2ff2e18f878ee28bffefe57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 70.1 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.13-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d8cf1c862d7ca2d0726852e6ebabe5158d7e373a68c08ab62e89bb49ab4fea25
MD5 013436b82643eefff4155f121cfc9e61
BLAKE2b-256 6173340ad14d9972e505dd9d305d8ab8aac3fda179835dfdd2495c53a6d409cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 75.9 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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb115e55ddee493453682b72de80b5c7376d34d8c32ac8abb858d08054ca8a67
MD5 0276537f4e4d92dccb357910625d1ee9
BLAKE2b-256 c54543de7b1d3776b1b4a177869d4c26d239ff15b1ba09c674af3879ed22a906

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 68.4 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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 05870957bab3e83316fa99741732fc74602e1cf1e9b269ddd18bcbcf5eb022e1
MD5 31408e3038fbd260f2197c8707643874
BLAKE2b-256 35fa9af223638751b7a0531874521dccf6633134cc15e0d8610bc88f99743278

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa211234f87f5686ef364eb1abfdaaf8a411b3145bd127c389ef2598de77eca6
MD5 e2e97f1907308b848a585c7bbc608130
BLAKE2b-256 66b9bcc4b486b96d5a1bc5409bfe4d08cd5238501d0cb5bf47f38be698854f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d05e8d168a21cd903acf9a351f85cd7251042632850877044b52f5866ed15acc
MD5 1e6c832872554ddf16da01d2a45cea33
BLAKE2b-256 b4b6d5b5b9856526c2811eff93d4143c4e0a69a9f7f3521a9339835388e20120

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 812a949bb1d36a132f83cc0e731838035364398c25883d38fdab4fd10dc9ddb9
MD5 e4bac3a4cf9788f08ce584483b2642b5
BLAKE2b-256 c1fc17f511fea45e8fd21aecf45ec6a444ab24ef03859bdb1ea9fa90250b9571

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94bb55c64069be7593cfb977768864a41f1bbc1cfda221e019e91c94562c1f02
MD5 fa3a18822d76364a148908d74ff29e11
BLAKE2b-256 e837d7203c42a64bfe3e6b524633bbceb6d792b4787dc37cf079243b077d0580

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2451061c9edf8eb214492ff89c4880730017ca7a92f4a7eebc39f8f0b564fedd
MD5 257041b003bfcba3de483e241b96d6af
BLAKE2b-256 8c679f48e634cd060abf928dd4719ea6813417c0b6c8314bbee65ea185e1be36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 baaecead24957b52035a7093c01f7f04b453984d8f6f1c266e73d4b7942d5d70
MD5 3457da31beb5fb7e3854bfdd5155f5db
BLAKE2b-256 1da137c1f33e7580eee0f4aa33e1907adc93dffa3f5660959dc883786d4964a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 70.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 pyodbc_mi-1.1.13-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 2f019ce58aef73c9011887370ccbb87502eae0035633a8743a883706830f23ab
MD5 8afde1c9add1de9b35d89224d9f34df5
BLAKE2b-256 c8dfcc74477a51fb7c4d1ffb7276b44802da0c9a2aed69016a72d9239dd0700e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 76.1 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.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e15bdf9dfa5c7def3b897c9d9d84bc7e9e469c67a89dc340173dd8d30ad3a45
MD5 2c09bcd76f5070bf8a535b598bd355b1
BLAKE2b-256 0ffb7c54fcb8e1d02a7982864b2291bd7e5984fe147bbe05c8cb3071cc8cdf56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyodbc_mi-1.1.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 68.4 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.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d35fb7f483cfed1d07e27f80253dd19db4c29118cce7ac91b90863256bdac665
MD5 b95e38436f350f062b1419680514e0fe
BLAKE2b-256 d8c5bd3441834febb3dd6483b800836b7ec5f52a2767c74e05644f91d2159e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d1fd8c9192e2b8de3451e2929e3288b00f0c45ac74cec4cf5ddf6ffb6c49de1
MD5 5e2981776580f7d7b8ecf901db3e557d
BLAKE2b-256 ec3a6e1436580454b381f6d404265b55e1823002562c9badddc89ea4fd543067

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d11f7ea963cf2f9805f1853385bac071a1d76b21770a3b828c19f8d3051650c
MD5 9a228b404f7d99892797334ec5f25327
BLAKE2b-256 1cf7e83196361f6fa24d8430c36cfa9f5ba6751373f93f027fa74f3fb9915b74

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aaba0218015d8c225fec37fb90abb2b90a14d2730088316517a59f4e45591a18
MD5 1d6b5e9bc7a2e2f05cf50d2e832df010
BLAKE2b-256 eba9dec66e66b32bf828d18f9ccba13b4b21ebb3105e80516cc4319b2dac0cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f872306423bc7cde06e76984bdcc4ce33b01bda5d8f90b0c213823884b5968eb
MD5 3b75120ed0d286174ea1fc531a6e51cb
BLAKE2b-256 10ef73df35884162e7de5b6b41fdf30d1fe071e2f2afb4fb7b5f85568bd19296

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b052183b50ce3836c56721b0bf0bededd2a4821bf7e63d22c30b5332be360572
MD5 eaecf5ed018f0c67e1b1ebd8f75deb8f
BLAKE2b-256 b35e05e604a259ae55bc4788959b0262a52fb1fe0a753d44b2cf32125a5557cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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.13-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyodbc_mi-1.1.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ce45e39561e3c76877c38647aec4dddd39de541a6bb50e415545b67cf91ee37b
MD5 d3d72ba8b39d9592d72382d98d923b0f
BLAKE2b-256 dbed0112e46de20d7e5b9ed82f7a55a369b67f21b0996ba3cbb8c66920cdcc54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyodbc_mi-1.1.13-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