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.11.tar.gz (125.8 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.11-cp314-cp314t-win_arm64.whl (75.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyodbc_mi-1.1.11-cp314-cp314t-win_amd64.whl (84.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyodbc_mi-1.1.11-cp314-cp314t-win32.whl (75.3 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (420.9 kB view details)

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

pyodbc_mi-1.1.11-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (421.2 kB view details)

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

pyodbc_mi-1.1.11-cp314-cp314t-macosx_11_0_arm64.whl (80.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp314-cp314t-macosx_10_15_x86_64.whl (80.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyodbc_mi-1.1.11-cp314-cp314-win_arm64.whl (71.7 kB view details)

Uploaded CPython 3.14Windows ARM64

pyodbc_mi-1.1.11-cp314-cp314-win_amd64.whl (76.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyodbc_mi-1.1.11-cp314-cp314-win32.whl (70.5 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (371.2 kB view details)

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

pyodbc_mi-1.1.11-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (364.0 kB view details)

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

pyodbc_mi-1.1.11-cp314-cp314-macosx_11_0_arm64.whl (76.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp314-cp314-macosx_10_15_x86_64.whl (77.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyodbc_mi-1.1.11-cp313-cp313-win_arm64.whl (69.5 kB view details)

Uploaded CPython 3.13Windows ARM64

pyodbc_mi-1.1.11-cp313-cp313-win_amd64.whl (74.9 kB view details)

Uploaded CPython 3.13Windows x86-64

pyodbc_mi-1.1.11-cp313-cp313-win32.whl (68.1 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (371.2 kB view details)

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

pyodbc_mi-1.1.11-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (362.9 kB view details)

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

pyodbc_mi-1.1.11-cp313-cp313-macosx_11_0_arm64.whl (76.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp313-cp313-macosx_10_13_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyodbc_mi-1.1.11-cp312-cp312-win_arm64.whl (69.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pyodbc_mi-1.1.11-cp312-cp312-win_amd64.whl (75.0 kB view details)

Uploaded CPython 3.12Windows x86-64

pyodbc_mi-1.1.11-cp312-cp312-win32.whl (68.1 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (360.7 kB view details)

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

pyodbc_mi-1.1.11-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (353.0 kB view details)

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

pyodbc_mi-1.1.11-cp312-cp312-macosx_11_0_arm64.whl (76.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp312-cp312-macosx_10_13_x86_64.whl (77.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyodbc_mi-1.1.11-cp311-cp311-win_arm64.whl (69.3 kB view details)

Uploaded CPython 3.11Windows ARM64

pyodbc_mi-1.1.11-cp311-cp311-win_amd64.whl (74.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyodbc_mi-1.1.11-cp311-cp311-win32.whl (67.5 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (351.5 kB view details)

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

pyodbc_mi-1.1.11-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (347.1 kB view details)

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

pyodbc_mi-1.1.11-cp311-cp311-macosx_11_0_arm64.whl (75.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp311-cp311-macosx_10_9_x86_64.whl (76.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyodbc_mi-1.1.11-cp310-cp310-win_arm64.whl (69.3 kB view details)

Uploaded CPython 3.10Windows ARM64

pyodbc_mi-1.1.11-cp310-cp310-win_amd64.whl (74.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyodbc_mi-1.1.11-cp310-cp310-win32.whl (67.6 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (341.9 kB view details)

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

pyodbc_mi-1.1.11-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (338.2 kB view details)

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

pyodbc_mi-1.1.11-cp310-cp310-macosx_11_0_arm64.whl (75.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp310-cp310-macosx_10_9_x86_64.whl (76.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyodbc_mi-1.1.11-cp39-cp39-win_arm64.whl (69.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pyodbc_mi-1.1.11-cp39-cp39-win_amd64.whl (74.5 kB view details)

Uploaded CPython 3.9Windows x86-64

pyodbc_mi-1.1.11-cp39-cp39-win32.whl (67.6 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.11-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (338.5 kB view details)

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

pyodbc_mi-1.1.11-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (334.4 kB view details)

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

pyodbc_mi-1.1.11-cp39-cp39-macosx_11_0_arm64.whl (75.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyodbc_mi-1.1.11-cp39-cp39-macosx_10_9_x86_64.whl (76.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyodbc_mi-1.1.11.tar.gz
  • Upload date:
  • Size: 125.8 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.11.tar.gz
Algorithm Hash digest
SHA256 fc21682e7e55b2456138b1ea12ff9d7913f41494c78eebca3b70e4a85abf178c
MD5 71d721771e63fd6e750e5e2f86babd12
BLAKE2b-256 f3b36c294054dba344e7402a9517b0f0fa6fb5e59d1d947984887b2b496ac019

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7b70e6c40f11d59b3781623b3dfc8c6d8e3b0eb0c9286374de6989916d69e1c0
MD5 488be44dce2ac6e47ef83cb9bc6059df
BLAKE2b-256 116f995f620e66d7e60098837d250435f480dfa36ec5f512157bc2aecd3ac21b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 84.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.11-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 354e806550ee0797182f846268037a7085c1a1ae7c717c0e7b53078e6b9a5912
MD5 400e287b5faf6d4f7e521ffc2aa8e406
BLAKE2b-256 dc8397bc946bb3cb7dbcb8f1dea2a87572d6476494d67190a5268875a1e34454

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 75.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.11-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 949711566c7b04b15e8a8cdf2dace204898fcd538711bf4552ed97e9d5531262
MD5 f45b7072e5807a85386c1bcf2fce0eac
BLAKE2b-256 0ca41e4032bb6623799d2b57f497c92c82c0f19de08dc7c93baa33be063d78c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df6b687b97f0ec3f1dccc4aad071e41635eed71565855aec3322513e9ad560ae
MD5 a4241c094951c3c264542c1ebb073af5
BLAKE2b-256 524a4c908ff659170a3a1eadc7390fa30b7b865388979abc5b47744644a1e658

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58cea16fe44ec90ac9155f6022797d2922e7ed5e3535709f63957a7e9e6de755
MD5 10c97b0066734e42d2015e1e1d6eb84e
BLAKE2b-256 3109978f68e9596862460ab85dc648c7cbe74d3dda2e24198b7286b22c59776c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48b851192fd8d8dafffb5d2a8a525af493b89d3cb4252889ea9146c8a0dfcfee
MD5 015572e5510b84bb2935badb42810b8e
BLAKE2b-256 fda0a18c66f328cd1613609a2ec7bc02be67593d399e531eff02daea534dcad5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f634fb5590e8127f9f36d2253568cd57dde4732c1589b384f40e5513d11dbbd8
MD5 9b31704f90001eea69e7b3f4f8dde2a8
BLAKE2b-256 4a1025d0d9f34f3a6428e1e53b736c2cc4f1cfd3dbd0a424c8269e328891fbc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1159e7f04042ad31731b7aad03f9c3cd592b35ca36abb3f8dc10f379789580cf
MD5 dd5f0b5d9d2c295b10b0e6c924c66711
BLAKE2b-256 df4acaf4194808f693a8848adad0cd6dff83de53f5fb84bc00e4751a6fb0494a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee30bc40f34311adf87417efce63f19bfa58b61c106a3cf0e54a67a78107fc6b
MD5 7c4d8fd1cefca4d6d4c56a9740fbfd83
BLAKE2b-256 7f8555b60a14d118e64740780f5b2835d1f1abeeb78504d5075eb8a9b44bbbd8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 71.7 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.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c860be87f4d89ec65f5cece2cc56164a853b4712f72005f0907b33002124ccac
MD5 2d119f3b35f3c4a5f3bbcfad3d167d37
BLAKE2b-256 9318e41438a570809fef118e96805689660d8821926bb6121cb103ec0eca80cf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4034f7f21f74ceec4426a267a2ba83aac782a1c890819c7ac3adce74e673e9aa
MD5 6bd96d01b5ae8ce36ee808234a310045
BLAKE2b-256 1fe4b2cef9d4123e3eb0b0ee1257a1dd06aa5afa046f1c6970a180f5a0c5cc7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 70.5 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.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 26b610e3dfd402f3c869140ee19a695a74dda663bf416250758637c61033ccf6
MD5 84b6a4b41365b9812015c4423ecf4baa
BLAKE2b-256 411140ce919d899df1fe7c90de96096010dc8e283c72fa86b3c3d7bb493bfb9e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fc908d94dc0aaccf75234fde8800a4b3647145240bc01cb9c9b3779166ecef7
MD5 ddd04db9caeaaea80b52bd51b115c7d7
BLAKE2b-256 3aa98ccab1f829eea25123e773bced549d74dea7014ff611dfca954ed7a71d96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bdb2ab32eff1246ddc35d9b08a240ab6a57c2ceb6b6a9153044b6d10eec8f0d4
MD5 add9cc94ee08d9855e37dacbea453f3b
BLAKE2b-256 0bffba531fc6dd8716b00893e75496601e7b47c7c49f392c3dc44f9d11f7ec51

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e738c633040279d309720f5d0e35a25c2532f3d3f5972bbd2076c9f2840bfbc2
MD5 e9172f7ee9a969a459fc618574b44f80
BLAKE2b-256 0bf9a04c382c90db1a125550639e3a758e136b56d829bc056ff913dd3a91d7b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80bd1a6422db92e5789bdc57ebf7f0ab27f7158523701cb1f734dee75c50dc5f
MD5 5608c483843a0362ff3e1c74a2cdfe74
BLAKE2b-256 7d36b36d460a8d350b22ced8d6fff7c65f1788472c795cb920aa7529fe2b840e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dccceee1a9e9560cd073dbf2dd27012abec047158cee16e588f85f4a6863364
MD5 979691b60a018609ecc3b4668c56ab9d
BLAKE2b-256 e023553997a73e7100cf62fc455628da10ce900c490ae37e68bca0e37a6559d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7202036f5c5c29d29f53616fc8ea13d3963d1d42043a908edcd98442fff3639d
MD5 6ab4b4e417c735c2969786454a286179
BLAKE2b-256 e8c51018de0199e075ae439bb1812a2fd0cf03908f48b061e8a600957cc73953

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 69.5 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.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c2d9acff9f2294dce32822e02d2b5eacf3de5d192e91d0417fd8462d74485fe0
MD5 9498f0493761f48ee65c2863b1a36638
BLAKE2b-256 2b23fbc9dba56d0c7c2b27ee6166d283a9798da36cf7db604a79ac546f850c0e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c0ceccbfae6f040b43a0fff72048ede715b8a586278a85f82a120b0682886652
MD5 32d5b8a99c00f36c36206c418e5f7e2b
BLAKE2b-256 b746fa0e87edd002b6173bc133fc26217656fe0d2bf3516294820710bef2c846

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 68.1 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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 468b9b92857a103170759456db8b205a432118e96328430ad63cc7a121ecd27b
MD5 70cbfb3f0299a0785c82401f3b52ec2a
BLAKE2b-256 fc25bf5f370bb5dfb9ee5268aa2b581d2bbcf5ca45e89e6db7ded421b095b5b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 526c87d35450786665060c443397fc02e3844a1d448ab0a040c60d8c0d912fad
MD5 a3f2801fe1eb3a08dc9f5e8b8d50235e
BLAKE2b-256 3a2d0a9907a16dbf1862407425e72ab3c2cb9e3d51bc3e24c50104b9044176a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2caec805b2971c554396cc9488ee9f1d0b3ed2296b5883c95349a00e9e1a5e93
MD5 32c895e3de585549d26fbad2f1b8fcb5
BLAKE2b-256 d4b276ead742837857b1eae5d9ce439fb77304992032ddea14978edc848494e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be781ec0339a4b2dace1d1168964af75c6773a795814547e3bf438c183553987
MD5 bf50dade64ffe95295d194bb9b34f223
BLAKE2b-256 353a6508f0e5dae0222a4a9d439cff4a9f1b7acb935fea3951f15ad1796ec242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 636b932a8ffea4d25d00aeecb4caa51f00bf18d92b9ebcb2be2a2ae1fc7df5ee
MD5 660ad041bd81b6494ff3510c143fda42
BLAKE2b-256 5551982cf0c9f949418253c86554531f5861d303d5c08baede20293b0b72a8c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 668846acfdc28fa88885d41126cb6e47f2dee44e6eb71d7bb2c61ddaab693142
MD5 d5a608f67a3dffa475d3d3738f60f854
BLAKE2b-256 2f1b1d28772c4795415121c0336ce3d16e1a36f271db7c8491477ac51f650db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e8201397643b66fc27666fa712ee56e14e27139e41d2c9aba1d2a6977bdafa5
MD5 75d97392d215b3b16ec5d78de418b798
BLAKE2b-256 31ee9d0eeca6ab6d5760e98d2441e33d6b9968634952238d40f5260062b51c5c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 69.5 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.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 14466ab459f19146b5c9815c6b676ae809c428bc98289e17be552b6a00f57222
MD5 3a359bc47e41d1c8cce04cb2d409941d
BLAKE2b-256 f0c9a8d07556f07f909d7a12c461be9de6480d6078cf0ffc1e5b1e01a2ea6e34

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 75.0 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.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 31c8f2b489739151d09b53cc6eae1e433ca72762c218347b137ff4d25f5e2414
MD5 6ab33f534f4e2c65432fb458bf98777f
BLAKE2b-256 dd234b69ed4ce7f27be7358c108e41067231b44dc472492aec148088aee94d82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 68.1 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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 082bc3ce30fae3070da6bcb7bee8836127be15d0888edb589af80a9b7e58c816
MD5 dcae2c477f6340194f1eaeadcca7ba52
BLAKE2b-256 54c4d99c74d853d03b0dd996da315b6faa19106b679bda8a3a738f6a92dcda14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09d57578390fd3347bfaa27ba01eeb507d093e371f74adc063fc3c9b3a93ed0a
MD5 677caf333849ddeca06f6e1a1f34a1cb
BLAKE2b-256 f604cdaaf74fdc76330a4a1a7552977e29af8b4c365f92f86fd9e7b4e02cda40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe9f4fb6d1eda2e0eb1eada687bc28105cf133b456faa94d4d44c2d4b1970075
MD5 25d906122bdac2a21873fdba8e9023bd
BLAKE2b-256 95797ee8aa67a0ab663da1be5528a65ea784cddb96a37f5ca9ceef08f060a757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ea80bc6b41ea9e4146bd80fc6ac560def071fcae52e8bcbadf9ba0408ca3f61
MD5 06c132995868c4b0eb4b874aa30e27d0
BLAKE2b-256 2d84148d426b6f2f38de42faadedc7980cdf8971632eaf2c60d3b5194474c7d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e70369a9fa7b5f8ee3069ca8feb19920264cd78f348450d9826acff09942830a
MD5 dd335fe3d90be4c9622b59d082e0ccf4
BLAKE2b-256 90b3732de774d07a76f03d4f28911d4ce44463ea039692702bc92d15d07e62ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed0e8ccb6d2d39cfed61c24c81bd1ac2904508da4cfc4c050b29938beb2933e2
MD5 59bace724c0050d613a91468711f5adc
BLAKE2b-256 65f042d30f356016c7781d5e6be66fa3079e43525f5192ffdaa1c1bbdfc20969

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e7cb377fe5622c1c0364e953af6cf1669c9ae728351513c1daf44300cecc4c7
MD5 003fd8fb7af22d5fb5d7b3b16da378a8
BLAKE2b-256 b2e3a19172c0c805c2adb6baefbb6087144abbba788219fe70885ec7aac684dc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 69.3 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.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6b7f5805103e21713dfe15bddf79572b534b99db12eecd0cf5ca2943e1d90c0c
MD5 daf4d9ae3d54e68332875e6ec85a4629
BLAKE2b-256 36c2171f052d5e3b161cc0d8bc0a7b4806b9259fd137be4cad00a34815dc3bb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 74.3 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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d307c20b5bf36a1e08d01919c30b6998fd68ea0f2aa672085ef92119cfe39463
MD5 e3f485ee92da2cfaf7de3f8297b415ac
BLAKE2b-256 9f8453ae8ea63fbccf82b423a555cf86582f4c8234ff6b95384e651ec92b046f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 67.5 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.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 993d2b2a41a8cf3573204429b7a10049f8ae235b6734f60e18917692b9fb8789
MD5 a9e0ca3c51d578cafce9046176c4166a
BLAKE2b-256 ed45e267d820dce743aa73a884b1b4559e3cc45e16874eb5c1b46d6cbe4bd7ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b0a484418fdf9fe51ad590c834812175fe49c803a26294488aefe02ea232e76
MD5 dfc6f6df5b22e5d9dee8d4589eb7e170
BLAKE2b-256 8773bd963aa40b7885e584c6edd691d1bfd666ebd406fcedb66a62980ceaff3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d027c0578a25da2a1db16322512c26dba44ad3e606f098e1b49448048facde60
MD5 8c4fddd2b902405f01cb9a776590b262
BLAKE2b-256 9fff16c79772c4d25910aa39a795533534e09445a12db43df2399b36d4c25c8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc35d273154dd5ee8d48c149c915bf43794c0b51e8d8be67cf0e3d6b1f8eaf68
MD5 4d674a77c1ae989da750fa406d759161
BLAKE2b-256 dea5dacd703fd6fbc10aa5f7ab86caffb9934da2ebfaacea23b52b5d9831d61a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a63c4313851e3a03c4dd717e845ec6b8a1881f5f7ac590efb911aeb1a855d9af
MD5 e6846e48f0a73c67efc99c9435ecb0ff
BLAKE2b-256 96aaa388192c519ac1351377360b532ca6dd1dc6573d07444b03f39e2eef50ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88ea18ccb7d68b7bdb80810a7d298ed2015206fedccdf345c5c8dbd1825c10fb
MD5 b2b10955c92ac6ad31726efe09fa2ae4
BLAKE2b-256 3319aa3cf3ff025fdf462a82cc3bc417b644faa1f4d730a772ed0e6d3f44fa25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3632966640849a0a1743fd27222165994a3999223d6c319ce1cfa384034f285f
MD5 29cae9b5c2d40bbae63a22dc7f4aac5c
BLAKE2b-256 e84e163b9708a3df0ed760469b8efb2bdee41d3d9d57b446d7ed9b66622f65a2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 69.3 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.11-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 24c591a423d2856e3b5809b3745b842d049ce52a38a04193cb29c8ff10a46eb1
MD5 2794005b430d5748a8d5b2d3d1da23fd
BLAKE2b-256 11b372f00901b67f2ea1cc84b17c3ba5bf7f67f0ddd56dfd0ca0bced665d815d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 72f513ec8431c61882aaf04cb63aee0b6a3d59498da3146d5ed85977872de395
MD5 afdb2b009400c25567c8b18a5adaefb9
BLAKE2b-256 a9fba19ef0e49f02391e016618f5ff44c7348c6f7e20213788233dc237f11096

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 67.6 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.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b822de5cc13fc4604f57b9920311b069069df5c8259c3c84da84076e274d0720
MD5 7406e0aee9d26c3eddf9c0a03b68b1fc
BLAKE2b-256 86ca94fa8c4d19380c64245ef1bd7d7997816e74a8c3ca68915887c93394b75c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00fe99f00309dfc4b6bb3a88597fe41342793e78b88306dddcb4bb81eef554cb
MD5 8606bc3f4d96346689afb7ad4e5c84ec
BLAKE2b-256 aa1005483558da874d732810f2d4265cdd8d539b2ac39888cd44aac4891490c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7da50eb88d1874934166799ab671dee676dbab38ecc788427e61e8157eca6a01
MD5 5464a93e38b73ef6e063fd02354786e9
BLAKE2b-256 3dadef9f82a332e498657db9af567b9d31a47b9bdfe20181e556c65d4caaaf50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41e87b9579a62b811225f90de6b2bfd819ac2fb96acd0254b686fa349d047948
MD5 4d28113f96076b5a5b5154f12429b597
BLAKE2b-256 afd5a21b7f1bb8cb44fe62e8f182e7abad18fc8ec90327c632924c0bc218a97c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fed8e08ae806f8fd42be9abe56cfa91b0ba1d2ef62e72a7686c8cf5186a104b2
MD5 ad28bc3bf08aabd80c72e78017a1830f
BLAKE2b-256 415854f9e868ceb4476851fac9ec655d032fdf11eb9e4084e00cca1b5c4528a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3de1d8ec67d8b816035c47bdfa42bb7485026dae8cd2cf50e5a6e59bc960bcf6
MD5 05011bd2272a141bcae3d592cd1858fb
BLAKE2b-256 1dcb8be9771dcc5d5ef4c2b528ae3bdba30a5811145a476a4c6274d32e5fdb77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e201e4761a59e77cc5ebabd3fcce8c3e593e9cd69dfac0d06be8d11fdbeb963c
MD5 634cf8e4187cce53d51c60333ed6b3b1
BLAKE2b-256 62bd50f59978e7a7fcd495bfbac46125e9f39fa13384224787b1bc0380d082ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 69.2 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.11-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 efe996f803548ccfedfb3f57b1f3e43475ddc77db63736e3cf7b0b1c29216a3a
MD5 acb26f0fe2e7f1fc2e4e89febdced1b2
BLAKE2b-256 e989b7d91f20b99f932d9396e56e06e5a3184d7cca021077139e5699b59f9d3b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7bb162b7563fde0ea5017237a52a1c21bdd40b7d2932c279b4b7cc3bb75a21f2
MD5 4e896a5be8f727c414818732e6b18789
BLAKE2b-256 6492fec5e002e67bf0b9edaa09ea2f3b36125527436f693f4ca5b3944b9079bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 67.6 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.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2cdec9eaf20aa7584985045041e02391565436f46bece101b9d78dc03b76295f
MD5 e94af3d885ae43b2c1c06990a6120e35
BLAKE2b-256 0370af8a8053f0490697dae543dd4834adf1e213090f488a20380429d21a49fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47e97d66fa90a1483bc80ee04d8f778261d8402dbe67823d777917f11a5711eb
MD5 86ed5381ea93947a4426e41ce8bd6f5d
BLAKE2b-256 544c64cc1390f50adbca7183537d30df123067833a9909529098b1a1e4d0088d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45268aa006960205215d2898af19934a9025c7ca3146a13be9dbe2f8a5857cf9
MD5 d83fa500afd08015ee80a2f5850c95e5
BLAKE2b-256 29c4265bece756f487ceacc43f3bdff86b43e5f97eb773a5b4d2bbee1792a4e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a3b48b267d0683809dcc775b21002228e3a50aaea44d9f398f382112b1119037
MD5 fd2b37b2d58697ca650748a2f2e63ece
BLAKE2b-256 ca277c700da24719b4ce0e5cf081158f54cb09421120780d8452017e72875c86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 963811a4bedefa9f68c3b367e5dfad2fca1d03baa712a37cee33e38e4dea1658
MD5 00781c59ac63d5f2d33a1dcec7369712
BLAKE2b-256 8b453d6e1adc0f403ea2d559d553ac89de64c8e35f6ce1bdae9eb26dd6204622

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3b80cb5f24154440a1d8a78778e9370cc5c0fddf2d4094b7e68f743f023a0c8
MD5 3141273c605af8caad287c5c0ccffed3
BLAKE2b-256 ae2d57427788cb1ded04d8b21812e2fd691393848ce099e5ed278356aa0df602

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3842d362b7ce7ab4df7c9d705106cd446ef67920daac49a334272b49c1b10890
MD5 6254afac4f9d8ab6bc8281380ebf02f4
BLAKE2b-256 96d771e5b8605f5f30348dc784e1434f484a2a21e7566fe88d3fbe77f26d8276

See more details on using hashes here.

Provenance

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