Python driver for MongoDB <http://www.mongodb.org>
Project description
- Info:
See the mongo site for more information. See GitHub for the latest source.
- Documentation:
Available at pymongo.readthedocs.io
About
The PyMongo distribution contains tools for interacting with MongoDB database from Python. The bson package is an implementation of the BSON format for Python. The pymongo package is a native Python driver for MongoDB. The gridfs package is a gridfs implementation on top of pymongo.
PyMongo supports MongoDB 3.6, 4.0, 4.2, 4.4, 5.0, 6.0, and 7.0.
Support / Feedback
For issues with, questions about, or feedback for PyMongo, please look into our support channels. Please do not email any of the PyMongo developers directly with issues or questions - you’re more likely to get an answer on StackOverflow (using a “mongodb” tag).
Bugs / Feature Requests
Think you’ve found a bug? Want to see a new feature in PyMongo? Please open a case in our issue management tool, JIRA:
Navigate to the PYTHON project.
Click Create Issue - Please provide as much information as possible about the issue type and how to reproduce it.
Bug reports in JIRA for all driver projects (i.e. PYTHON, CSHARP, JAVA) and the Core Server (i.e. SERVER) project are public.
How To Ask For Help
Please include all of the following information when opening an issue:
Detailed steps to reproduce the problem, including full traceback, if possible.
The exact python version used, with patch level:
$ python -c "import sys; print(sys.version)"
The exact version of PyMongo used, with patch level:
$ python -c "import pymongo; print(pymongo.version); print(pymongo.has_c())"
The operating system and version (e.g. Windows 7, OSX 10.8, …)
Web framework or asynchronous network library used, if any, with version (e.g. Django 1.7, mod_wsgi 4.3.0, gevent 1.0.1, Tornado 4.0.2, …)
Security Vulnerabilities
If you’ve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the instructions here.
Installation
PyMongo can be installed with pip:
$ python -m pip install pymongo
Or easy_install from setuptools:
$ python -m easy_install pymongo
You can also download the project source and do:
$ pip install .
Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “easy_install bson” installs a third-party package that is incompatible with PyMongo.
Dependencies
PyMongo supports CPython 3.7+ and PyPy3.7+.
Required dependencies:
Support for mongodb+srv:// URIs requires dnspython
Optional dependencies:
GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:
$ python -m pip install "pymongo[gssapi]"
MONGODB-AWS authentication requires pymongo-auth-aws:
$ python -m pip install "pymongo[aws]"
OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests, service_identity and may require certifi:
$ python -m pip install "pymongo[ocsp]"
Wire protocol compression with snappy requires python-snappy:
$ python -m pip install "pymongo[snappy]"
Wire protocol compression with zstandard requires zstandard:
$ python -m pip install "pymongo[zstd]"
Client-Side Field Level Encryption requires pymongocrypt and pymongo-auth-aws:
$ python -m pip install "pymongo[encryption]"
You can install all dependencies automatically with the following command:
$ python -m pip install "pymongo[gssapi,aws,ocsp,snappy,zstd,encryption]"
Additional dependencies are:
(to generate documentation or run tests) tox
Examples
Here’s a basic example (for more see the examples section of the docs):
>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), 'test'), 'my_collection')
>>> db.my_collection.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{'x': 10, '_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
... print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
... print(item["x"])
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]
Documentation
Documentation is available at pymongo.readthedocs.io.
Documentation can be generated by running tox -m doc. Generated documentation can be found in the doc/build/html/ directory.
Learning Resources
MongoDB Learn - Python courses. Python Articles on Developer Center.
Testing
The easiest way to run the tests is to run tox -m test in the root of the distribution.
To verify that PyMongo works with Gevent’s monkey-patching:
$ python green_framework_test.py gevent
Or with Eventlet’s:
$ python green_framework_test.py eventlet
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 Distribution
Built Distributions
Hashes for pymongo-4.5.0-cp312-cp312-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e57d859b972c75ee44ea2ef4758f12821243e99de814030f69a3decb2aa86807 |
|
MD5 | f4ac1f31ce092433b7dcfb74aa7203f6 |
|
BLAKE2b-256 | c059900b1eacd90bf00980fd05abacfde216450684c5b34608c71850629661f4 |
Hashes for pymongo-4.5.0-cp312-cp312-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77cfff95c1fafd09e940b3fdcb7b65f11442662fad611d0e69b4dd5d17a81c60 |
|
MD5 | ba38de2249d542ed7710a0ca9f0259e8 |
|
BLAKE2b-256 | b18aa3ccde2312ad9c35f134aee061fe31e69833da72118f0cbcd160a337b9e3 |
Hashes for pymongo-4.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fff7d17d30b2cd45afd654b3fc117755c5d84506ed25fda386494e4e0a3416e1 |
|
MD5 | 842eef89636b342fea34f10ab871c1e6 |
|
BLAKE2b-256 | 46c86e390e8e932b0c221ece274eb38b2a43dc50786472ea31c6d7dae9f006f9 |
Hashes for pymongo-4.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23cc6d7eb009c688d70da186b8f362d61d5dd1a2c14a45b890bd1e91e9c451f2 |
|
MD5 | 8c6c4225ba3907a006419ff4da97a1ca |
|
BLAKE2b-256 | 930b461ceec310c6042f3b076cd8aa0acaeef3213f404df9b71f5ee0c9f3b611 |
Hashes for pymongo-4.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 496c9cbcb4951183d4503a9d7d2c1e3694aab1304262f831d5e1917e60386036 |
|
MD5 | a30d95f62f2e28dc4d6bbefa0be50c95 |
|
BLAKE2b-256 | 52c7631c27c7a30ab5d9217c6a3ec3c36c428627cba4b6a29b06fecb4a204faf |
Hashes for pymongo-4.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9a9a39b7cac81dca79fca8c2a6479ef4c7b1aab95fad7544cc0e8fd943595a2 |
|
MD5 | b211ca0c848ed942ce65f9d2802279ef |
|
BLAKE2b-256 | 464e3f805fd2bc1c378cf2359a5eeb89ce6ebce1deea14eaeb046a719338399c |
Hashes for pymongo-4.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6422b6763b016f2ef2beedded0e546d6aa6ba87910f9244d86e0ac7690f75c96 |
|
MD5 | b5374cb532732b55b08d71c198a885f5 |
|
BLAKE2b-256 | 496444d2010a264656d392fae75f9c6b13a9c84498dce3fc06aeb1a8d500f78a |
Hashes for pymongo-4.5.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5a27f348909235a106a3903fc8e70f573d89b41d723a500869c6569a391cff7 |
|
MD5 | 470802e3e978d491f398bcbfca68f78f |
|
BLAKE2b-256 | 53aa771b2eafc9720ba14bac29429f10d735107130368b0d46364d01769372a1 |
Hashes for pymongo-4.5.0-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3c3525ea8658ee1192cdddf5faf99b07ebe1eeaa61bf32821126df6d1b8072b |
|
MD5 | e1262a46167a87214ed0f63326d524cd |
|
BLAKE2b-256 | 4d887b9bfad1ad6269e0b9e0bb39d093aabc27837da4ccb93391cda68f580984 |
Hashes for pymongo-4.5.0-cp311-cp311-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d2346b00af524757576cc2406414562cced1d4349c92166a0ee377a2a483a80 |
|
MD5 | a9abea70400a84d1fe9887b1107e134c |
|
BLAKE2b-256 | 7d5770c0f761c9118e6e7d246feca5473983ddaec839d73b6ffa20d3816bbac7 |
Hashes for pymongo-4.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a253b765b7cbc4209f1d8ee16c7287c4268d3243070bf72d7eec5aa9dfe2a2c2 |
|
MD5 | b7cd09f4201d2434a9e60e17cf1146a4 |
|
BLAKE2b-256 | 77c8aa46a179d476a06630cf9a5463c5edc06b938fa8894b99194ebbdc775d76 |
Hashes for pymongo-4.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08819da7864f9b8d4a95729b2bea5fffed08b63d3b9c15b4fea47de655766cf5 |
|
MD5 | 089c0a520e4a45f30247570d1d9a142a |
|
BLAKE2b-256 | 28505b40ce26db3730b3728a9ff3d34414874bc90aeb81046fb26e3c1ffd8890 |
Hashes for pymongo-4.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd4c8d6aa91d3e35016847cbe8d73106e3d1c9a4e6578d38e2c346bfe8edb3ca |
|
MD5 | 670b6d8cc14ad0152d00621d53843c7c |
|
BLAKE2b-256 | 68c14948e472c408cdd9d7586015e7fcf23da512714cd3ad51e90a9eed1cac0d |
Hashes for pymongo-4.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9aff6279e405dc953eeb540ab061e72c03cf38119613fce183a8e94f31be608f |
|
MD5 | 34d734cc9f2c19a31dc970fa0d237f03 |
|
BLAKE2b-256 | 1777d607049092de6a467846912a3efe37a6e684b4e36b1bcce812c8410efec6 |
Hashes for pymongo-4.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8027c9063579083746147cf401a7072a9fb6829678076cd3deff28bb0e0f50c8 |
|
MD5 | facb5997b3f7398c9342059c99b1620c |
|
BLAKE2b-256 | 833e87ff6e82ec689af8a3b645fc3cba7ae35b8f7697a5f16cbf38aaedb4442f |
Hashes for pymongo-4.5.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ead4f19d0257a756b21ac2e0e85a37a7245ddec36d3b6008d5bfe416525967dc |
|
MD5 | 3136ad60bd3e73e7d84945a898420403 |
|
BLAKE2b-256 | de67949da6f882723be8ca8ef63678d7f999b4d9c235c656c0376ea8b6c041d6 |
Hashes for pymongo-4.5.0-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21b953da14549ff62ea4ae20889c71564328958cbdf880c64a92a48dda4c9c53 |
|
MD5 | af7e684ad9859af6b39a8d7452d6abff |
|
BLAKE2b-256 | 7a88a6b3661960518dbc656b67fefb85efff874d58ba0f3c31bda216d5726a02 |
Hashes for pymongo-4.5.0-cp310-cp310-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a7166d57dc74d679caa7743b8ecf7dc3a1235a9fd178654dddb2b2a627ae229 |
|
MD5 | e873390aebd6359983495aa527d141e5 |
|
BLAKE2b-256 | 1cc629a5b20c14e01455a686de834945d223657b515a3f5643004a7efd98371a |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fe48f50fb6348511a3268a893bfd4ab5f263f5ac220782449d03cd05964d1ae7 |
|
MD5 | 641a59a28165e8710fd487f5b680e35c |
|
BLAKE2b-256 | 4e507e0e838892507d99a6b981824c73617cba567a56a802a518d49e12da77b6 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1bb3a62395ffe835dbef3a1cbff48fbcce709c78bd1f52e896aee990928432b |
|
MD5 | 35a43aa02f4d46e65c7a3d9c8f465b16 |
|
BLAKE2b-256 | 2c1dc7f08d3898218d16ef5af6c858ac8b332ae9dfad30e7fab499a3f44b6958 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d64878d1659d2a5bdfd0f0a4d79bafe68653c573681495e424ab40d7b6d6d41 |
|
MD5 | b0c0236e01ed6740b7da0b03411c7a1a |
|
BLAKE2b-256 | a0cc047a8f0cd12167e6ae32df62ed3fd3a6b4a8ed25bcb7b90751aa46088ff2 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 152259f0f1a60f560323aacf463a3642a65a25557683f49cfa08c8f1ecb2395a |
|
MD5 | e26ef46b1d13d0bbd96a977434ca75fd |
|
BLAKE2b-256 | 032d1ea8cca6e7fffd217bac4b8b513026b032628bdef135ff0bbe9c3d98bb69 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7591a3beea6a9a4fa3080d27d193b41f631130e3ffa76b88c9ccea123f26dc59 |
|
MD5 | 3f7c2686337b2555406771f1b4928ce4 |
|
BLAKE2b-256 | 4cafb50696624e65c7372918e384f4b62ab3b42b6627a07cfc75179dfcc94528 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40d5f6e853ece9bfc01e9129b228df446f49316a4252bb1fbfae5c3c9dedebad |
|
MD5 | 265b398e7337cd67fcf3fa7e5fe6e346 |
|
BLAKE2b-256 | 6a25682e092024d0697df7ddfb806309c8eb86dff554dcd32d0c6deb59fa0f54 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f4b125b46fe377984fbaecf2af40ed48b05a4b7676a2ff98999f2016d66b3ec |
|
MD5 | 413b7c0780d92a5ec4964a8088e2d0f8 |
|
BLAKE2b-256 | 08e2014282c6605c09c704f39dd0a2419a705076667cb6a4b6de5be240383fa8 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 76a262c41c1a7cbb84a3b11976578a7eb8e788c4b7bfbd15c005fb6ca88e6e50 |
|
MD5 | 3416531214c57afd344ab5a758633922 |
|
BLAKE2b-256 | dbe81ae30654fdec29338a293b936a617bcdf68e810c9dca3708c8122b6620b4 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33faa786cc907de63f745f587e9879429b46033d7d97a7b84b37f4f8f47b9b32 |
|
MD5 | 05e340a800526da5c44ef44a8aa696ff |
|
BLAKE2b-256 | b4bb2e918b45a699faa0bf15599e37c0260423b6b327b9d8b7053ad28ae78743 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e33064f1984db412b34d51496f4ea785a9cff621c67de58e09fb28da6468a52 |
|
MD5 | d5a84b140c86135799c15b863adb4679 |
|
BLAKE2b-256 | 28b1779dee74f0631ddab0486114722a71e536dba27bba0d85ceb42cab1ece29 |
Hashes for pymongo-4.5.0-cp310-cp310-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfcd2b9f510411de615ccedd47462dae80e82fdc09fe9ab0f0f32f11cf57eeb5 |
|
MD5 | dd7eb07c9cc881b7e030774ab086fc2f |
|
BLAKE2b-256 | 9378c0c510bcab3a2daa31a1839a30d16ff2e54f6d768702a248a47d127ced00 |
Hashes for pymongo-4.5.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d4fa1b01fa7e5b7bb8d312e3542e211b320eb7a4e3d8dc884327039d93cb9e0 |
|
MD5 | c01256cc0c29710aa09c48dc59957a0a |
|
BLAKE2b-256 | 76ea9c84561b42ea769b19f701959d838efd585c3a89019e41ad5d5513dedca8 |
Hashes for pymongo-4.5.0-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63d8019eee119df308a075b8a7bdb06d4720bf791e2b73d5ab0e7473c115d79c |
|
MD5 | a0d2bb72f41db7a1255cacbffa0f9662 |
|
BLAKE2b-256 | 530f7346c401e1ab2a81fe36932ec81308771e5a6ceec19662de53a7f4170b98 |
Hashes for pymongo-4.5.0-cp39-cp39-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 465fd5b040206f8bce7016b01d7e7f79d2fcd7c2b8e41791be9632a9df1b4999 |
|
MD5 | fe6238813376995877c8b6cc1ecb91ac |
|
BLAKE2b-256 | 4b4dbc474c29c46cce0dd14e2756bae3660a2b35caa158aee2be86cb830f5afc |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80a167081c75cf66b32f30e2f1eaee9365af935a86dbd76788169911bed9b5d5 |
|
MD5 | 61da5384f2e375c4cfe22d21848f0f0f |
|
BLAKE2b-256 | 803d1aa62953edb17a3f03f4e20c291c09fec37db2a27a43bfd0b9230456a9d0 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbd705d5f3c3d1ff2d169e418bb789ff07ab3c70d567cc6ba6b72b04b9143481 |
|
MD5 | e49bc5ef29bcba16cd5e1e18588bfc8c |
|
BLAKE2b-256 | 7d8c0fc258118a0057a77f36237bb5654b4f8c8a82d00d2360fb0a39faffd5f8 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56320c401f544d762fc35766936178fbceb1d9261cd7b24fbfbc8fb6f67aa8a5 |
|
MD5 | 59512ca21401b2640ea81061ec63de67 |
|
BLAKE2b-256 | 2dd47b63fbd454c93b98d9ab411a71b81d14789a20631d0992d3dd2ba444ced5 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37df8f6006286a5896d1cbc3efb8471ced42e3568d38e6cb00857277047b0d63 |
|
MD5 | b00b09f8aa23ac42db38be2ae469d8e1 |
|
BLAKE2b-256 | ec67080508eb6515b6707e0c540772bb21746c3e3afc5ea40859d5bd548dc98f |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5bbb87fa0511bd313d9a2c90294c88db837667c2bda2ea3fa7a35b59fd93b1f |
|
MD5 | 8ed202f8ffa6c72826634f2160807c84 |
|
BLAKE2b-256 | 68d7d5a5e7f797339b8b2bbf753052996f96524f9b2a83cf42f66784b8445b98 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf62da7a4cdec9a4b2981fcbd5e08053edffccf20e845c0b6ec1e77eb7fab61d |
|
MD5 | ca32d17e9a5c813f4d09a7de91ef6dd3 |
|
BLAKE2b-256 | b756475a057aec64170fb8a6c503be8d5c7ea6844e7c59fa08a6caaeee922485 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c42748ccc451dfcd9cef6c5447a7ab727351fd9747ad431db5ebb18a9b78a4d |
|
MD5 | 8477705e27a3492cf94df6d6d7500bc9 |
|
BLAKE2b-256 | 7b57b88528fa13f35a4d05834e4457948eb77b88563ed45de1a29ef98a03eed1 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1b1d7d9aabd8629a31d63cd106d56cca0e6420f38e50563278b520f385c0d86e |
|
MD5 | 0cd67c2a6b18602e5fbfdea261fd4094 |
|
BLAKE2b-256 | c26a66514c7ca3bb14a83a6b83ea3b73cfeea786d78d16ed0bd244cd922709c3 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f076b779aa3dc179aa3ed861be063a313ed4e48ae9f6a8370a9b1295d4502111 |
|
MD5 | da3f0b75b6e9a5547ad6591800cf2acd |
|
BLAKE2b-256 | 137410db676908f4180f8458c150c70d02151809ae65b958b883c520f178f58a |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58a63a26a1e3dc481dd3a18d6d9f8bd1d576cd1ffe0d479ba7dd38b0aeb20066 |
|
MD5 | 2418ee2fdd7e0201a8a15016a267384b |
|
BLAKE2b-256 | 96fca32109f5dc9de2c8bf80176f38622341c84e68c52a4e543e0b30de91c930 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9c04b9560872fa9a91251030c488e0a73bce9321a70f991f830c72b3f8115d0d |
|
MD5 | e9bb9967ba66615b7082cac88dd38e18 |
|
BLAKE2b-256 | 85c89ecf2e4bb133390733fb56bd6963c0c6b4c5f41adf17e402174be5d728be |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53f2dda54d76a98b43a410498bd12f6034b2a14b6844ca08513733b2b20b7ad8 |
|
MD5 | 9ac644de8d786bcb155d6ffd5621a0a6 |
|
BLAKE2b-256 | b29b0eec9091858c18fdd91039c537e4a6caef696695580ed239bde8f336490b |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 505f8519c4c782a61d94a17b0da50be639ec462128fbd10ab0a34889218fdee3 |
|
MD5 | 30755f66f331a04e97e20f0ddc5e44c5 |
|
BLAKE2b-256 | 1a04cb05d00c66715b48db4d0ea4b2fad3ad262051d7248d43c2a9c888a66601 |
Hashes for pymongo-4.5.0-cp39-cp39-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc5d8c3647b8ae28e4312f1492b8f29deebd31479cd3abaa989090fb1d66db83 |
|
MD5 | 271a75ac488570464003fca410e1b2b8 |
|
BLAKE2b-256 | ea51b8229e9633db6f80aef00359530ad894ce12ff0c1557c9fc1ec9e2a69bff |
Hashes for pymongo-4.5.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8543253adfaa0b802bfa88386db1009c6ebb7d5684d093ee4edc725007553d21 |
|
MD5 | d85449a523261ff823e8ccda2708a312 |
|
BLAKE2b-256 | 6e7ff012591bbe4b016123cd34cc3f64c0804ada561bf43733a93aecfa70e324 |
Hashes for pymongo-4.5.0-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b520aafc6cb148bac09ccf532f52cbd31d83acf4d3e5070d84efe3c019a1adbf |
|
MD5 | 7a49c423e7eb81d8c50a3facb36e5f68 |
|
BLAKE2b-256 | e105fd245fa1e2fdab20f136b72df19cc5301f3dba50e5bcf63220cffacad2f8 |
Hashes for pymongo-4.5.0-cp38-cp38-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b25f7bea162b3dbec6d33c522097ef81df7c19a9300722fa6853f5b495aecb77 |
|
MD5 | 7047b17ee956e254e39428b6e0d1ab92 |
|
BLAKE2b-256 | 525f25f6765fc76ff8d22e37ffce9c9eb35d0bfcc7b6b2b108e285fcf9f82696 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3754acbd7efc7f1b529039fcffc092a15e1cf045e31f22f6c9c5950c613ec4d |
|
MD5 | 6243f9672be5e49d32764e6eec62883c |
|
BLAKE2b-256 | bfb763cebc24f4690b85d0c91fe11a32ad14e791ff499f4054cde8f1a4ea08dc |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 74c0da07c04d0781490b2915e7514b1adb265ef22af039a947988c331ee7455b |
|
MD5 | 88c40888732840a8b8edb67302d6a14c |
|
BLAKE2b-256 | c2268106f0b249f07825b6abe2285fe878f078be08853106e8c37f0a910352c7 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a0aade2b11dc0c326ccd429ee4134d2d47459ff68d449c6d7e01e74651bd255 |
|
MD5 | 4f7e7184b7bbaeffda145a9a0ab5f119 |
|
BLAKE2b-256 | a241d1ac5315d550e31cd9765d2fae55ef340cf1076cd0c6ced5af11035a986f |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6d2a56fc2354bb6378f3634402eec788a8f3facf0b3e7d468db5f2b5a78d763 |
|
MD5 | a4f0b8596b96a12fd85281a7305be1f8 |
|
BLAKE2b-256 | f963900f6702f4a8aca3d7309aec921fbebff390dd5dc5412ba2dc8fa880e7e4 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 168172ef7856e20ec024fe2a746bfa895c88b32720138e6438fd765ebd2b62dd |
|
MD5 | 7b8c687c812a12cc429d1c956e0a0840 |
|
BLAKE2b-256 | 4e850a0f2ecad5f6b5e38597356ef3528ccc153b27cb161a28c40d534acc3763 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2654d1278384cff75952682d17c718ecc1ad1d6227bb0068fd826ba47d426a5 |
|
MD5 | bb37ea0602dc58c90f32d733dc2f212b |
|
BLAKE2b-256 | ac08f6e4fa693f449240fb10398227a5fe82a63eb648ea0b68081b63c9daa517 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 631492573a1bef2f74f9ac0f9d84e0ce422c251644cd81207530af4aa2ee1980 |
|
MD5 | 4eb0fff2845bae8d11c59ae115c9dafb |
|
BLAKE2b-256 | 58d2446d95a146d29d10e18947e643c65a444cfe893306ff099d071401b09bb0 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1240edc1a448d4ada4bf1a0e55550b6292420915292408e59159fd8bbdaf8f63 |
|
MD5 | 9ee266082a45474962e4cc6b22344846 |
|
BLAKE2b-256 | a0d1c18c4f0ec406612132461838ae6165add381f5cad87ac6848e53d0eb1ad9 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e249190b018d63c901678053b4a43e797ca78b93fb6d17633e3567d4b3ec6107 |
|
MD5 | 3a06c544eb48bed7e2b23b9158220c54 |
|
BLAKE2b-256 | 4928f960acc8f54d9e8209a578b0afba37a9ba8ffc6cb245dbbd4f00ad8d39b7 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2988ef5e6b360b3ff1c6d55c53515499de5f48df31afd9f785d788cdacfbe2d3 |
|
MD5 | d101361198beb9860fe2dc5f8c5a50f8 |
|
BLAKE2b-256 | 855198ad6ae802d576871aa9eef3bd60fcedfe2a76c6e9ee2fad2a8d4c932a6d |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8127437ebc196a6f5e8fddd746bd0903a400dc6b5ae35df672dd1ccc7170a2a |
|
MD5 | 716e3978a94b9a829de332d4878c3e41 |
|
BLAKE2b-256 | 7bb6a795b92847f0b47a1222fddc5ad6b12ff1453e17b8a164de5541b9478e9a |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4fe46b58010115514b842c669a0ed9b6a342017b15905653a5b1724ab80917f |
|
MD5 | 5f8a89932318d98c51d8995d029ffd61 |
|
BLAKE2b-256 | f6ef28ec948e38335f64bdd3ca4bbffee68d37c99e0debfb3232f12b28455f89 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 840eaf30ccac122df260b6005f9dfae4ac287c498ee91e3e90c56781614ca238 |
|
MD5 | 697a8b3dea61a75ae059631494e0ade3 |
|
BLAKE2b-256 | e276de789b465ee4a807e98bf5de704ba770a2b001035544282dfc979ce7bf69 |
Hashes for pymongo-4.5.0-cp38-cp38-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e559116e4128630ad3b7e788e2e5da81cbc2344dee246af44471fa650486a70 |
|
MD5 | d8f1653eb24c7aa4dd5f6a3d42f5b8b1 |
|
BLAKE2b-256 | 9b00aa2a4e307c3af167f00ddd01ac10905d8f2bb5e6aec35d0a912b4dd59327 |
Hashes for pymongo-4.5.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 435228d3c16a375274ac8ab9c4f9aef40c5e57ddb8296e20ecec9e2461da1017 |
|
MD5 | fd8ec86bcdfb3b74b0f7b7cf02dbfb7a |
|
BLAKE2b-256 | b9e4d61f3843cac34fe3c2f5d71177c67d0e3fc06ce7a2c02b3f075a6903a9c8 |
Hashes for pymongo-4.5.0-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2227a08b091bd41df5aadee0a5037673f691e2aa000e1968b1ea2342afc6880 |
|
MD5 | c71869e8a7652bc3baeff77f7f26f158 |
|
BLAKE2b-256 | b08539773f7dacd06fd32e56e7b9e674aee387e71045eca2c223edf67c17d40d |
Hashes for pymongo-4.5.0-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49dce6957598975d8b8d506329d2a3a6c4aee911fa4bbcf5e52ffc6897122950 |
|
MD5 | 45b5596310d4cfa535deb87af50b66a0 |
|
BLAKE2b-256 | db84f8ea6d74376f76936a9a37ef7c11221d2d55bfb9bd4fe7ac67348286803b |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 41771b22dd2822540f79a877c391283d4e6368125999a5ec8beee1ce566f3f82 |
|
MD5 | 02a08866e5373cd4a5ca46b47a25ce16 |
|
BLAKE2b-256 | 00361f49f27f8c2a0b457984ac9168ef073cb4dec32a32a8e47b97120534997f |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d67225f05f6ea27c8dc57f3fa6397c96d09c42af69d46629f71e82e66d33fa4f |
|
MD5 | c0db2cee5941e8e3100e1ced63255f0d |
|
BLAKE2b-256 | 23c63aa68c96e6f75310879b5276e9e90c7744aee00c184d339b62ac7cffea5f |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d79ae3bb1ff041c0db56f138c88ce1dfb0209f3546d8d6e7c3f74944ecd2439 |
|
MD5 | b9bc84b52043b57a0eca52f5ae0d24f3 |
|
BLAKE2b-256 | 5011c25de0fb88e0c37ad2ac00948adba1718fc3b8550a98af94f50fcae67327 |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b33c17d9e694b66d7e96977e9e56df19d662031483efe121a24772a44ccbbc7e |
|
MD5 | f826aa7089af732c8db3a91e4cd063f9 |
|
BLAKE2b-256 | 425e6b8daab6b91bf62cdf5e63d363df9d06b08b65e5f246eea8c1be8929c038 |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e1f61355c821e870fb4c17cdb318669cfbcf245a291ce5053b41140870c3e5cc |
|
MD5 | 5247aa87f8a6d4a4c91811f5300ef289 |
|
BLAKE2b-256 | 6d579d5aaeafd7f38185ea3495106ec823c40b90cb86e66325c8564d8d32e924 |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3236cf89d69679eaeb9119c840f5c7eb388a2110b57af6bb6baf01a1da387c18 |
|
MD5 | 7619ec2c7606c1741b1987cf7c1e1b1b |
|
BLAKE2b-256 | 2b800e706bd26894b969adccb9a3ead099fc6cdb2dd2e91222f9888cad592b7e |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a1f26bc1f5ce774d99725773901820dfdfd24e875028da4a0252a5b48dcab5c |
|
MD5 | eb87f53980f81530035ee547b7bfe598 |
|
BLAKE2b-256 | 7d791a4649c9a8ed7275dfc76d09b29a639e90822c1df40b0524950b82503127 |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44ee985194c426ddf781fa784f31ffa29cb59657b2dba09250a4245431847d73 |
|
MD5 | 9ca2b38b2b2382711f645ed94e3bbd73 |
|
BLAKE2b-256 | 1f009524da25391d0e1fe8cac940daada4e7948f379ba1b27d5aa4261b4b241a |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fa3648e4f1e63ddfe53563ee111079ea3ab35c3b09cd25bc22dadc8269a495f |
|
MD5 | b60a78b3ead3ecae0122cfa9203e2fbe |
|
BLAKE2b-256 | a53bf48fd75ad20568facc6cb20475e4bafff6c82013a0f276e9e2ca2a4c53ff |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 076afa0a4a96ca9f77fec0e4a0d241200b3b3a1766f8d7be9a905ecf59a7416b |
|
MD5 | 8e84b98602b12efe076191d930afa85c |
|
BLAKE2b-256 | 4de2d29cf4c4526046dba4f38763c3ede0ca5c066d674987d8985087d4cb9f2c |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d40ad09d9f5e719bc6f729cc6b17f31c0b055029719406bd31dde2f72fca7e7 |
|
MD5 | 6abd517292ee3c8fe04ac305d5cefb62 |
|
BLAKE2b-256 | 4b657bf60afc926ab9b5ea82a02253357c0e79432deadfb07232abc530faf70f |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5caee7bd08c3d36ec54617832b44985bd70c4cbd77c5b313de6f7fce0bb34f93 |
|
MD5 | 8e304ec1ba3f261154ce6e57e0051792 |
|
BLAKE2b-256 | 4648466c471e3ced3dbe4d19bdc7da235084263d7fe43b90a95a41379ce727f1 |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 89b3f2da57a27913d15d2a07d58482f33d0a5b28abd20b8e643ab4d625e36257 |
|
MD5 | 4a67ec6725b12c4d86391dbc14d2f28c |
|
BLAKE2b-256 | 29037e2c23309a969c65c066ec071f9e453f69434e0cc837df62c99cea1c76e7 |
Hashes for pymongo-4.5.0-cp37-cp37m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2b0176f9233a5927084c79ff80b51bd70bfd57e4f3d564f50f80238e797f0c8a |
|
MD5 | 03d54cc39220b7f4e65babfab1539212 |
|
BLAKE2b-256 | 1e90b6a1c10339f4bfc6d9db9d52c066cace4b9fdc76c75f8a0a6636652b3556 |
Hashes for pymongo-4.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8443f3a8ab2d929efa761c6ebce39a6c1dca1c9ac186ebf11b62c8fe1aef53f4 |
|
MD5 | 8d46452abd8f294c62ee167dfe538628 |
|
BLAKE2b-256 | 098452c4861a538cb40e88c474823bda04346b37e643d08dd99bde671556da73 |