Skip to main content

New level of functionality and performance in data access via Python

Project description

Python Connector for Microsoft Excel

Python Connector for Microsoft Excel is a connectivity solution for accessing Microsoft Excel, Apache OpenOffice Calc, and LibreOffice Calc spreadsheets from Python applications. It fully implements the Python DB API 2.0 specification. The connector is distributed as a wheel package for Windows, macOS, and Linux.

Direct connection

Our connector provides the following advantages:

  • A direct access to an Excel workbook without installing Microsoft Excel or Microsoft Access Database Engine Redistributable components on the user's machine
  • Support for all major desktop platforms: Windows, macOS, and Linux
  • Support for the Microsoft Excel 2007-2021 Workbook (.xlsx), Microsoft Excel 97-2003 Workbook (.xls), and OpenDocument Spreadsheet (.ods) file formats
  • A read-only multi-user mode that enables several users to read data from a workbook simultaneously

Connecting

To establish a connection to Microsoft Excel, import the connector and use the connect() method with your connection parameters.

Import the connector

First, import the Microsoft Excel connector module:

import devart.excel as excel

Establish a connection

Call the connect() method and obtain a connection object.

my_connection = excel.connect(
    Database="path_to_workbook"
)

Replace Database with the actual path to your Microsoft Excel database file.

Querying data

Once connected to Microsoft Excel, you can execute SQL queries to retrieve data from your Excel workbooks.

Execute a query

Create a cursor object using the cursor() connection method.

my_cursor = my_connection.cursor()

Execute a SQL query using the execute() cursor method.

my_cursor.execute("SELECT * FROM employees")

Retrieve results using one of the fetch*() methods.

for row in my_cursor.fetchall(): 
    print(row)

Parameterized queries

You can use parameterized queries to pass variable values to your SQL statements. This allows you to reuse the same query with different data and helps to prevent SQL injection attacks.

Pass parameters as a list or tuple to the execute() method:

query = "SELECT Id, Name FROM Contact WHERE Name = ? AND Email = ?"
params = ["Jordan Sanders", "jordansanders@example.com"]
my_cursor.execute(query, params)
results = my_cursor.fetchall()
for row in results:
    print(row)

Each placeholder ? in the query is replaced with a corresponding value from the parameter list.

Ordering and activating the license

You can purchase a license for the connector on the ordering page:
https://www.devart.com/python/excel/ordering.html

To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/excel/activate-a-license.htm

What's new

Python Connector for Microsoft Excel 1.2

  • Added support for Python 3.14
  • Improved detection of column data types

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

devart_excel_connector-1.2.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

devart_excel_connector-1.2.0-cp314-cp314-win32.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86

devart_excel_connector-1.2.0-cp314-cp314-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp314-cp314-macosx_10_15_universal2.whl (5.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

devart_excel_connector-1.2.0-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

devart_excel_connector-1.2.0-cp313-cp313-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp313-cp313-macosx_10_13_universal2.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

devart_excel_connector-1.2.0-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

devart_excel_connector-1.2.0-cp312-cp312-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp312-cp312-macosx_10_9_universal2.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

devart_excel_connector-1.2.0-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

devart_excel_connector-1.2.0-cp311-cp311-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp311-cp311-macosx_10_9_universal2.whl (5.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

devart_excel_connector-1.2.0-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

devart_excel_connector-1.2.0-cp310-cp310-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp310-cp310-macosx_10_9_universal2.whl (5.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

devart_excel_connector-1.2.0-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

devart_excel_connector-1.2.0-cp39-cp39-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp39-cp39-macosx_10_9_universal2.whl (5.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

devart_excel_connector-1.2.0-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

devart_excel_connector-1.2.0-cp38-cp38-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp38-cp38-macosx_10_9_universal2.whl (5.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

devart_excel_connector-1.2.0-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

devart_excel_connector-1.2.0-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7mWindows x86

devart_excel_connector-1.2.0-cp37-cp37m-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.34+ x86-64

devart_excel_connector-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file devart_excel_connector-1.2.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a5f533a765bd21d9a28973aa1e029e15561c7ab7eaae3aba48846b56007e2295
MD5 9197b94ae80b8ba67b9e961eab023bef
BLAKE2b-256 33e3df970a1af62e89bf7e74e7c51e2efb5eb8d963dd20ef41571410bf58249e

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1318634dc70c3b9f46ed00348a435f0cb9e1ca242c44adc6af1ec74f3133eb29
MD5 ceb3bd39aec4571f0bea9d677f53fc39
BLAKE2b-256 30832114f621410d4f91ba8e9e0992ff716249d6b35c642bcde852c9ab7ef346

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b24e94dd34c22de9d5dbb7dd13439127d83e3615225a25727da80179509d386f
MD5 fb58c070f2de3fff93fad741883297a7
BLAKE2b-256 4dad9ed911817b87016f8d1e95e37a4fe22fa189368d43f8f4aab66b39cf266d

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 847c52f36e93b3f5fe60356d5fcad1d7c98c981c8bee1375a69c1d0fa0e7784f
MD5 cbf4ba335996a79e85fbdba077124d99
BLAKE2b-256 7f5678bf08d3cd2e5161cf8b7a43f877f34a64797f2524b2331bef059960008c

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 04bccc3cacc1292f3b15c88ea655943592ce769a143a4e9af63abfc768f6cf88
MD5 0dcfb2f715a4da79df4bd9e53f8dc9f1
BLAKE2b-256 54b652ce7ad40df61bb803e91a2ebfe076c56b209965b5385d21a2d8148150ac

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 40af7266a3dde16ddb70c328e6b2f2969099deb0cdeec953389a50e7991bc7af
MD5 a5c24ec47808c7b03f86bcc3e8732803
BLAKE2b-256 a5357c6ffa315cace28a42e3312ae9ca3d3ff6d2f4fea844471a91ef891d4b5b

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c254e3c5615066a93c299611d2f01c249e1ed2e87d015fd4baa8c12bfe1d254e
MD5 13153da558e78f697d7d7226c50b59b2
BLAKE2b-256 a8abd87ffa81b894ee66787d01e798d3ad1c5b1477d176dbfabf2b13ef5e8a43

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 53de6af122571288604e248d38bde09b5e58100c75774fad69b7ecb3c76c936b
MD5 b87a4a2ecada96a979662f974b1d841f
BLAKE2b-256 1a28b8a0538f013dedd5a97f25c89705821529c17f1c4d30a0d6638c3bb13ab0

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2543b6a29bab754ee6ba9050b43c8ac1cf91dc7c046fcd8d44c6735c29b96351
MD5 5b47cf0b227700f368886d6af2c4a4b7
BLAKE2b-256 6c66204b75b08e9e51f90c3a6c48b5de4e2cc0c1bcc0c9d859a6259541252fa0

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 eef1ae56389e685f7dbaea6477095c1b4748c9e9ff77d5bfbf2f89c3409b3afa
MD5 d05b47b267cbe2ba18ab9ace18833ce1
BLAKE2b-256 d2b29857975c5ae9fb2866c83d62d9f6e5bd65bb2d04151d492c2d17efd6b4da

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f16760edffabf2fa64fb2f8cabc62dd77bfcba78c2396a05773589c02e48f371
MD5 a0a01a250a03f12485562ec42b444a63
BLAKE2b-256 4b8a25a462819bcfacf8acb4026dc605b8c2d50984b853a75c0f1551f56a2cb9

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a9512f60d18c8b73b466ff51936736d98dd3b10f4bd2bc0f466e8b8915815d2
MD5 9c5555e8a033781fbd0f516eab40ec3b
BLAKE2b-256 c1e6ee48996a8ca238786246ce2f2ebd44b662dac06ebe686ca1ede42dc4d9cb

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 130e6857eaebf3b47c2e06981c73ee5051144b2b86401853f9e17966a8610654
MD5 ae8415e5393769b2155b678a6339286b
BLAKE2b-256 06784b8d8376691e534f5a0d250b769034a5b274d68c6fdd577944bc64d4553d

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9427c26383c7f39e937200400a03cdab0e4deb73105e880acfa42741ebec44db
MD5 d5c85d14172f3fc55539f23b01d3365c
BLAKE2b-256 3596dcd79bee6b285a5f6b11a0492ecffdf928023ac43de1fb55dc3dc8126406

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5a7961bacf782dd52b3d147743a89355ef76a076c490823add3fa30181b82410
MD5 f54ceee921c12095e7296203dcfff440
BLAKE2b-256 dfedd6186c3ea3690d17379a3f0d3c3edbabf3ec86cc498099b225e33d701988

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c7ab4bef54324df033bade233041601c240dd703220250e7af758652c3b68dc5
MD5 c9cc672bd249ca29de55885583edbc16
BLAKE2b-256 8e56d520f20ecd378ed8c93e3a1a72ee0bc3ebc7f0ba07bd103d89295818d1df

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cdb5b0af9b55631981f83826426e1f4ca5e8058d65da02c2235838f18e939234
MD5 d1709731ba2f6c6ab361b789921f0479
BLAKE2b-256 2456b986902adbab74fc37f1ebb2f8c56fff03e0f1606695b75ad79963cbb840

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a43ea0ee177a05189d804bc1e5c032e066129b156f685d988a5f9cd16b661bf3
MD5 c58307b83861d2f2eec6ac3409464152
BLAKE2b-256 2efb36e48fb71a6ee31a7ef2148603b8dcb56d10669c46498462e5b500b50eea

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f8aec57c5d0a15e44426eb8bbbc999dd5283350cd702ff547a1c9645e404226c
MD5 0f7c5d316bfbf4b8a50758c92a28ecaa
BLAKE2b-256 ab4ecc4613c70a456728fc2bbbef8529a3f0bf34f383648cfcc2939514b5e2f0

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4ac7542d4309268090ae97f29dba7893aa4121b668ca87dca2614c880b00f965
MD5 2c3e03952dfc43da55ca27d4ccedd9ec
BLAKE2b-256 d0861cdf2dc5cb4fb4fd2de143e62eef9087bd628c15186598e18c1aedf71ebc

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 32181a6914cc2c5f4c2a599b0dc473f026007b5a85490f12a962db45a03bd254
MD5 707a943b415ff182a1ec6df6e8926e29
BLAKE2b-256 968384fccc20aa79f08ca876d3cb785c4552013a8a6a2c1d184a5b1e927865ce

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b00037bbe78e1932bb8b6dc4d0ae54f8f9bb9ae4154d2ff23173f81b53000066
MD5 7de901f0566f63f6ac1c0d0bb32e7ac5
BLAKE2b-256 bfdd47998bc6368640cb68584d487dae3c333fb49303f581d93bee4d7963dfdd

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 98b6826b336c71a26e6c79549a15fe2522dfd63604309832d036e86846ab57aa
MD5 c3666f48b9da0e6ba85384a36f577eab
BLAKE2b-256 8afdb8f1a8013707d58825ae929f7ff4d4aa1a94246c89dc0ecec8964b8d1e26

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ae6ce1a563f6970f219665eaccc646a327b625c43589ebf4a481ae76bf494687
MD5 02446fc51a4b6bdd7bcb363b25913c7b
BLAKE2b-256 a07e710b645a812acbb4212cdc8d418ec0968f5c6d4f0acc5b67dc656396c4c0

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 539593a594e64f2dfe779c5ccd72d55bfe67400271c569507a5f0abf83c6c585
MD5 8289155a5d870f239676dfbf32b531b4
BLAKE2b-256 823800cfbe3f699e8301c2a3f0a02baa63643228dd12d9a50feed246d4875f84

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 83b99429020c80dc2a24b5ee873789510c2ffafb7501dfaad71c368de97486ee
MD5 3ef20484a60104a8b5373df086cd338c
BLAKE2b-256 ac04f9b049d2443ed851da3af5880ba97c8013b4f57960900b77d585b13ef110

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp38-cp38-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a5e13e0b1dc5e3047efa99e2d86ec93de74598df860f659c62c1357fb4128ad4
MD5 efe28136cb02721881d03df2391dd60f
BLAKE2b-256 942786a904d0b4dff3faad01c22bc0d3de826d56a75f4ed6f633bc637ab95b79

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8641729e8b1948fc949f8ae8f15407d2602e314738fccf0216722c9ab3763ede
MD5 ecc6e90688ecfb6eb30830de6ee2c6d2
BLAKE2b-256 0b4fa9ae4ee427df54e9fda7112501b586ec775d743a5a5d460adc5f75a3a5d2

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d60b23a029168eb189e58915944c81e44418d1ea69f9d09461095896a5c3767b
MD5 e469b00d288bd8c468773238ca9f43cc
BLAKE2b-256 24b4275bcd26159bbb41437920d8d6f0ffde405a1fa16f34c499212e7d23d739

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2118a88cf342448893bce8e0b6ca0a902009721622e77250aa5328acb0892b68
MD5 c617189a6baeb0c3cc4be2beeffe95c1
BLAKE2b-256 70843f245b622279d1d4c28644add69b7a8bad7f24f73944f928c25415a49b9f

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp37-cp37m-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e3b4bb2d2a1ccccdefe0fa31c177a5448da97f123e79abff402a58144b9b4c2a
MD5 0689d806db786817cb25a4772c733ba4
BLAKE2b-256 c0030b238961fc463ad6f6df628c6f5a01f7d3d4183bf539f97a6186676ce12a

See more details on using hashes here.

File details

Details for the file devart_excel_connector-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for devart_excel_connector-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 40a2a5d4817f9a82b3120913917cfd065a2c6ef093262f3730840ce0d1892d08
MD5 728f897a9a95f9f32a1759a874306e0b
BLAKE2b-256 5815b9df9553f80cde074a721c5809c0c1428d95fad8efca848e795d30185a27

See more details on using hashes here.

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