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.21.tar.gz (132.1 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.21-cp313-cp313-win_amd64.whl (80.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.21-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (398.8 kB view details)

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

pyodbc_mi-1.1.21-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (388.1 kB view details)

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

pyodbc_mi-1.1.21-cp312-cp312-win_amd64.whl (80.2 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.21-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (388.7 kB view details)

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

pyodbc_mi-1.1.21-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (379.7 kB view details)

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

pyodbc_mi-1.1.21-cp311-cp311-win_amd64.whl (79.3 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.21-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (378.7 kB view details)

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

pyodbc_mi-1.1.21-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (371.2 kB view details)

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

pyodbc_mi-1.1.21-cp310-cp310-win_amd64.whl (79.3 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.21-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (367.5 kB view details)

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

pyodbc_mi-1.1.21-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (361.1 kB view details)

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

pyodbc_mi-1.1.21-cp39-cp39-win_amd64.whl (79.5 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyodbc_mi-1.1.21-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (363.8 kB view details)

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

pyodbc_mi-1.1.21-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl (357.2 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.21.tar.gz
Algorithm Hash digest
SHA256 e7c1a77e01f53e442a7a938d2519680dce78e0432a3fcc65d2cae4497b53335e
MD5 a7eb4083fece96433c4e63e9cfbf261d
BLAKE2b-256 1fb016a79e05d0fa38afaf10171fdad3afd79fd6117a1ac51d7fab00d9740c7b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23a7ea840992a12561b8afca2aa1e6eed3c043bc280816a3c8f1cd83fd9c320a
MD5 1f56b1ab097805231587d8480c938d4d
BLAKE2b-256 3aca1e392c0ed32c78c680b246d3186125f3403d76c1ff3411c9bfe458d13c5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 280af86e91be12df76c5149c3a232b1813ec4ca78a9274cc86b07c285394dcdb
MD5 02dc063d6822fabe9d3dff1ff96dbac3
BLAKE2b-256 4cc5421571b985fe93ed18e5cf41150f543cceac764945c8bef2b89796bd518e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 519ff59f97c53cffdadc7333348c885906f3272040f51d270f040debd3655e70
MD5 c7c0183fb08e32b085ba8e079e63533c
BLAKE2b-256 7c7c31fd805fbe118a64fcff3ae91fd60073a09a28886c70d4943575ef193039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e06ff656e63333e8f775e712b97dbd9b3524954457fb059d6076357fc56f695
MD5 d12aacf2980744f5d010f2300e43c391
BLAKE2b-256 65d848a25ef1ce7bc8a870921fb09d3a6974f2015c190d16ae3d8ef06d559ade

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 065426277620b737044bb94484130349b871b060aa82ec471d3508244af9c13d
MD5 8418f37939993dd908ece376bf8b81fa
BLAKE2b-256 d4f93bd1cccd85c82e58a60167e5667f5d3a5b21a15e406910a3a26565f40068

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.21-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 80.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyodbc_mi-1.1.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d1e448f15c5d7b1bdfc043a187da4d9988d8f87185f9efd9364c863667b0a321
MD5 b36dba635ef2d2f015f270518b800c59
BLAKE2b-256 148348f4c37a5c8937533811198907e00c607f51c02da5e015991eddcfcf88a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5e60856791c61e79cf2d361bb59c126a86f35dc848332f4ab69431406fba7c3
MD5 6f8c251d33797a811d7267f38513ebc3
BLAKE2b-256 3d12c979600eb2f66a57890d50f56723877809b8b143228b5edfd12b2cf63811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b108c45cd48dec58b09d268338a63a6ad47b14829d13705db187d4d8627635d1
MD5 d9e2411d64636ab36535e14f963661bf
BLAKE2b-256 481a323181b9d3489cf59943ddeb9720d3fe376a382369a4eca60a74cbf0db6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 884770765791a26acddefe3264052f1d700237dcc078d52dace472a35e6d63c9
MD5 faade9b13d582de405b24b7bb0821627
BLAKE2b-256 691549adc61f037e7b2625bc44a9705a252f8ad5aba7c944db090eb65c801403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 46261ebcb916f0a9fef3c16a4fa2c813a0c8b134fdcab7fc164d4b674af5e706
MD5 9c02a496dda8e899ccb097fbf672afed
BLAKE2b-256 148076255874673cd197a4212ef37e5611737fdc2e10a885dd6813b1a5b2c7de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyodbc_mi-1.1.21-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 79.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyodbc_mi-1.1.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d29b2f78901177db5d6281a903ff5835332b85fdef955f2170130864e811108f
MD5 d2f5d05623aa5fbb11b6adde99a35285
BLAKE2b-256 db9b24c274f321f7dc735f5e271091c665d1af92410be299b560be4bf59061a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 428250168f5ba12f4abe471a74eb4632d343071ad94811fd6a04842bef2946f2
MD5 435e341644e68b6f5bcbc41fe66f7088
BLAKE2b-256 5e99ac78c6a6ec16b0863039c093db0fa509da408ac4889ab73b92cdd310e051

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e6997a03bd6944f0e94fe9d204bc4adb7aece2331da8e2de43f6e36a91772795
MD5 7957868fff20ef0194c321ea7ee3f1ef
BLAKE2b-256 87c565a33a689d9e3c1dfac926b4e3599645b02dbe23907fa02a1d9217586683

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 562075f3b93a6ecd7d80793661937a64f4ab95ab6b48e3ba1d2ffb75be16c16a
MD5 98713a16ddcae0598d1aafb2c9da31e7
BLAKE2b-256 9cad6cf543114baaf6b069d509fe6caeff0c2ddb199ab41f9ffb4ea15f5f350c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd465be3e878f09dd592f6a2cea1303a664656084310ed5f8b8ff101eec7aa57
MD5 23589ebb8d4475b26756261412fd4f89
BLAKE2b-256 47bb6d1b9638406660b9d2e82a6a03deefb6978998817b72c3ec084ea6b09939

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.21-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ed7fdfc17e420dceef5c0b95ae6931c17307970fed7f2877b6b13ae7a7490122
MD5 33a799b737492fa0d2854fb18b7497e9
BLAKE2b-256 0176b7a7044a4ab4543bd0efca6452a4288753613aa9e3a1d3497e909d2189ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3c3ae8a589a1f83a3da87724f84bcad05cd9df741a9c548098a18db6c6bd370
MD5 a1fee7a48e9895c74c7cecef6049a850
BLAKE2b-256 b486b14be0731e7d7caf36f8ae65eb832541b4ee6fd5345f5682956159cf8ee6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e829a563a802d00a5bddab957f0d6169bd02b990deb5037d04912368b2ab47cf
MD5 0589413ab2196dc5a82c13b4721a0a74
BLAKE2b-256 37b7fe6292d24348e06bff958576fd004ce2c3d46630bad44bf3f7f8ea2dc600

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a72a992d23037b6bd4e844611cd7cdae36031065cde0012204d4bdfeb969e4db
MD5 af1688bc24f145b4e0c84ceadb144868
BLAKE2b-256 d4f2c7e8e64799a11efc4108ece3d09ef77e10c51188f19c71917a1b72905a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4acfab66dba0752284d049e972c4a1bc2c6e8635406d72fdd488db19587a8ac0
MD5 87d6e0d3ab27591234ad4ad46d8128d9
BLAKE2b-256 5866cf12360c75fd7dfb4b7d46f60f5756bb17b64bf54cf5a94b53d6e14ce127

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyodbc_mi-1.1.21-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cfe5b48f394d2d2880dcc7d05eca12698be445dccb74987a5751c35efa85a147
MD5 63bf52d1b8e78a87fc89345a2b000731
BLAKE2b-256 d2c48e68c4bd9c507083f64a82dc92a4471bdea299f67e844c559fd04dd8882c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe013002ddd159f8403f8e3e3cb0000d18774d742d873c7aaa00704a26f7ea67
MD5 fc7c4e7a1952e864f04784651ebd073a
BLAKE2b-256 7b334ce4667d6b156226345b26b79004fc5879b59a982db0e0508fdf40c782dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9db6bdc6c0549a4bb41b89fbcc7017bee84534c80bf8c96e4eee3d685aed2480
MD5 1e573977841315ee4b273d67929b8146
BLAKE2b-256 9337e83944b51a5c9d2453abda4ca3786f0cecd95064e55756b8698bcda5b5c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 749a5986c4e39bc76edca7fff64d383922d93754dd434f0c061c2a581905e490
MD5 84164843d2170ee2164fc01952e75b0c
BLAKE2b-256 5e8e8950ce6a3f32f3b7f2c3bcad15d80af95f37b7753a288a31bd94960f5d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyodbc_mi-1.1.21-cp39-cp39-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8937ac5db07e62086fcf45bf40d8863f41ee27aa8636851e068e83d9461bd960
MD5 671a5ab6d279d949c92370e4e96f7b53
BLAKE2b-256 7af70263ac55a441149439aa27fab5a29175543ef2902aa411800b634019856e

See more details on using hashes here.

Provenance

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

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