Skip to main content

New level of functionality and performance in data access via Python

Project description

Python Connector for xBase

Python Connector for xBase is a connectivity solution for accessing FoxPro, Visual FoxPro, dBase, and other databases in DBF file formats 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

The connector enables you to establish a direct connection to Visual FoxPro, dBase, and other xBase databases eliminating the need for the client library. A direct connection increases the speed of data transmission between a Python application and an xBase database and simplifies the deployment.

Local indexing

The connector offers an internal data indexing mechanism that is way more efficient than native DBF indexes for complex queries.

Retrieval of corrupted data

Connecting

To establish a connection to an xBase database, import the connector and use the connect() method with your connection parameters.

Import the connector

First, import the xBase connector module:

import devart.xbase as xbase

Establish a connection

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

my_connection = xbase.connect(
    Database="path_to_db"
)

Replace Database with the actual path to your xBase database file.

Querying data

Once connected, you can execute SQL queries to retrieve data from your xBase files.

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/xbase/ordering.html

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

What's new

Python Connector for xBase 1.3

  • Added support for Python 3.14
  • Improved support of the HiPerSix database format

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_xbase_connector-1.3.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

devart_xbase_connector-1.3.0-cp314-cp314-win32.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86

devart_xbase_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

devart_xbase_connector-1.3.0-cp313-cp313-win32.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86

devart_xbase_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

devart_xbase_connector-1.3.0-cp312-cp312-win32.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86

devart_xbase_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

devart_xbase_connector-1.3.0-cp311-cp311-win32.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86

devart_xbase_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

devart_xbase_connector-1.3.0-cp310-cp310-win32.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86

devart_xbase_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

devart_xbase_connector-1.3.0-cp39-cp39-win32.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86

devart_xbase_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

devart_xbase_connector-1.3.0-cp38-cp38-win32.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86

devart_xbase_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (5.0 MB view details)

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

devart_xbase_connector-1.3.0-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

devart_xbase_connector-1.3.0-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7mWindows x86

devart_xbase_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.34+ x86-64

devart_xbase_connector-1.3.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_xbase_connector-1.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bcaea573095ed71e3523eccba68b6c85250368063d0aa391abc104422c179c50
MD5 b41b970d8eb3c72085da3711d10d73ff
BLAKE2b-256 02a23eca325134926da68d76ae356237946781bfcfcb615ae5a515fd4c4996ec

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5663a93130bee22ac230595e7f45c93edc1822c09c3dc4f490aad0d6e84c24f8
MD5 bf18c9b9a632a347f90c2cec2a14214f
BLAKE2b-256 8d6a558310846c091bf8bc052c8e69289229dcfab7ca1f1ef568b335c7c64f39

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 61b26ec462f25d4b8eaf0388e8e30b55a2e29c119473e76fb067d412f35cd669
MD5 ef9bc5c31b73fde2375c740dca83fddd
BLAKE2b-256 96c55aae5cf965277d6a198dc8e72f3e83e31584a4695acc5ef455ee2762c3db

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2233a81bf93042af5c5d145090e08fefb471e98268eaa405d235c04e359ad7d1
MD5 c8e41291e1394ae5b303f9919c7e4848
BLAKE2b-256 1cf1a152952acd99c5bd357f5f48f409a4064247713c929798b48b7e13647baa

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba6b56fbebf6e759ac56fc88efc6bef01acb77d305fe128a8d5341d417f58fb9
MD5 afc93bf8e81d2b45baa3e22e13f9f910
BLAKE2b-256 c46ec89d251420f63c6abc1748dbc32d2cbe6f5d1b681508a4d67abb7ecae5b0

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 65bd80693b248046176c5d4db3969badb59397b3089da0b9789d24094ad8f7e6
MD5 eb949d989bf3276ba9f9258e406f03da
BLAKE2b-256 97f24314c6cd53665d75ec06ba27d884c5ef68c2078424e07217de0c80591ce1

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8254a9054dde1f01400112fc2f9392200cc5c83b44b501b320ea30feab67dfdd
MD5 a21b5f45e51a85d8fc1702c1497fabdd
BLAKE2b-256 e4ff8c1374d0a9de6f3162f396cd024a8db0c44a3df17dfcc9ee9d2c8eb4b731

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 715bd0ace765afbdba2834a4a75cc84cc12fcd83400c7d70371d54d4e3fcc44b
MD5 bda0add2b688bab9d58175defe7e5926
BLAKE2b-256 f28bb3d830ea44be697cdca59dc66f68e103ca71b5775451d0db25a739352dda

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64bf27eb38cd48bccaf3a21cc70f8b353fd965f81b1b96495163c4887ec4df06
MD5 23edac120ef6fbce3972f31a94a9b073
BLAKE2b-256 bf49db624479682e78795d06d69b3f568fdc10e2549f215d074bf50f79baacff

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4d6425bd976f4fbdbafb6cfaf6ddcced1a9c2a144929b1d948e60e018f12f766
MD5 e43c6dab5903eedaeb452a849edaefd2
BLAKE2b-256 1f0742095c09695cc602e9f0f951a507497752c78e06513bb06367ce02fa6276

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d39ace26f456cb250583c06ae34e5d59a569263ed101dfd13c2d4fa252a8013e
MD5 870594b3ddea421e720dfcffd76a2282
BLAKE2b-256 e9a1cf2b7b18034f2aec3fe346ea06b57eee6b66bb645be44200c390e384776d

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4d8ebcbc87fc26ff8defee5e4f4e6123e895978dc1177f6c5adbbdaf7b231a9c
MD5 83d8b65a7adba9de0977747a3f3f67ab
BLAKE2b-256 4bb4bf73ff35826e226a743283ccd3e6ffc70a95780dcb561c9889e55ad34f39

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d6cde6563f2e44532463c769216acb62e9626a22b18c191bb6ea307aaf68f77f
MD5 682d6ee5b2d73ffcc912e1776dfc73e1
BLAKE2b-256 0b0afab66ee3427530fc552dd6c90a9099ddaaa77550f4e26c1fc865a13345f5

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d0e8d5a47cfd4271f3986293f39a15bd8427baf7061f13c9d31884d542a7014
MD5 0542b0a85471bb6df6f3d540d6c763db
BLAKE2b-256 d8156a1de0c63ec7347914edbffe736612a5028e5615c0b0106ad69331b560ec

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1c4a85ca7001c98bcbbaf9a20383fc378657cd645c24c25e0ef428e7323cc67b
MD5 f67b7c0207ae7dc4d08853640cf7eb44
BLAKE2b-256 b2f515987decb0f194e96d0fb18e84d90466e526a63f9eeac070703de5ac086b

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8c14730c8ae6c2ee45e75138eb2e11ddab12e784c1c2d9d57ffab7344a9ad1f1
MD5 e8f997065ac65f2e31fc5b381f23e29a
BLAKE2b-256 7ff613285ef7124745b1f54a59e111c1bee3aea94d3348926069a58fb5a6fab1

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f431e01b17d823b800b23b2c979500c1e76c3ead6d90fe4df8541b286008769
MD5 46f044cf62da5c65a83d752156114878
BLAKE2b-256 5680cb43ed2a64b9ad0b398aa176412b80c02457dfaad2672501a6aecd9d4bd1

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2dd20b9542d5ca628e17d3c7fef0c9cd3d24712fe0926b77b1dcbc4cabbed4f4
MD5 be5f65a327460c2904e7b7b8c2b15efe
BLAKE2b-256 ce48447d0e214963dd6a992bfcb136bcb1fc4ae8f5287259a0ea5193a04cac8d

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 164f263f86638c47c518588507eebd6d3c33405db1daad10f0646b98b992e9f9
MD5 63d4d544c5107a1cb3dbbba72da60b74
BLAKE2b-256 3ec19c9c37318772e3e00cf270f989815c35ce359166215408e356c52ff4d224

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b87a9fef931ba893caf4cad9a5187f80ea81c5fdd6f438e3d00fdbf3d582f7b7
MD5 c7a8e0a1c4e3c7434ff44956b2cce908
BLAKE2b-256 e01b0a4baacd424abd8701e602ec0bbfa196adf667c29a0ed73f28a2beb938ca

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c092b25b5636652d35d8ae18d4a44f29d72aeaa6f10c6846ae7a217ac04fd07b
MD5 20f547cd7f52d6c33efcb807f54d4751
BLAKE2b-256 a6c77ffbb08079bc91673b73db86d4040b25773aaa2d5088e1f0320a30e65b2c

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 218440c207ad1c0bb8d79b4bf78bfa4a17863d78a461a8454d1f1cc303240577
MD5 2879b4635ed2a94304f8f85f5fcefaf3
BLAKE2b-256 5a1eac9d1de13769596c04e29b90d9b36efec5c1f4cb1b7569b5291d48e8f2c7

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4ce9aa376cc9df33ff667eec15a2b1947b6152401f3c0c89c20e778601ea31ed
MD5 80e26182b7aded8a14b38d630d0582e4
BLAKE2b-256 2527473adc5997dfce136c09bd189ab02a9b8a4f8dbd1f7a773af3a44f2414a1

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ff6f7ae1cb33961084159f727871eabd36e984f6c344d2e1bf8afc447d94af7
MD5 ac7268e06328ec46f3a219abcc83d980
BLAKE2b-256 2cc02665e9ad548444f85a1744d38e37f4ad66760ab59f72ea6dda04513f092f

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c24b17b078c55a70e9a6310de73f346ae67f51629d1817126c52324cffd822a2
MD5 b3b8ade513f4bb88a5038b45f1595352
BLAKE2b-256 f5751542d06e5df41a686264ce630b6f4e75dd49510e973813f57afa047f7c9b

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d54e64226edbe72c1ad46c539c271b41074f85fad183ce4b83be58419658c38c
MD5 2a2cf4b327d3ba70bb054c172746312f
BLAKE2b-256 36b97459d2961015627e1bc7cb071f4f7117efba7653750e223c0c718af59da3

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ada962f8a87d7df0372a8853e7b847e1c4ae82452fcfa1ccd7b6ab49b5f857da
MD5 be3a647ed65f1d04ebf3df23b90cbd29
BLAKE2b-256 842c0b8502510ae7a5906cf81461ebb321fc910f4f99779123128ccbeb96db16

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ba2031097ed7dd84efb9489e7f9e19fb3856470d6c455067d73958bcee6bc7b6
MD5 c39c65712636019ca2f3926bb4be4b0c
BLAKE2b-256 16354d78afaf03fc04d1b882a5045ac10c152be3912fbcb2f678cbda4be28652

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 70ac6155b30d945806fce39dbb4cd8b07156f80eb51874a668cd5365ec639a74
MD5 6d28809a4207015f7a0478948bd341f1
BLAKE2b-256 1df98c0b24a1bab7dd059ce04d46908b33740bb20a8583457b2e6171c0402d5e

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6cf69785975e91490bf507e417a703170033f7ae7636d9a19ac5e336414c88b2
MD5 68f95afd25910b401db78fffe74dcb94
BLAKE2b-256 67cdc39ebc978b0f5b1fd42e0b41dfd36961cb1b2bee97c31a282d735a22aa48

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 63fed5c8d9ec7abde6d2ac4edba84fe3fa46e0ee628a59105b385821d6648290
MD5 9adf3b80808ca6f5fce0cf5575c6a364
BLAKE2b-256 1f347f5d3aad37b2d9113f822379ccfa1bb3c2b50c011a4b915952c1e178ede9

See more details on using hashes here.

File details

Details for the file devart_xbase_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for devart_xbase_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cea806f2aa27fd8063227bfb1da4a3bff1829ee0fd9c8fb0414a17b8accb2762
MD5 f57a741fc2cf759e74305e2c6fce7f7a
BLAKE2b-256 c10779d1a1b81d211ba8de1e54ff955c88ec943861c7efda1e90c308b700b975

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