Skip to main content

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

Author:

The MongoDB Python Team

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:

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:

$ python setup.py 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) sphinx

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.

To build the documentation, you will need to install sphinx. Documentation can be generated by running python setup.py 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 python setup.py 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

pymongo-4.4.1.tar.gz (828.7 kB view details)

Uploaded Source

Built Distributions

pymongo-4.4.1-cp311-cp311-win_amd64.whl (408.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.4.1-cp311-cp311-win32.whl (403.7 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (607.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (612.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (621.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (606.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (597.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp311-cp311-macosx_10_9_universal2.whl (466.7 kB view details)

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

pymongo-4.4.1-cp310-cp310-win_amd64.whl (408.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.4.1-cp310-cp310-win32.whl (403.7 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (603.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (608.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (618.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (602.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (593.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp310-cp310-manylinux2014_x86_64.whl (625.2 kB view details)

Uploaded CPython 3.10

pymongo-4.4.1-cp310-cp310-manylinux2014_s390x.whl (628.0 kB view details)

Uploaded CPython 3.10

pymongo-4.4.1-cp310-cp310-manylinux2014_ppc64le.whl (636.6 kB view details)

Uploaded CPython 3.10

pymongo-4.4.1-cp310-cp310-manylinux2014_i686.whl (618.3 kB view details)

Uploaded CPython 3.10

pymongo-4.4.1-cp310-cp310-manylinux2014_aarch64.whl (622.4 kB view details)

Uploaded CPython 3.10

pymongo-4.4.1-cp310-cp310-manylinux1_i686.whl (618.3 kB view details)

Uploaded CPython 3.10

pymongo-4.4.1-cp310-cp310-macosx_10_9_universal2.whl (466.9 kB view details)

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

pymongo-4.4.1-cp39-cp39-win_amd64.whl (408.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.4.1-cp39-cp39-win32.whl (403.6 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (602.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (608.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (616.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (601.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (588.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (595.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (592.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp39-cp39-manylinux2014_x86_64.whl (624.0 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-manylinux2014_s390x.whl (627.2 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-manylinux2014_ppc64le.whl (635.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-manylinux2014_i686.whl (616.9 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-manylinux2014_aarch64.whl (621.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-manylinux1_x86_64.whl (587.5 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-manylinux1_i686.whl (616.9 kB view details)

Uploaded CPython 3.9

pymongo-4.4.1-cp39-cp39-macosx_10_9_universal2.whl (466.9 kB view details)

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

pymongo-4.4.1-cp38-cp38-win_amd64.whl (407.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.4.1-cp38-cp38-win32.whl (403.0 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (619.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (624.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (633.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (618.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (621.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (609.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (606.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp38-cp38-manylinux2014_x86_64.whl (641.1 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-manylinux2014_s390x.whl (645.8 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-manylinux2014_ppc64le.whl (654.7 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-manylinux2014_i686.whl (632.0 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-manylinux2014_aarch64.whl (638.7 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-manylinux1_x86_64.whl (620.9 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-manylinux1_i686.whl (632.0 kB view details)

Uploaded CPython 3.8

pymongo-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl (413.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.4.1-cp37-cp37m-win_amd64.whl (407.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.4.1-cp37-cp37m-win32.whl (402.4 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (586.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pymongo-4.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (599.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (585.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (595.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ x86-64

pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (583.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (576.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

pymongo-4.4.1-cp37-cp37m-manylinux2014_x86_64.whl (608.2 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-manylinux2014_s390x.whl (611.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-manylinux2014_ppc64le.whl (620.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-manylinux2014_i686.whl (600.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-manylinux2014_aarch64.whl (606.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-manylinux1_x86_64.whl (595.6 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-manylinux1_i686.whl (600.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.1-cp37-cp37m-macosx_10_6_intel.whl (466.7 kB view details)

Uploaded CPython 3.7m macOS 10.6+ Intel (x86-64, i386)

File details

Details for the file pymongo-4.4.1.tar.gz.

File metadata

  • Download URL: pymongo-4.4.1.tar.gz
  • Upload date:
  • Size: 828.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1.tar.gz
Algorithm Hash digest
SHA256 a4df87dbbd03ac6372d24f2a8054b4dc33de497d5227b50ec649f436ad574284
MD5 1f543a9d535854c9e02eebc77e97c298
BLAKE2b-256 bf1c38b956d48667745f2f083937dd31b0467fa3f537480e30c692b1fc4fef3d

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 408.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 980da627edc1275896d7d4670596433ec66e1f452ec244e07bbb2f91c955b581
MD5 189ff0d77cce9a4fef28a7fbc7afac8c
BLAKE2b-256 ca8afd22c1b57f9effe50a5db1373b135e6ce85593e79e6c0af6e7bfad5d8cba

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 403.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8082eef0d8c711c9c272906fa469965e52b44dbdb8a589b54857b1351dc2e511
MD5 a80e0469fcc4ae471081340a7c2c0fb9
BLAKE2b-256 55ba8c91397adf9c10b9e1cf1a1ddbb0b308e83d4b44cf73956db99de98f3941

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f0bd25de90b804cc95e548f55f430df2b47f242a4d7bbce486db62f3b3c981f
MD5 cfbe37151bc3f25bb6f97e22337906eb
BLAKE2b-256 1fd8a7bf5fba5b488042d69822b11a14782c8f4ce841028f42dbc70de217d277

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44381b817eeb47a41bbfbd279594a7fb21017e0e3e15550eb0fd3758333097f3
MD5 89e23792d59fab448afb1923ccfb9af3
BLAKE2b-256 5887f6096c397c2323afd66b1fcd100cefaaf82660f7a5b4a11d151de2a8e69c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5248fdf7244a5e976279fe154d116c73f6206e0be71074ea9d9b1e73b5893dd5
MD5 60c34dd1c19ab9d3ee867f155d8e32b0
BLAKE2b-256 bad2f603237b7c2b8ece102a1fc5517d3ef7853147c0b8a9777de4b383abec12

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35545583396684ea70a0b005034a469bf3f447732396e5b3d50bec94890b8d5c
MD5 83013d162342581af06ffa491ffe83c2
BLAKE2b-256 11c6895e7f5d1fa40a124138b2e09ee80f1c23dc76006b150dc94dfa88968f36

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d67f4029c57b36a0278aeae044ce382752c078c7625cef71b5e2cf3e576961f9
MD5 4a71c76dc0497ec298c2be9fb6376dfa
BLAKE2b-256 fd5b57c9201f4f7c1ef4b0b521d0c65684eaecac896198118204698c6f2e69a6

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5a2a1da505ea78787b0382c92dc21a45d19918014394b220c4734857e9c73694
MD5 602bd9c8023702f86e3f6818351bbc97
BLAKE2b-256 e2804c06e57d6ea4d781867f5e6b0531b69a3115d4c06af211da1a21bdde0f8d

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 408.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a86d20210c9805a032cda14225087ec483613aff0955327c7871a3c980562c5b
MD5 4ceb3f0154b704e8d9baa853d2b1bb7b
BLAKE2b-256 7cd7a8b02959d043b3c20641050a4702ce031866d02ea9cdfb1b27dfbc0344c7

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 403.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a5198beca36778f19a98b56f541a0529502046bc867b352dda5b6322e1ddc4fd
MD5 3a7965e3f6bc62c381488fb49a489531
BLAKE2b-256 27bcc0ae6eb9bdfa46952a05e98288e64105c3ba88a4562b300c69a0bb7bc438

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4c4bcd285bf0f5272d50628e4ea3989738e3af1251b2dd7bf50da2d593f3a56
MD5 48c520ef30e6b539b5e73bb54dd2fd43
BLAKE2b-256 3b92457200cee53892db496431a08e44fdcf475ee4a6ef14534be492f2f1cb17

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1897123c4bede1af0c264a3bc389a2505bae50d85e4f211288d352928c02d017
MD5 9b34624784f7dc6550082f6cfdabc791
BLAKE2b-256 d5f7de02bf0aba434a32a15aa9182dabe2cabbd3949a337989756543f2d06078

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f41feb8cf429799ac43ed34504839954aa7d907f8bd9ecb52ed5ff0d2ea84245
MD5 b1ab880b9cd160ad5d31cab8af5d83c8
BLAKE2b-256 4d72d820823c6e16047ca6e07512bd8ac0e2f25704b9d185286dac7d08aa857c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3b508e0de613b906267f2c484cb5e9afd3a64680e1af23386ca8f99a29c6145
MD5 305b54e975e6a27392f926187f2f354a
BLAKE2b-256 e4255dcf64c07a53d36f8ec258fd959a2405198ba18224551db05759a3f195d8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 995b868ccc9df8d36cb28142363e3911846fe9f43348d942951f60cdd7f62224
MD5 8f44b1f7eb10ef93b63d835bb5453353
BLAKE2b-256 9dc90bcd5b364e7da8d14d61a9b8134bf4dc868cec272c2ea1e132fc90004649

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1b1c8eb21de4cb5e296614e8b775d5ecf9c56b7d3c6000f4bfdb17f9e244e72
MD5 dab048cc28f372d3deded6de33f7638e
BLAKE2b-256 a62d1d88b4ae4e499518ecc9537316f0ba4bc909ec4d097b5b08b4ec05fbc524

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 912b0fdc16500125dc1837be8b13c99d6782d93d6cd099d0e090e2aca0b6d100
MD5 42d62c5f499db53e148c0f2eb74bcd1e
BLAKE2b-256 d7805b70bf6e6ee1813228fabac316363b513c9df870af2d31858643dd7da953

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1944b16ffef3573ae064196460de43eb1c865a64fed23551b5eac1951d80acca
MD5 420e18d5a05fa6a631edef8d23d3e006
BLAKE2b-256 de66f74ac06f35b39871a1af5cb53689a6dad6f73a03a51b880c4168dd5a0c57

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6d5d2c97c35f83dc65ccd5d64c7ed16eba6d9403e3744e847aee648c432f0bb
MD5 89aa8c77687a312da28581d4d8cd6f12
BLAKE2b-256 b0dad6dfbcb36395c7bd1c74b83a5796146caa10272bb77dcea3390fc5e22405

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a350d03959f9d5b7f2ea0621f5bb2eb3927b8fc1c4031d12cfd3949839d4f66
MD5 e083d1736e01b785928dfe1b440f86ed
BLAKE2b-256 9120fc82f89eac12f94e1b220308db643fef7a0cb4d9629caf6f0067718fc5a8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a438508dd8007a4a724601c3790db46fe0edc3d7d172acafc5f148ceb4a07815
MD5 f3e17ea00cdc3096d9d6e273902cb74d
BLAKE2b-256 07a6d23d97ccc7eeca45ba1719a24514c16d3e856f4165a790e30cedcfee6d20

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bbdd6c719cc2ea440d7245ba71ecdda507275071753c6ffe9c8232647246f575
MD5 db7ecac95e9d48e3fc9d9f9c2f26845e
BLAKE2b-256 d3f4b76194acad67228f2a07b65489f02af22d826589fc5467f5affbe4db4af8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 408.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3681caf37edbe05f72f0d351e4a6cb5874ec7ab5eeb99df3a277dbf110093739
MD5 71cae3d47560003bb763a903b0422ea7
BLAKE2b-256 4dc1b061908548cf0561b0aa854ed8392b5169eba9ab2a1a0b56cd8c3dca58d4

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 403.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c409e5888a94a3ff99783fffd9477128ffab8416e3f8b2c633993eecdcd5c267
MD5 affad74cf43f4603b4563c117c844fd9
BLAKE2b-256 745fee4a61b57fa1c0f37b0c0e414119cb24c826a1075a4a65709f5ab8655276

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aab6d1cff00d68212eca75d2260980202b14038d9298fed7d5c455fe3285c7c
MD5 9eaba386cc3df9c3194d856e53e98a02
BLAKE2b-256 ad5329a7dfe6f317e1f1e5f529a1d9a8edc44065f377abd811e6b0f5626301f8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 884a35c0740744a48f67210692841581ab83a4608d3a031e7125022989ef65f8
MD5 e5232215f1d5e2f31b2ba1702b8118e4
BLAKE2b-256 f1b75580c4a547c5ef409237213f9e274d9c924d0fd33951dd7599030da3e3a6

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02dba4ea2a6f22de4b50864d3957a0110b75d3eeb40aeab0b0ff64bcb5a063e6
MD5 4e0b012c3ffcafcda4d3d77728f9204a
BLAKE2b-256 20933e9fdec8a77a2ec9d90bb89a004aac7d1a1dc1fc9d7507ea1831358d3a37

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a7739bcebdbeb5648edb15af00fd38f2ab5de20851a1341d229494a638284cc
MD5 4a207d83f617fb34253862e38a0dedc2
BLAKE2b-256 94c8bc6eb6c7282147ea31ed0e63993f732a597c16bd71f70a197ff3e639e5da

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 334d41649f157c56a47fb289bae3b647a867c1a74f5f3a8a371fb361580bd9d3
MD5 edbf3e64efa4f0f37e60d503e26deb91
BLAKE2b-256 c1805d3d10781b6f77f3262407e691acb4a99967bce35fb0f8fd0286a2ce2054

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b25d2ccdb2901655cc56c0fc978c5ddb35029c46bfd30d182d0e23fffd55b14b
MD5 26980b13add019ff9fab8780fcac79c0
BLAKE2b-256 f319c7a8631a7bb9920183715c59a3e4c3f634466eed2eb31e07de1662e45f5e

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae1f85223193f249320f695eec4242cdcc311357f5f5064c2e72cfd18017e8ee
MD5 237bf74095beae50c0018aff10fdfa05
BLAKE2b-256 483c894e93f0f70030f5dbb40c09b8191fdcca2119a4966a667c3f3b7d0ffa53

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04ec1c5451ad358fdbff28ddc6e8a3d1b5f62178d38cd08007a251bc3f59445a
MD5 04271b0a11d3fac55a1ffb13b9e959c5
BLAKE2b-256 e1c05f85e42aaf3b96e735295777661d0eb3120212c7f06950f11a95a4cf1454

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0bdbbcc1ef3a56347630c57eda5cd9536bdbdb82754b3108c66cbc51b5233dfb
MD5 fdd68f2e652eb3989da9bfa98a59649b
BLAKE2b-256 9316fd931d8d88ca0129b360b9d3260fbb6dacea099cbc10e15e644285e2c4b8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e6a70c9d437b043fb07eef1796060f476359e5b7d8e23baa49f1a70379d6543
MD5 8b305fe05046810dea4d13e7765caadf
BLAKE2b-256 c45d027f8825eaa1efcef0091f83e0d599e9dac402e824ca0305ff85343292d2

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55b6ebeeabe32a9d2e38eeb90f07c020cb91098b34b5fca42ff3991cb6e6e621
MD5 93d3c1420d80242c3f636b1842ddb3e8
BLAKE2b-256 bcc15b7cea439df786b3d0035e27c0af292fdeebc61472c19a4ca2e54857559d

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48409bac0f6a62825c306c9a124698df920afdc396132908a8e88b466925a248
MD5 4e1b3d85c0f7cf7f6dea49f87e3dd002
BLAKE2b-256 f175cb799eaadf3a5369833476152b52ebab31eadde432f204e42328865c7421

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7b7127bb35f10d974ec1bd5573389e99054c558b821c9f23bb8ff94e7ae6e612
MD5 b7a1374d3695416968a9b63d9b1fce6c
BLAKE2b-256 377b3fb80ab7e90ee6c61e7c9d01e899e82f32bf1b2f0d6438ab6556c71a6c05

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 98764ae13de0ab80ba824ca0b84177006dec51f48dfb7c944d8fa78ab645c67f
MD5 d4fe0bb07c61aa2613395491b119bae7
BLAKE2b-256 8f216a47ff45412cf102da801d20ae7ade615837aabc6e6f2bae5a6ad6f6268e

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 aed21b3142311ad139629c4e101b54f25447ec40d6f42c72ad5c1a6f4f851f3a
MD5 abb46db126bf62b9c3145d1d1cd9c548
BLAKE2b-256 fb3121fdf5fd2ca776355efeabda5235186836375a816adb1a571e29495d3b77

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 407.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 58c492e28057838792bed67875f982ffbd3c9ceb67341cc03811859fddb8efbf
MD5 a9819a12fea09eeab357f077504bcc99
BLAKE2b-256 ab3dc0581e26c1f86fd2b5870f82d4666fd5ae73957e6cb8be580415cfe70400

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 403.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ebe1683ec85d8bca389183d01ecf4640c797d6f22e6dac3453a6c492920d5ec3
MD5 47a2a39d0420f6eb159157f92c25c0eb
BLAKE2b-256 3d979a067229d7ae6c077c8657783b99e70eee43edc7298e8926e7811fcbd628

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d6d2b7e14bb6bc052f6cba0c1cf4d47a2b49c56ea1ed0f960a02bc9afaefb2
MD5 21fd0a5e2b80a5806ac4320a262ca9fd
BLAKE2b-256 1b8e742e9fd54cc7e5c8f5e4b3d7163a9e34d30997c7a7c9576becbaf248bcd9

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d45243ff4800320c842c45e01c91037e281840e8c6ed2949ed82a70f55c0e6a
MD5 c111aa505f25a424ef2524e470cec310
BLAKE2b-256 16fcfe604c62e110a664d04ae6e9baa7520f52dd57a258e77cbbc1073744431b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3bb935789276422d8875f051837356edfccdb886e673444d91e4941a8142bd48
MD5 cb29944be5d3440b8a4d8cf9642ca767
BLAKE2b-256 37d7b266a9954e23605edad248098f5d87da7c147bade4a107a1636c98a0f37c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fab52db4d3aa3b73bcf920fb375dbea63bf0df0cb4bdb38c5a0a69e16568cc21
MD5 b6023bee3c93986516202d9c51d3a498
BLAKE2b-256 c3eb499dd8298ee8c28a3546d6b2076bf924ac7fa21639edb78ef94f2edd2db5

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0dcc64747b628a96bcfc6405c42acae3762c85d8ae8c1ce18834b8151cad7486
MD5 b54dec7df989f6693125700c4ce6199d
BLAKE2b-256 7974267373d5b974051a71d91b60f4fd150c18a66f37662b0882ae714d1daa6f

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f345380f6d6d6d1dc6db9fa5c8480c439ea79553b71a2cbe3030a1f20676595
MD5 7649c9c94846570d2a9e001cced88f0b
BLAKE2b-256 07c3ed8bbc422af5226119e56d2489eb3eb1d5a9134e972f3086cfdde218bd0f

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 85b92b3828b2c923ed448f820c147ee51fa4566e35c9bf88415586eb0192ced2
MD5 9383351d9bea673c6458fd4b8646a765
BLAKE2b-256 0484f18a396a33fdd9496e8832bba18c604af6857f8ccda47fe3c21f234b5558

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 977c34b5b0b50bd169fbca1a4dd06fbfdfd8ac47734fdc3473532c10098e16ce
MD5 09eb72a84850bd64148ef73b3d66745c
BLAKE2b-256 c47f21f063f3fb1445981c9d46dac7db4dcdd6ff980225929232d4ebc2246c55

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 53831effe4dc0243231a944dfbd87896e42b1cf081776930de5cc74371405e3b
MD5 4d5ea072b07cfce6fda36b5e19a086c9
BLAKE2b-256 4f755131c6474acb93603f6fc6f514b8476de850b075273f69ed4088c718f956

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e426e213ab07a73f8759ab8d69e87d05d7a60b3ecbf7673965948dcf8ebc1c9f
MD5 21118de934659aec046d46da1262107f
BLAKE2b-256 80a4851fefb74669aa4be60a8f3e187dc718453acb9900f6d869971d7431fdc3

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 54d0b8b6f2548e15b09232827d9ba8e03a599c9a30534f7f2c7bae79df2d1f91
MD5 a6c80176b1b1d67deacfa3ed6a42c9c2
BLAKE2b-256 9545d67937fbf616d11510a740ed20a92453dd7cb0865fc2dd64bd38f1564d55

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a1e5b931bf729b2eacd720a0e40201c2d5ed0e2bada60863f19b069bb5016c4
MD5 85de69dd9ea90d9ad4ccb8b29e6a1156
BLAKE2b-256 86bef748b729aa92e543992522371e63e071be784fd3095b0223212a1fa9cd12

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a0d326c3ba989091026fbc4827638dc169abdbb0c0bbe593716921543f530af6
MD5 01bac03f627a232b34e5c2b467382352
BLAKE2b-256 768eb41666bf931a05d4486715f47b7edbeff31d5f3c5183500b3c99fc8c7f9a

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 022c91e2a41eefbcddc844c534520a13c6f613666c37b9fb9ed039eff47bd2e4
MD5 c462d694ad308bf5cb1038d626869484
BLAKE2b-256 780b41495b680bfd1aa1070a85d0a496d5280bebf1ebff8d33395c43914b939a

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 262a4073d2ee0654f0314ef4d9aab1d8c13dc8dae5c102312e152c02bfa7bdb7
MD5 c01eb5ba6d436d59628900f87ad66a66
BLAKE2b-256 83657caa0a8a878ee99683b6d865d83e2ae19466af23295e99b25ec8bed12002

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 407.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 2259302d8ab51cd56c3d9d5cca325977e35a0bb3a15a297ec124d2da56c214f7
MD5 9507b94188998919b3ba9076afec961d
BLAKE2b-256 771f7a6ba1834d8d66d108f02d72f4aed240870d14bc8c5d64bb9b88b5698bfd

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pymongo-4.4.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 402.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ddffc0c6d0e92cf43dc6c47639d1ef9ab3c280db2998a33dbb9953bd864841e1
MD5 a1444e46400604f98fabf47d1b07af9c
BLAKE2b-256 b14325fb482a6a15e5be5609eca2e92538e797ce39278f97fe23efeea925a7af

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d43634594f2486cc9bb604a1dc0914234878c4faf6604574a25260cb2faaa06
MD5 63b34fac35f4a840fb070157fd008517
BLAKE2b-256 53a456b7766953c0e1e0faea55a22f97bc150008be061a3fc2789286659f148a

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e307d67641d0e2f7e7d6ee3dad880d090dace96cc1d95c99d15bd9f545a1168
MD5 889ff70725abb61334d20da139a6b4cf
BLAKE2b-256 46cccc5f23bd995fbd9262903cbe5e58bd2b1d74aa996e9a52e6ea4dfbe07704

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fe4bbf2b2c91e4690b5658b0fbb98ca6e0a8fba9ececd65b4e7d2d1df3e9b01
MD5 177f50ee4776b1b2d7bc0513d833cf65
BLAKE2b-256 64086139ea502320f3df52c24c28606e967f2f86176cff81c7b2190fecb48560

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0f08a2dba1469252462c414b66cb416c7f7295f2c85e50f735122a251fcb131
MD5 a2f9082b2aadb40d6cc3d0704864d6cd
BLAKE2b-256 320f0f790ed1ab2cccdcc31ea34fe11338ad3ab59d6ee9ab25a3c37d21a500c2

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 854d92d2437e3496742e17342496e1f3d9efb22455501fd6010aa3658138e457
MD5 e42c494cacd05144d8b132c6abd3f670
BLAKE2b-256 6a438bfc55e3f38812081aad4befbd5bc0e0bc1fc828196c5eab4168d538e6f0

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05935f5a4bbae0a99482147588351b7b17999f4a4e6e55abfb74367ac58c0634
MD5 b93622b915b045a757771fd977ca3a92
BLAKE2b-256 b7787638d27d52148484b50f61d3ff6d3cc481959209e56054406cc706c0b936

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef0e3279e72cccc3dc7be75b12b1e54cc938d7ce13f5f22bea844b9d9d5fecd4
MD5 e96c5dba17c574f565ac32b2a255eb12
BLAKE2b-256 4568d8854df7159f0551de7f74ca7994b3a4de079bd5aa91c4c6b8f51e1279ef

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91848d555155ad4594de5e575b6452adc471bc7bc4b4d2b1f4f15a78a8af7843
MD5 02ab90b954b500d312581c828258ae0e
BLAKE2b-256 6ccf4f12687a13704baedbe728e41f7a134cf1addb3d8f99d0bf0bf9d0773eb2

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5368801ca6b66aacc5cc013258f11899cd6a4c3bb28cec435dd67f835905e9d2
MD5 af85569e253c5f18e8e8b35c20fe7b03
BLAKE2b-256 ab3a3789d862d8dc54aa3acdb8909fc58677d0ec0fc317d932960418e1feec4d

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ec9c6d4547c93cf39787c249969f7348ef6c4d36439af10d57b5ee65f3dfbf9
MD5 035503010ca0c5c6ccfa6e8795078608
BLAKE2b-256 8b10f02974c3c3cfeed94bf802280d695f65693f4bb998a827f439477b31ab6e

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 36b0b06c6e830d190215fced82872e5fd8239771063afa206f9adc09574018a3
MD5 63b65489b42ebd897eb898ff5acb95ea
BLAKE2b-256 9caf48ada34d449b40aa9e9a0f72bdac056abfbecb5884b11df5675d376a2886

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9a5e16a32fb1000c72a8734ddd8ae291974deb5d38d40d1bdd01dbe4024eeb0
MD5 3446b98d1211b97fa6d7f29a86e54744
BLAKE2b-256 7962832065af997e4638eee4be1ad5f850a3466e427b06e58c8ed5c7596b3e21

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 efa67f46c1678df541e8f41247d22430905f80a3296d9c914aaa793f2c9fa1db
MD5 fbc120c567c6a0c7584213fd5464fcfe
BLAKE2b-256 53540d05dccfce2343c4f3b92e06af3614d9abd9ba38954e45162bab00791f38

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6750449759f0a83adc9df3a469483a8c3eef077490b76f30c03dc8f7a4b1d66
MD5 c820e5834b10738a1ebd762a0e2b18b2
BLAKE2b-256 6c50b96064053dfe6b34daa7b2fb42d231bd1a48138995fd7f2066a673d18c24

See more details on using hashes here.

File details

Details for the file pymongo-4.4.1-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-4.4.1-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6cf08997d3ecf9a1eabe12c35aa82a5c588f53fac054ed46fe5c16a0a20ea43d
MD5 a448be3ee3d26d1da01c55910bafd131
BLAKE2b-256 d182ee41786ff5940bc0258a96c785c9e338c576a057c95a0ff97c5f4e5e18eb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page