Skip to main content

New level of functionality and performance in data access via Python

Project description

Python Connector for MongoDB

Python Connector for MongoDB is a connectivity solution for accessing MongoDB databases 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.

Connecting

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

Import the connector

First, import the MongoDB connector module:

import devart.mongodb as mongodb

Establish a connection

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

my_connection = mongodb.connect(
    Server="your_server",    Database="your_database",    Username="your_username",    Password="your_password",    ClientLibary="path_to_libmongoc",    BSONLibrary="path_to_libbson"
)

Replace the example values with your actual connection values.

Querying data

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

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

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

What's new

Python Connector for MongoDB 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_mongodb_connector-1.3.0-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

devart_mongodb_connector-1.3.0-cp314-cp314-win32.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

devart_mongodb_connector-1.3.0-cp313-cp313-win32.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

devart_mongodb_connector-1.3.0-cp312-cp312-win32.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

devart_mongodb_connector-1.3.0-cp311-cp311-win32.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

devart_mongodb_connector-1.3.0-cp310-cp310-win32.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86-64

devart_mongodb_connector-1.3.0-cp39-cp39-win32.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86-64

devart_mongodb_connector-1.3.0-cp38-cp38-win32.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86

devart_mongodb_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_mongodb_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (4.9 MB view details)

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

devart_mongodb_connector-1.3.0-cp37-cp37m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

devart_mongodb_connector-1.3.0-cp37-cp37m-win32.whl (1.5 MB view details)

Uploaded CPython 3.7mWindows x86

devart_mongodb_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_mongodb_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_mongodb_connector-1.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 44ab8e4457d3beab6e04f378b168a5e0796e99d1b06c1bad91b5c5b5f295dd45
MD5 1d4bf72df7147f1f4356064b74e9332f
BLAKE2b-256 bf8a1ed5c9f15fe9b7cb17ca256c49bbd26e8dace0a46977a063a42cce0b3c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a105ccd8673bdd03ca108596bb8348a3265e31ef1effbe02a0a8d8cc8de6fcaa
MD5 581e12f1dbef22df62ebcd9b94efe00a
BLAKE2b-256 f0a39239ddd8dbce09e85b70f9653525e318187bdc4a4c868ccd1825131dee0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2d2578768a7013f938ecc1db4e40968d516187639321305a6884eaae5fa3a729
MD5 29db540984660446212e2b1ecda0754e
BLAKE2b-256 e095a1de62ab6594531513337ff03840a301900d1e50263b51e2fe65f74df340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 99a631294db2b6baf1c5ea58204ee1c61f0f9504f5028f81f65fe857bc1033c2
MD5 a9d7614e9bb7a8b8964207030f0dc6e9
BLAKE2b-256 b24c87fc4cbaf1044bce7d571d8a44a786c17c4cb9c998bdca38ab8b143188e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 efe41c965726b9eaf456e1f9d7a009e4d106366e5fa92adc108cb14799631023
MD5 fd4c1c29c621df1ec06224d80d59c490
BLAKE2b-256 3cb73123f58d51a313cf2a0ebb7d1818ac44c70b9a1eab607e717fb03529dc04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 aed965aba74072fb00554136b323e93b995faff37ab8f32aa5adec91b93f7571
MD5 c6f4ff8275a17221ba6af32bae0dadd0
BLAKE2b-256 699c48a66648031693b925f21cb5ae80b49cd653286affc561387054c8cdbee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 95678b5c7fcf89e2fd7fd205fa01d15b614f6fc9dc3987f80c72f471539ab05e
MD5 1da2498ba2ea5f78c53806fb61f9858d
BLAKE2b-256 d0769bb5508d6c591e52ce5721c0ffe975af8359b1ba4b131b7e32efe9157e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 95206b56d09d27add73a70bf1e4e7436d2d6971f0c13484e18b7cff79ffa1d12
MD5 afe6095123d2add93ba57ace5e94fc34
BLAKE2b-256 32d51026fc3fb62fc2fc212b151ca7611fcf435a80ebab0dc6db56124f9c970a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7653c9fdf38a1df0d875f45e1fb9e1067a843db80bdb9a6baeaeff2196123aec
MD5 d86788529b39822410a519f71e7041d2
BLAKE2b-256 42c942a7cd9e44e78f8362a79d7f0aefdb46818360dc5884ab7e89bbadee8c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d9309c1f9f35000e5deef92f3b531abdb1523f29632f2373e6aab2cc5ce4aa71
MD5 75a9d305530c5491e4c3e79a5dd4a936
BLAKE2b-256 dc2c7b946e1ca17f29136c2a3e0184a8d564e2f9ab21f51182ce2c17826d3e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 25d3c7c71a1444810e862dbf07b46d75525e613eacf2ef741acffa5a6a282a00
MD5 3983ac1d0ea3856318f143736e264a88
BLAKE2b-256 49325818c42e497282e66a2fc99015a7241b5e2f39a53b160d2aed6da9140628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e5e2afa8c03fb715d2453f4090361cff6c12312f6b71d5dee7c9acfd2199cbdd
MD5 a978f2a9023da659100c0a6ced2f976e
BLAKE2b-256 37411c7bb135d6420dd85c59e7a37b9ca643376d6513ffefeac7db2bc8d64d4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ded9ea66a209bf1666a8f07c20ef07e6e9593c1313aab645244d2f0f64565e08
MD5 16b3332013e25be19a26f4f353b1d65c
BLAKE2b-256 6c6e8a058e7b60179795358ee0900fc361c02c2671d0cf99616239e0ded9ce0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3c11dd697da09bbf38881c88c9c7e5febbd9b3f33c119797d7644266c7806b63
MD5 df3caf7e0cc9b88d5b3badb6f1996a2e
BLAKE2b-256 10a617a9a91a15d3976883a500ff0b0ca4b09ca0fc183306676877e1ccd47627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8fb703e530a07cf207f7e44370d8263492da0274aa4368b5595549317a71979a
MD5 3edc6991a818ea0e414a63227f9d90b7
BLAKE2b-256 68f2e94157fc2619b051c4923a65ac7af29aeda966e1842688b7fce45661cf69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 738eca8904573b6e1d0013d787de124a0a7374bc8a54d023b88cf57068e700b2
MD5 fed74cd67f089821c9e94ac66edaae4c
BLAKE2b-256 25469e870e5a20adff799f154e16235beec50a6c20a4ceceb7859a4215176078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 83b6710d3e9054a7cede0eb8622e9f3187f8e2a809fff8216789ed7912cffa68
MD5 37d34504c6cfbdaf1ca3d1b0113b0554
BLAKE2b-256 b1e2937a79e66284906826b8b150480b643c531eb712aa84d68bfcf3dc0ec730

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 195ee0708b026c7ba21d16157da8da1a7d3b2acf60064a0f5f73be046712f42d
MD5 25ff625350b617206bc87dbc8ff15b33
BLAKE2b-256 98630075c36aa7fd687ecf42a40d20af701a8282348e2749e0eeac6d56e4dbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 c4c6222171f27e43cda777b29b6dbeb539f5b3e8a630f5016350db9bffa70691
MD5 10d15f24254eb44bf1ad1baaa4472e92
BLAKE2b-256 3bd18d6100a636d8ec39fb025512c249fbc4f8c5088f1a72edfffd68e25d02be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0d6ce6a329dd68195287f5846384af183d6441de4f142a0f90abc2ce48bce003
MD5 a914a94286d137b98e7cb871380ff446
BLAKE2b-256 3884c0a69ced0754bbb690746c784e7ed89325153eeaee322c9f75b727956afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c0a4d1fab846b444585a25508d9ead1b514294c4b2fc6f64c16a8875a451ee51
MD5 a438c9654081220c91b8e2650095089f
BLAKE2b-256 410176a74ad1d2227129818205470d7ebae9f32682235b8e4b6000438a7ff90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 64ea83c8c38e59e65117422c01483ff1d84f57669e106e33d963fd4bbb237706
MD5 1160f960bcc17851eb8b6b043774b0ec
BLAKE2b-256 c8a7e50513f7aac68e855342e31b7350117c5096f678397a01475833e658a1f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ae9eb2ee2ede617ffcfaa2ea677a1896dce507993bb5600a2e5f392a8db76539
MD5 cee11ccace3b882992683779fec3376e
BLAKE2b-256 a33938312f242e23f158d3f366d0261f376b05ee6a8e75a0acc242598d15cccf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 93f63a09696eb98c67c3222b2137148d73849a1adadc5dd5df845f822dfde2f5
MD5 3ca7ad917678dd8676102d829f12838f
BLAKE2b-256 b9fd953182f325fa84ff5dbab8bb274496e1df7309c628eea746bba8679624fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9556a994af1e7c200b641d4eecfcf3561b617376da069d7feed04fe6e2418621
MD5 2aab55657c76632a31f358e24cc58457
BLAKE2b-256 a1743657e9950243a8bc5b17661ffc5e9b684f14c45ed45ccfebaa327a7989ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 72444fb2644f14ed127961cd4c0f9ad96c1868bfde015dbb7f7170f4fb096cdf
MD5 d38d939f4ced49884f96346406bca1f8
BLAKE2b-256 cc3cd2a8b28e6264e7d4d8ad9b1c4e9adfea32e0abc0f9e96fe9a5b1c388550f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 dddab5164f5aba6fa8092c00452ea2c7bd3cb654bc8d9c84242c07723d501d7c
MD5 8c1ef3c8f0953640a0eac1c762829677
BLAKE2b-256 c048ad761cdb4902381a74011b8c6e9f275fccf15c31fbe649f78400bf6dd356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 abbf8256f55646988a7356bcd42cd17ffd376c8d7adf403b4dc70eddc24af8c0
MD5 92dcf6de4acec203e09f083b58d98446
BLAKE2b-256 de67c9c3a4b19f2dc9c5c06eb6c0861bd349a1cab38af88e7a26acd5e0a82c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 214257331b4259ccb4dbf3a709d98a18ab765d01ae65216bc565ccb593876495
MD5 495befd01890861ca938b30a7b27c3e1
BLAKE2b-256 2b37099223a4675771a9ca409e17367d8f209a0d00ae9fdf8a62471a086752af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e20edf767c9caed9ae5ee290901e6eaf9becaf4ea84d0347bee82f5c6c10597f
MD5 c9f69db8b1788cb2d798f9617833c4c5
BLAKE2b-256 07762bacc7d3f077ca26db54c98338d958baf1b1a5683e66f625e617d96325ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 17d551c39ced0242e78e597d6a4c773ba291075adafbc23f33f7a76b5b0e172a
MD5 9f94ae33bc882b7162de53257bc71e38
BLAKE2b-256 944c9bcf85d0739393692730b6f5f96da2ca1b4e2cdfcd15f097f34cfabdba93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mongodb_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26bf62c85dad5024c15c36eaa2ad73723b51ee2617823b1f0cff7fcf58dd26f9
MD5 5166d5e408fca9b2062b735014c7b983
BLAKE2b-256 c4a4a577c323383bc3a6d1b8a6c21d0824054c60e41bf63941b6ecf4031a55e9

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