Skip to main content

New level of functionality and performance in data access via Python

Project description

Python Connector for BigCommerce

Python Connector for BigCommerce is a connectivity solution for accessing BigCommerce from Python applications to read and update data. It fully implements the Python DB API 2.0 specification. The connector is distributed as a wheel package for Windows, macOS, and Linux.

Standard SQL syntax

The connector fully supports the ANSI SQL standard and lets you execute SQL statements against your BigCommerce data just like you would normally work with relational databases. Simple queries are directly converted to BigCommerce API calls and executed on the BigCommerce side.

Connecting

To establish a connection to BigCommerce, import the connector and authenticate using basic or OAuth 2.0 authentication.

Import the connector

First, import the BigCommerce connector module:

import devart.bigcommerce as bigcommerce

Establish a connection

Connect to your BigCommerce store using the connect() module method and obtain a connection object.

You can connect to BigCommerce using either basic authentication or OAuth 2.0 authentication.

Basic authentication

For basic authentication, provide your BigCommerce server URL and authentication credentials:

my_connection = bigcommerce.connect(
    Version="Ver2",    Authentication="Basic",    Server="your_bigcommerce_url",    UserId="your_username",    AuthenticationToken="your_auth_token"
)

Replace the example values with your actual connection values.

OAuth 2.0 authentication

For OAuth 2.0 authentication, provide your OAuth credentials:

my_connection = bigcommerce.connect(
    Version="Ver2",
    Authentication="OAuth",
    StoreId="your_store_hash",
    ClientId="your_client_id",
    AccessToken="your_access_token"
)

Replace the example values with your actual connection values.

Querying data

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

Execute a query

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

my_cursor = my_connection.cursor()

Execute the SQL statement using the execute() cursor method.

my_cursor.execute("SELECT * FROM employees")

Retrieve the result set using one of the fetch*() cursor 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/bigcommerce/ordering.html

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

What's new

Python Connector for BigCommerce 1.3

  • Added support for Python 3.14

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

Uploaded CPython 3.14Windows x86-64

devart_bigcommerce_connector-1.3.0-cp314-cp314-win32.whl (35.1 MB view details)

Uploaded CPython 3.14Windows x86

devart_bigcommerce_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp313-cp313-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.13Windows x86-64

devart_bigcommerce_connector-1.3.0-cp313-cp313-win32.whl (34.2 MB view details)

Uploaded CPython 3.13Windows x86

devart_bigcommerce_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp312-cp312-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.12Windows x86-64

devart_bigcommerce_connector-1.3.0-cp312-cp312-win32.whl (34.2 MB view details)

Uploaded CPython 3.12Windows x86

devart_bigcommerce_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp311-cp311-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.11Windows x86-64

devart_bigcommerce_connector-1.3.0-cp311-cp311-win32.whl (34.2 MB view details)

Uploaded CPython 3.11Windows x86

devart_bigcommerce_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp310-cp310-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.10Windows x86-64

devart_bigcommerce_connector-1.3.0-cp310-cp310-win32.whl (34.2 MB view details)

Uploaded CPython 3.10Windows x86

devart_bigcommerce_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp39-cp39-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.9Windows x86-64

devart_bigcommerce_connector-1.3.0-cp39-cp39-win32.whl (34.2 MB view details)

Uploaded CPython 3.9Windows x86

devart_bigcommerce_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp38-cp38-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.8Windows x86-64

devart_bigcommerce_connector-1.3.0-cp38-cp38-win32.whl (34.2 MB view details)

Uploaded CPython 3.8Windows x86

devart_bigcommerce_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (69.6 MB view details)

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

devart_bigcommerce_connector-1.3.0-cp37-cp37m-win_amd64.whl (37.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

devart_bigcommerce_connector-1.3.0-cp37-cp37m-win32.whl (34.2 MB view details)

Uploaded CPython 3.7mWindows x86

devart_bigcommerce_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl (36.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.34+ x86-64

devart_bigcommerce_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (67.9 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file devart_bigcommerce_connector-1.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7b0232992e1072a11635e2b886d80ed65be7c6aacc3ab70c5092c38acb53e7f3
MD5 e476529ac9e162f38ad620dcb0bed951
BLAKE2b-256 a19800daa4f370ab2f8c93bcdc943942fd05a4e2d97499ab5a84f21755244eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ada96f5d2437b8999b4a295b356550a81cbc6c128ae416bc0cecbc1c7a68adfe
MD5 0ef8b5625c101e6aa6b6e551a99f8c59
BLAKE2b-256 feab8741058243451f4251830f56fd80762c3cb69ba38c575400057defe5f648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9c86ad513fcba644be3233b46574da324dbad826415f1ded7131618a8a4f1f84
MD5 5717de9b6c401f5254c2476011e8a481
BLAKE2b-256 f14009d5a8588cb77933d74651cd01bdb1b9cb7efd0e75c2cf57dc236e902d4d

See more details on using hashes here.

File details

Details for the file devart_bigcommerce_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e5101756bfc881c98e6b507a8826194a5863a27657f38251e74fb77cc5a3616a
MD5 efbc6c6a1ce9e7dbc28e0cf4afba047b
BLAKE2b-256 16c3b5c5c652e8eb7dbaa211cf62846288eab2d1993852baa42af3984b70b201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43fd0e494721ab6e99f39aa1d9be8670d1cf5bd9264b3e525f40e50109e15d5d
MD5 736d079d46d1688eb834e07c0c669279
BLAKE2b-256 d8fd09dd936da86aeb6c4b135012fdba1c9cc5f4ea2fbfe41ffb83eab62a1b58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 68f47eead98b3361ac2f395d47fd5435551010f670259ad23107d8208e1ed44d
MD5 e32a5122632a2f6718f909ae31648e9c
BLAKE2b-256 6aabbac4218eefe3bfba24a3bc5174f61c0924736f844ef3902f17076a62c5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1cfc831225840034e73426f8d1bc177471c5ebd0cdfa217e58abadec31d5c0f2
MD5 59713eb170e32addda5dd5a302da91ca
BLAKE2b-256 017eaca4fcb4aaed3f5a71c14b2de5e1dfabd064cde49bce59808ea82c2eebe2

See more details on using hashes here.

File details

Details for the file devart_bigcommerce_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 229c8370fb598166b6e2c8497e4b8aafb7b90cfd31dc85ce41ac10630a519264
MD5 723588ae8c433c686036134c7ef21968
BLAKE2b-256 d6e271132d2897b0774e36aded3dc5f627bd46b5785618bbda4a55e33283ce4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cdaf2c5ef4cf88adcd0bd1727205d780f3d14e481ab75582ad87ac88878b45bb
MD5 47445f2f665161c05b4c48d3cb5e8675
BLAKE2b-256 75a7cbfe26ab21d19876635bfa2ceb3ca82b0d405c4b727cdc982a9160dea916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2ae330031094db8ba1cbdaddb7ab5fb04d608fd7b4dfbf140f1f9cf1b0868c3d
MD5 8c5b20861e60758176aa22bbb1f87500
BLAKE2b-256 5851bdcae08a7513452ff7f5790ff7eb0af7e24af287cb66ca640d3986d8cc1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 029a188c7e1e63f8ca26150c302d5587f072757305e20fb85f04bcd7adc98adf
MD5 aacd0e1ebb09b0bfdebc43d44c6dc8dd
BLAKE2b-256 a8e39f6d68be658b44f08adee0c8510de15f05c68b618bc7b10092d1d7a81cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 55d09df0f541937d0542a2906a4e04258c0a1dee841c4d3f5aa04369629df4f7
MD5 f68ceeeeac811dfacbb8a29a84932164
BLAKE2b-256 9ca8c866d5f9e13beb259e759d89dc43f25e8b99b66a52a9955e22082c0b849a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9615c3560bd3597b615ea95fe411950d7e0e3f8368f2f660d78b1e174b24ea04
MD5 3cf5384e8491073dc5e7db91ffc43044
BLAKE2b-256 ecf4b590c70ee8effb9c79541c9b961799e47024d93afea024029a17c07a20af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6bc3ae050ac1f8b71f215f78397183deab45881c143c81288cf42e689ac3d92b
MD5 6d37f4c561507dd2faaa882619c05ad6
BLAKE2b-256 512617a60cf920a90e552aa2899fc7709fbe10d8c47c859fcfd3f5a7dfb780b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 00fb5a0303087780835cde61621f7d0b7968194e1995c95177a3535ffb300d77
MD5 a34c91956499aa361c717e2c7de8321a
BLAKE2b-256 34a8601663c763a90c9fb9cf134cea122d2d5821442251e0becf33145c1f2491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2d00492dff8f82a07ff98ebeb02caa908d4f913c37e626e4538b1f799fb27b99
MD5 0aec2f11ec96be0e41e1466c1d212cb3
BLAKE2b-256 1ef9e106042f488d83be61385f93d6344fe62976e3a98302bed2df3b1ad5cbd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cca7ebd919bb1cbf5ccd63482e5c7bce03ce203f728d5ba7d537440899fcfba2
MD5 2989e2e1ac9a1ddc690e126cc6788556
BLAKE2b-256 89db56d8396ec059afc7ae40731bb6e67d3481514fb6f658d4852dc3b8fe8d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1ac2c660c27dab8bc4fda3dc2406956796a102f998c349fc3313863c8f6867a8
MD5 69d7f8a548a066da3754f634145fbfa5
BLAKE2b-256 2af3d9b726c92c8db1dcfc7a452adad38edb31e3197f2a8937279b70df138c11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 b8211dcc7bbbcfffc5f9da541dc033f6c55a151155d7757aa7d4ecd0a9fdd0ad
MD5 057df373e3d5ee729ce6d747ff150d14
BLAKE2b-256 04e326dc093fa36dd19782264655e07781f710d3f7f5028c8f3196c030e45255

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3a59b83005dac8104a2d19350354281527eca010e5a72ba2c2c7e65979849964
MD5 6de6bd7c75b2f5d45f8a84b3606672b2
BLAKE2b-256 dd4f008f483042c7021307033ab7c4085ed4d44a0a4c59afca0840a9761af3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3890daf29f0a175da588ca2a8a51d5bf73c7f3ff8e67a12254e7a47e81d2d924
MD5 d246be08da22036948d2b586f39a9887
BLAKE2b-256 bdbbccce1a4f32e4170a3bd6b149fc2dd0fd4e3f597172792671aac10c2de69d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1e2000cce0754dd27c7603e2a2cee4e388ffde5724072d6f4ec108c945a72383
MD5 431e5c82a8879dace7557bd23a237cdf
BLAKE2b-256 adf52c9cd19d8d0cbb5c7d324d744e70d6341904d66535a507d9b87f8d80fe12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 0346aa5a6b70ea040d96848073c835fa467c8e84b785a4055be30b95747a57f3
MD5 fd7c7034b9c8f1bf89a46a5432ecbb2e
BLAKE2b-256 d9ff1e864873cded1ea0e8aab6fbf9e9eb47cd808b925d9170cbdcf749b0ef0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 10a71b0730531f668b12e33a7c6bb135ec9298f0e85c94f24998f54c2cec75fb
MD5 acaf1820f2c058ad40ce7d88b89128c1
BLAKE2b-256 a2a2865a3faaff85250eb3ae1559ac72fe6c9721c759b24a6ca74afd8034834c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0a28dd5ba5cc8e9294d62c062ff30bb3f2604f3c81addab7b3970d5ccad4ac69
MD5 e183588b51704f6963ef7eb85ec6e4a8
BLAKE2b-256 0bc19c4b7cc2c1ef6c548f48083f39d814246adcbd9e5c0646a45a6d5f6980c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f0197231a565190fb47ec014d0eac9eecf584c744ee89cc7cfe08cb87f4584df
MD5 5ff0e47922f21555d80e0461ef307c79
BLAKE2b-256 d8240d782ecedbb73caa94cafba9a4da696c55724eba5a36d2b5e6e1b0b5d00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 fe65b9fb23902a2cfb7402593c08e9d7fb8179a23fa954081e6aac428095f2e0
MD5 51f7e0490f90f16f29ed7f3295a15148
BLAKE2b-256 2d122235086745d9379fbcd4bc2555c5b0853f0f8db074b73bd3830f6b3b7977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 72e7899d159128ca75a5d5db1aa112d4b12d69065afce23206072ba3f320e6b8
MD5 c28b2e4897970d36da3b6be16f54279b
BLAKE2b-256 d06e0077a5c54ac6131ff44eb0ae6a4329a0d247ad2760f6559e2152f532bfe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 db8940ff44cfdfef95c45f2dddbc8b5b0d965bb02dffac1ed1690f1f3d2a6a1d
MD5 bd7e40e7ff77cf3db35bfc4d88b96920
BLAKE2b-256 5df7c0700b77285ab2a4c9ab69cb6fddac30d23cecff906c7953c8f8fcfdab2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7fa4ace236db35da53d888c98c22de60156bcc09fd51036ec93bb439e2d745ca
MD5 ea02cfe96e7412f66a9af162aaef8899
BLAKE2b-256 6caa14b62da879b1c7373505f708670131849e5a0bbc608fb1e1f521e3a523f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 a38a29066689d8e2917d35a221e5f05180d60852f8a58e4976b357e3a85435b9
MD5 1de43d2f358160cb3ddbd0b76ac24e03
BLAKE2b-256 3f5e4aaaf43f8c1f182101e55af1013ce089b871819eb23336dffbe00a8b8ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_bigcommerce_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bfa08a8d1b355b9a196198bd996f0ced607e2ead0e72e38f6688fff216914bf
MD5 ab9153f47682cf91c88d80ca72cdebe8
BLAKE2b-256 0df923d6c6f31d53853695c22ee396d2833f934ff4f1b36a678f12c4cee8796d

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