New level of functionality and performance in data access via Python
Project description
Python Connector for Salesforce
Python Connector for Salesforce is a connectivity solution for accessing Salesforce 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 Salesforce data just like you would normally work with relational databases. Simple queries are directly converted to Salesforce API calls and executed on the Salesforce side.
Connecting
To establish a connection to Salesforce, import the connector and authenticate using basic or OAuth 2.0 authentication.
Import the connector
First, import the Salesforce connector module:
import devart.salesforce as salesforce
Establish a connection
Connect to your Salesforce org using the connect() module method and obtain a connection object:
You can connect to Salesforce using either basic authentication or OAuth 2.0 authentication.
Basic authentication
For basic authentication, provide your Salesforce credentials and security token:
my_connection = salesforce.connect(
Authentication="Basic",
Host="login.salesforce.com",
UserId="your_username",
UserPassword="your_password",
SecurityToken="your_token"
)
Replace the example values with your actual connection values.
OAuth 2.0 authentication
For OAuth 2.0 authentication, first obtain a refresh token, then use it to establish the connection:
response = salesforce.signin(Host="login.salesforce.com")
my_connection = salesforce.connect(
Authentication="OAuth",
Host="login.salesforce.com",
RefreshToken=response["Refresh Token"]
)
Replace the example values with your actual connection values.
? 2022-2025 Devart. All Rights Reserved. Request Support Python Connectors Forum Provide Feedback hljs.tabReplace = ' '; hljs.initHighlighting();
Querying data
Once connected to Salesforce, you can execute SQL queries to retrieve data from your Salesforce org.
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/salesforce/ordering.html
To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/salesforce/activate-a-license.htm
What's new
Python Connector for Salesforce 1.3
- Added support for Python 3.14
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file devart_salesforce_connector-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 39.5 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1163c84ca2131cd7fb2cb991863e5bc8ec80bd24aa0c6240e3c29e40358420ba
|
|
| MD5 |
0dd4cacd7d70a9fbed546a9b2f209707
|
|
| BLAKE2b-256 |
9ba152f5beeb628e490b02ef105601c07458162e47c3a79e05bfeac42187f975
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 36.1 MB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
663639f7180d04701ca22061cb53dc931ec71f313406caeb83a8cf7a00ba5916
|
|
| MD5 |
bbcc935bf31f0133c26ef3bf39a9bdc9
|
|
| BLAKE2b-256 |
5d43d955c8df396f2a12c3cf7025dee32991bb371b49f376abbe10c3201d6465
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.14, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a606b14ce3a0e2c545e1bcce2b6bcb4eb0ef0789292ce3456e54b5d49ec6a11f
|
|
| MD5 |
14afa52c6585e560357cf5ce81df6f08
|
|
| BLAKE2b-256 |
52711a84467826751f7fe5ed7502c8c36ddf501b142f9ae620e2019317d72f38
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.14, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
44c1945f6d3968dea8a1f758d7e22ad1e21b1cffc447f3ba445b8138f1b701ee
|
|
| MD5 |
6819fd6d52a9ffbd6df63dd424017d9a
|
|
| BLAKE2b-256 |
ff5f418a980e9a2a02e5601439045252058657fd7abe1a1e78d1db8530baa54b
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b3b1acbdaeb76c75341f37f8872ccc19ace39e71d0c0d465e967a22b000c89d
|
|
| MD5 |
063e77192c695f0d927598e1f04da72c
|
|
| BLAKE2b-256 |
02c8982112366c0e863edf3eb81dc05a5f99da2f6ad258b7e9cec49c93304e9f
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
23c3d09f1b9a17d5067f4d1f10a19df3d74254f5add52ed2a73f561c8c80e2b9
|
|
| MD5 |
d52dd5398c2e049671e2020ea2bbb7a0
|
|
| BLAKE2b-256 |
1f6d90128499c581abc40b14c0b40233c0f833a0b3df2e09e8af0d9fbce0863e
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d392d59342eed451f5f9342da582282c3c841297186bc0c0dd6c04cbb2e4c197
|
|
| MD5 |
bdd6edd57f5c71c9fde7859f2d9c4a6b
|
|
| BLAKE2b-256 |
af22f1c1b4a16b1c0af58a4f391c5e6298ca6a74e1cf2a3ca951ba4c517714c1
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.13, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9e0063db087f5b4e80326647b65b172039e3e279dd73fc181cb35442e958636
|
|
| MD5 |
d5632f7ed9861580f82e813b2329206c
|
|
| BLAKE2b-256 |
1bc42ea0772ec7676a5a7766257c0cd20aec3433d8a6541793d63a5c2c45dcdf
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd061c5319ee89ad6e238ebbb0aebdc671247e75cd15401166cf9f08cf9fc0e1
|
|
| MD5 |
ad2e293c82ff464756e3aea85644bab7
|
|
| BLAKE2b-256 |
2f62ff40742cae8e533d77f58fa53ae9792d0f2a2283c0c8a96bec0d43fd7d32
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f133f34e75e801b4aaff8c2565b24fe79273db5af91b7d0675d58d7174549971
|
|
| MD5 |
42d2bb5aa0e3a4bb797e10c45b49bfdc
|
|
| BLAKE2b-256 |
98e5ef3b402719ea4326f5dda5ec58d6fb6353539f8acd06a4355be352dbadfe
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1285ba1cdf143d7dc1d4e7593bbf4e5e385a3848989ffb6adc86539678a20e6
|
|
| MD5 |
6824c5bd685d03a0245c238268858840
|
|
| BLAKE2b-256 |
534d36b90afbfadb36ef90be34359c23e682ec6fe209c0b6a67aa0ff07671561
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.12, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3907820aee12daff60aa5aaab05d765a0a0546b13502a8d81a4cdd7ce62ff58d
|
|
| MD5 |
dd5ad22e1193b6cfb6a5da5dc70a9272
|
|
| BLAKE2b-256 |
327651ce28e0c79cff82040c55beea74eb3db80088fd2a7e5ed0fc3c1e2b7669
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3a886d0000c922ef42486859fc36638b56979dd8a1de3e6a66167cf51fa55fc
|
|
| MD5 |
bebfddd331dd0d4b12fd83b02a806055
|
|
| BLAKE2b-256 |
10a4b14fcdf4a9280d6dca8f177d9849c7667696c63ce065a3b8c8351e76dd0f
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1832474d5ee86096e2e963d383f0a70687137e202bbc6c5831c993443c5ef5f7
|
|
| MD5 |
190bc72b2ce0ccc12f79e85143a12d8a
|
|
| BLAKE2b-256 |
fe90b39cc49efa19519e95a2addd1c2596fbcfd6d3b6a7e8657b590a278db07b
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f075159a380b9c1de1d48d67690d0f6df88915cc6bea94266f107c5cdc92ac14
|
|
| MD5 |
3ec87f939b5d8d7d4ee95a94ed1860e7
|
|
| BLAKE2b-256 |
4067910e4d703f4466c58edd7163f6e0a7421fe63ef24dee05451bf321f22671
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a5cfd53a8f7ed84497433d979180d005b73c948a59eeb184ad1cd0152882aeb
|
|
| MD5 |
195489e951a90a3f846639af3800ca82
|
|
| BLAKE2b-256 |
6ed052232ee4d6246a578eeae50471c15a2c8cdae32d7b1329b22577ffad555f
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ffb60113adb184b0ce4a854304eff53c6b58c9ae67110631f6fa53a09898140
|
|
| MD5 |
72037881c340db431ad15af292bf0318
|
|
| BLAKE2b-256 |
c9682ebaa262c8b5efb9920fbfb32ebddb2e8e8d24f9c064ff5bf4d0061069d9
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f91b53332878700e195424b502c6bbed4e798b82ef1ec61dc1518b370d3dcbbc
|
|
| MD5 |
cde11ae022bef249a2d55c34dfe03f20
|
|
| BLAKE2b-256 |
b5f1dc26a55fc5e599f2938ba2974bfcb1de4461429f7102758667358dfdbf58
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8604ed25eeef412692ec8125f610036fb429b4fb22e7569f9891d3744e055bb
|
|
| MD5 |
44bdd533dcce272ea13029e4bb58bbe8
|
|
| BLAKE2b-256 |
2c8dfb218978c610ed6db757c10c53b4d7b43e6e46681088dd4d8d83576b8d4d
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e76f6c72c191e85a0fb2d6a02461d3f9f8f8447df341571efedda104607c2fba
|
|
| MD5 |
fd40ff1aeb396671eb965d47b4a73983
|
|
| BLAKE2b-256 |
209c1ba715c5050b44d23e26155f64e58090d7e122742aee7f9b649a3500048b
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a3856a24028ddfc8a1b4d63eede8b27cd3cc91fccc4a11366c5f2ae384a1e2a2
|
|
| MD5 |
4b17d3ea0204a8cfcb3c5c96878c30d4
|
|
| BLAKE2b-256 |
c7bbbe37e2a01cf45c3dbb84e00ef773088aad1a4003dca90f1aaf59fc0135d8
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92dc1a00b83a54359043c5e9db45d136defd009142c3bbaabfd77baa9a4eda1e
|
|
| MD5 |
8f2fb860ba9868443deb415ec95b3d8d
|
|
| BLAKE2b-256 |
9a4be90b38ec729cab25e347724b9b3968dc26db978f08060e1f5c1878dcafd3
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07a333cd32082837a1cb3b67b1116c388597e4f72560fb08ad4cdba0e8c982ef
|
|
| MD5 |
94068e76c1d80853b99544fc8b340162
|
|
| BLAKE2b-256 |
a6f3885397417ce24537ae1b3809cbbf625696083d617b9380cb0e4387c1fd66
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
54fbcac3e4f4a5f486a0e6c74d9bfb2151689a326e7d3378ad237520487c6a6e
|
|
| MD5 |
a608969322b005241e43feb3bb49e93e
|
|
| BLAKE2b-256 |
bfee6d15c80bb86f29d79e8d57c50e69f40088250baa33f2d6b3af6d71c596a9
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85f72d52f70d0c8a3e7292de3433fa18972636839eae21f10848dd3bbd4cd6d0
|
|
| MD5 |
ddd8c4dd80b4f511ae353c18f3e8d559
|
|
| BLAKE2b-256 |
eeb9e78bcaa4de3c2831e75a3b27aa9229d3e441209d7a7c66b8a2d742f3a7bc
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp38-cp38-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp38-cp38-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ff784d5e63fc9b5ccde3c8d8cc2205f1476fc2562240086c293b970e6b16fe0
|
|
| MD5 |
2fa19e64539e5f39f3070bec1d2f3f83
|
|
| BLAKE2b-256 |
aaf8c68e7187c92a66a58c726348428d0155d09d2006c4cedad16c4b512a1086
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e395ece63a286e20d18737886fbbd9ac26786ba6d03ceb6992f436e576a5b529
|
|
| MD5 |
5107ce1ed804553854e86e7dcec28fc3
|
|
| BLAKE2b-256 |
c8f4aaab7bebd80a12e016457f870f2bf7bd5d62af87bceda7109fc14d43c87a
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 71.8 MB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97bf692c90b09710e0885efa554b454cf52a6f4fb5942d46d03d37f5f0e9e1e9
|
|
| MD5 |
c7d042a1cab4be4011a70d9aa3a51592
|
|
| BLAKE2b-256 |
523997f80fd2c3c8ddbd4f3c5204b3f64e59136eb57ddc356df030977ca6bdc2
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 38.4 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93b72696d2b69d847cca70fe691c673f2f00c64b6f6ffb8abb97adad003b51ca
|
|
| MD5 |
b86f624283e2556aea3688de1d93625d
|
|
| BLAKE2b-256 |
9bc2fbdd74bdaf86b6bae78fc365b3887e15896882210576d9f4de1992839af6
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 35.2 MB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a5d16be4f57402756a00b2f14673a17e58b4bfe6ad7bc4f754a0c255d21ea83
|
|
| MD5 |
731ba0aa44e42b631dad99c23c00dfac
|
|
| BLAKE2b-256 |
147d3dfa6e8e6b4efcc756c010f8fbaec462b5d57152f04f2bcda8c6f05c7430
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 37.2 MB
- Tags: CPython 3.7m, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e3491790796d179d3c37d83cf943d7480c3e5add4a237ecf563b3426aa6d4f00
|
|
| MD5 |
8ff03ee4814f77d7c64d4f26fc354944
|
|
| BLAKE2b-256 |
038f80cb35ba410a242684942ed133556be16da46909a7373329889840b57010
|
File details
Details for the file devart_salesforce_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: devart_salesforce_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 70.0 MB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6091d04f795dc1f792a6941bfad429a816a31a577e70cbb4b356ce9f4134407
|
|
| MD5 |
299377d5c3b3411f432bb97ba74f6b26
|
|
| BLAKE2b-256 |
3974a6bd2938d78f5bba1d74e365c5dbaaaa7ff97404a340000b134cf623e0f2
|