New level of functionality and performance in data access via Python
Project description
Python Connector for Dynamics 365
Python Connector for Dynamics 365 is a connectivity solution for accessing Dynamics 365 Customer Engagement (formerly Dynamics CRM) 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 Dynamics 365 data just like you would normally work with relational databases. Simple queries are directly converted to Dynamics 365 API calls and executed on the Dynamics 365 side.
Connecting
To establish a connection to Dynamics 365, import the connector and authenticate using basic or OAuth 2.0 authentication.
Import the connector
First, import the Dynamics 365 connector module:
import devart.dynamics365 as dynamics365
Establish a connection
Connect to your Dynamics 365 environment using the connect() module method and obtain a connection object.
You can connect to Dynamics 365 using either basic authentication or OAuth 2.0 authentication.
Basic authentication
For basic authentication, provide your Dynamics 365 server URL and authentication credentials:
my_connection = dynamics365.connect(
Authentication="Basic", Server="your_dynamics365_url", UserId="your_username", Password="your_password"
)
Replace the example values with your actual connection values.
OAuth 2.0 authentication
For OAuth 2.0 authentication, provide your OAuth credentials:
response = dynamics365.signin(Server="your_dynamics365_url")
my_connection = dynamics365.connect(
Authentication="OAuth",
Server="your_dynamics365_url",
RefreshToken=response["Refresh Token"]
)
Replace the example values with your actual connection values.
Querying data
Once connected to Dynamics 365, you can execute SQL queries to retrieve data from your Dynamics 365 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 product")
Retrieve the result set using one of the fetch*() cursor methods.
for row in my_cursor.fetchall():
print(row)
Ordering and activating the license
You can purchase a license for the connector on the ordering page:
https://www.devart.com/python/dynamics/ordering.html
To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/dynamics/activate-a-license.htm
What's new
Python Connector for Dynamics 365 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_dynamics365_connector-1.3.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 41.6 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 |
9c64bb9dde06a47edabbec90c04580672f5cccbcd663135bd319fb0b203dd688
|
|
| MD5 |
90c8569a296904e69a14f3665e4ae2f6
|
|
| BLAKE2b-256 |
fe8932c754e3bafc67cf1f35a6f4f886280895f4a3eeaa682e827e17fcd6c64d
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp314-cp314-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp314-cp314-win32.whl
- Upload date:
- Size: 38.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 |
5a3646bcdf6c78cbc4b147d16ec9f29b96a53ddb3d0f309a9fe54fa57b938007
|
|
| MD5 |
0a7dc45d40c396dcdcd51ea5fef7afbc
|
|
| BLAKE2b-256 |
9c76cfc0e85a90ae1e82bb62a6b693f42846f7f11f9e388cabeb7ad3464f2760
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
6f0c73e172dc32a13ac91429eabf3880668b3911d74662d7243862f39c8980e7
|
|
| MD5 |
89315520ba284109798fae25a71fc77f
|
|
| BLAKE2b-256 |
74fa652b5ef7fc013d602606ad769956a6195eaa501d2e4e363d42eb3ad2b85c
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp314-cp314-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
c9d52e132756bc2de45f9c5516912b48a747b6cbd758e9ffac8b3bc6cbc00701
|
|
| MD5 |
5aa024bba6fce268a33f538dbb3a482b
|
|
| BLAKE2b-256 |
d4de8939ab001b667422fda94be7ab23bd8c2fe104bce95c8cb60153e786026b
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 40.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 |
bcc20e09d064d218fe2a398fe2b2ab04028b4d2593679a836e0278202a3b382e
|
|
| MD5 |
89d0e387f2fc86f3c2a5125c776af60c
|
|
| BLAKE2b-256 |
6f932a255e348c7e285e4bee225387a1b1ce46dcc2497666b55e64e0ad12e26a
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp313-cp313-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp313-cp313-win32.whl
- Upload date:
- Size: 37.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 |
5816a3fec67500b15bddc9d2fbb1b569f5c053d7baccd4e3dcc2fde4cc7eece8
|
|
| MD5 |
730cdcefe83c48dce545fe789e72894c
|
|
| BLAKE2b-256 |
7bdfd1dae1bc5fc0521591bb1360010b1a610357a0d29df909f7148752135765
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
8f12f4cf6c0bbfee31e7483e00f3b1fedc2db5a772c592a42df3dc6ecfc9f5b2
|
|
| MD5 |
f0a2ad88a40bdf92f94aa80bb7cebfd2
|
|
| BLAKE2b-256 |
da64b659da27e263f56f56ac78ea08851f19fed99b5a9103a0fb6a9231181622
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp313-cp313-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
075a83483120d2bb096fac0e0e05a93c61ca4055f016614534f08a0d0ce4d5f4
|
|
| MD5 |
9c357bf47ccc095094e47e7ef51d1bc8
|
|
| BLAKE2b-256 |
350fefe28f2c597b70850a94f54c835fa2e64c06788e85bc30a239c259ffbe8a
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 40.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 |
0c8f680b225e60c5cf800be9f97d2623ae516ab8ee2fa77472a0c9ba6e0e5d4c
|
|
| MD5 |
e74c1ac1816e6fc2491b67e3c70aac58
|
|
| BLAKE2b-256 |
df750947ce08c7fe4865ba7df7016a51d00987165579f8b64846ef0179cc0723
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp312-cp312-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp312-cp312-win32.whl
- Upload date:
- Size: 37.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 |
47a54948ba425777eabc871456d93f580f808c4a7a6914fbea91da29a146e611
|
|
| MD5 |
42a4017614724e9c445cfbd845d07776
|
|
| BLAKE2b-256 |
42b1a409d0c7924d6dbc4a3078b5809765d6651cd4f25f8e3cca34b35e84b6d9
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
1665cdf49e1674409f4d6ac72a5cf0215741481397e2de7df959874787f686aa
|
|
| MD5 |
80079f7a3c300d159d51f6ba18cb7619
|
|
| BLAKE2b-256 |
db6f9b5c02a2cf39b837ca365650aaea27ff44a2213c02e3aaf190ee92746af2
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
77907d2533dc64a969f2b0842475570d7ac50ffa2bdbaaaf7a766ae5c97b5c4f
|
|
| MD5 |
12ce1a8109ec5fa592026649e2a14937
|
|
| BLAKE2b-256 |
8792941d6277a7b0ce4d5e35b67f0c0b7dfe9d8de6ec2459568a911be2090ea2
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 40.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 |
1effd0e5a967ee0fb9e52a6e57306dff64dcc8c5e2b511aa5dedc9d6a6d1f356
|
|
| MD5 |
433e2100541c8f9990cad5a51876bfab
|
|
| BLAKE2b-256 |
e2b1cfc0d4e42375b3f69b217f39fdb7d21c85cf301c5fb9de2cd98d099b431b
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp311-cp311-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp311-cp311-win32.whl
- Upload date:
- Size: 37.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 |
7e1abc64f88cfa3b9073a3ea697f5e1aa38e384f03518ac1dc47b1781703c21b
|
|
| MD5 |
bee17fdf8c60894a8653bb51869fccdb
|
|
| BLAKE2b-256 |
c5d09b616da745716980f5fc0addb10f4da36fa01f7fdf0068ee8a677482bf9c
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
b9c1cb6cb6433347fa61f5695870274e238ae2b2a2b6c0444dc16061f176d8d3
|
|
| MD5 |
4489e4bc198bd13adf22abbcb134ecc0
|
|
| BLAKE2b-256 |
6d76434606e6632313d6ef3491666c90a63466c0f4d5e56bd83317d8b34bdd26
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
34f973d7ce02fab576c2205d6e2d35a471d65a024418f5bbeb71691e31f300d0
|
|
| MD5 |
8c19a42dae5980aa8b5352f48bbac5b6
|
|
| BLAKE2b-256 |
4dc8ea3ee3451769f72e1e10e2ffc530ef4ddab24dae8e4e8ee6675666087162
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 40.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 |
8dc1ae27caab20f1bb63478fd1dbd00716477f1f22789c3727e210898eb04551
|
|
| MD5 |
4f31ba701e8989a45e7b45b2f0c095d9
|
|
| BLAKE2b-256 |
97513d9b8f9f49da379c0ab43b4148c35dd3fdc308d75bf71afa2026e29a1b64
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp310-cp310-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp310-cp310-win32.whl
- Upload date:
- Size: 37.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 |
5322b1cad411c56e3f0b27fe3fc2cf40e0d690a1b7eb13a3aee8d845a83f10f4
|
|
| MD5 |
1fc7260f5502c7edf5e754221c7ca649
|
|
| BLAKE2b-256 |
0358e55d50bfd00f7eceb28cb067509f51a1b7bb0a3a685d89fd8d805743e5e6
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
272af24daf5d1150ac00e4351f885a52d97d7b4de10880f09d3779d36ffe27ee
|
|
| MD5 |
1c61b4b5d2ccc9a5141b89c2681964e4
|
|
| BLAKE2b-256 |
9b2ec39ebc534a59ae3fda8fd0382615bc0526356e790ff15937f85bb31ae5f5
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
9c93a70a1db90fd24c83dbe318d8fc1722a0ef180d9804f98c7167697a529863
|
|
| MD5 |
e9d037a2f1fe5fa65046d7b8ab9226b5
|
|
| BLAKE2b-256 |
66d18a63889c76c4106e3c66b07c86ac1e0544c25d7a4f8785b0fa12439dc884
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 40.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 |
19d3e436e17ebba91a1656692322c836829e30e24e538834ff6d7d062d95a5c2
|
|
| MD5 |
08f236d1f96e7aae039f91737072edd4
|
|
| BLAKE2b-256 |
77d05b07c1184aaefa25594233866f601d0231b807ca164e9869bd7c70d5219d
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp39-cp39-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp39-cp39-win32.whl
- Upload date:
- Size: 37.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 |
c3e4b897557753bb303d1e217bc41d76dd942b549dce9966b66316e5e0bb1896
|
|
| MD5 |
a9c993e21db013d79d08aa6dca52bc36
|
|
| BLAKE2b-256 |
bccfedac65ddc50c9bff026e4da8834a9fd8bc50d39a0c1afad088fa5bbd822e
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
c1a5f564e35bfa010b2cacc2581cbeef2b3879bc8893ea2788d2c821f8a52c3a
|
|
| MD5 |
bb78a22ce1c20f11ee91b91c146c5c4e
|
|
| BLAKE2b-256 |
339f7e75d77bb1946512569d8e091201f7124beb73c99fd302631e9f7f7d46ac
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
cac64c0b913d1a3b205a3994b251cc260ee09d2480897954db7f992333bf5534
|
|
| MD5 |
e2346a111c64a07234b92406a756c3d9
|
|
| BLAKE2b-256 |
28cbba98659946730f9386026659d1de58e26fdf11a93d315c600009ac609908
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 40.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 |
bfc78f370bff06f4886fc02ea3c6b95c5b02949bd941b3617bcb17d166ee2ce1
|
|
| MD5 |
0fbdbb5543d3fb0874025e31d4b47991
|
|
| BLAKE2b-256 |
b7a9f8e306eb78ad8c68b4b68d122d45080dd4c7898d29a856c9839a926d53d9
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp38-cp38-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp38-cp38-win32.whl
- Upload date:
- Size: 37.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 |
420c182dfbbe975dd2bfa1025c65b48449558995553caca85125fdad62143a7f
|
|
| MD5 |
155655c5a6dd4abc0c571bc6e26030e4
|
|
| BLAKE2b-256 |
58cecd6fb6f34365083e1641c36ac79b089a9e7c687057da26a1825a63142d81
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
2856311366fb476d2502a6eb861ab15d2b887856c0d4f444b9d8c28840fa69c3
|
|
| MD5 |
aa4a03ae7f2e851419e05e1218d4ad01
|
|
| BLAKE2b-256 |
1b24ad59237aee4a2084eea1153fe4b267d1a66a334901d098adab9efc500f77
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 75.7 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 |
ed154464d0bdfad2699bb58207c061ebb4d5e6784fdffa2fe23af5d8969bc2eb
|
|
| MD5 |
540ad2313ce412fef5a04a337b4c2e9b
|
|
| BLAKE2b-256 |
0c224b6df6b16279917a5c3d016e88ec6837cb750512394d6cfe7a36cdb16620
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp37-cp37m-win_amd64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 40.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 |
691b1e03521ab1a74e1eca23b2dd5dd428a68645157244ff68806e21c6164322
|
|
| MD5 |
9d7c09d20301e053c4b09dacf209858d
|
|
| BLAKE2b-256 |
8d0b95c447603fbd9f665cc180eeabfb2d2e51326116232d6aff5e1aa082fd04
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp37-cp37m-win32.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 37.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 |
6baa66a0703d115e82d2a4a16932d74be0ea7232d10bd6db171f2aca5bf0ddbf
|
|
| MD5 |
29a8a18c11bf6d9053879b9e95a703ee
|
|
| BLAKE2b-256 |
b5b5a38061fbf15f5359f6146fcb3bce12437cb73775d4b45751291222d7cc01
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 39.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 |
a2e16c89907dfb722582e4d4b003a9daf671ffa591d8b1fa669b7ed3ca3d7dfd
|
|
| MD5 |
90b2541034b695777373df599c8fd221
|
|
| BLAKE2b-256 |
0ea522b4d14ca156ba2adf6c501ac3c5794d49fa77beaf483667b894913edea5
|
File details
Details for the file devart_dynamics365_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.
File metadata
- Download URL: devart_dynamics365_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 74.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 |
5b271527791fc16aeb8cee78c29a03009e8570788e5367c3f8435ac2450d9749
|
|
| MD5 |
100421269b43a34967890308c23579cf
|
|
| BLAKE2b-256 |
5f1c8d0db51315dc3eb8e9a582f5c5e9111682389a53279129385e6d70bc5330
|