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, and 6.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 the MongoDB Community Forums.

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.

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.0b0.tar.gz (815.8 kB view details)

Uploaded Source

Built Distributions

pymongo-4.4.0b0-cp311-cp311-win_amd64.whl (384.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.4.0b0-cp311-cp311-win32.whl (381.1 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (496.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (500.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (504.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (497.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (490.3 kB view details)

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

pymongo-4.4.0b0-cp311-cp311-macosx_10_9_universal2.whl (415.5 kB view details)

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

pymongo-4.4.0b0-cp310-cp310-win_amd64.whl (384.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.4.0b0-cp310-cp310-win32.whl (381.1 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (494.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (498.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (502.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (495.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (488.3 kB view details)

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

pymongo-4.4.0b0-cp310-cp310-manylinux2014_x86_64.whl (511.6 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0b0-cp310-cp310-manylinux2014_s390x.whl (513.9 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0b0-cp310-cp310-manylinux2014_ppc64le.whl (518.3 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0b0-cp310-cp310-manylinux2014_i686.whl (507.1 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0b0-cp310-cp310-manylinux2014_aarch64.whl (511.4 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0b0-cp310-cp310-manylinux1_i686.whl (507.1 kB view details)

Uploaded CPython 3.10

pymongo-4.4.0b0-cp310-cp310-macosx_10_9_universal2.whl (415.6 kB view details)

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

pymongo-4.4.0b0-cp39-cp39-win_amd64.whl (384.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.4.0b0-cp39-cp39-win32.whl (381.1 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (493.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (497.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (502.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (494.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (491.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (487.5 kB view details)

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

pymongo-4.4.0b0-cp39-cp39-manylinux2014_x86_64.whl (510.8 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-manylinux2014_s390x.whl (513.2 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-manylinux2014_ppc64le.whl (517.7 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-manylinux2014_i686.whl (506.3 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-manylinux2014_aarch64.whl (510.7 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-manylinux1_x86_64.whl (497.4 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-manylinux1_i686.whl (506.3 kB view details)

Uploaded CPython 3.9

pymongo-4.4.0b0-cp39-cp39-macosx_10_9_universal2.whl (415.6 kB view details)

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

pymongo-4.4.0b0-cp38-cp38-win_amd64.whl (384.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.4.0b0-cp38-cp38-win32.whl (380.9 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (503.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (507.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (511.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (503.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (507.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (498.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (495.6 kB view details)

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

pymongo-4.4.0b0-cp38-cp38-manylinux2014_x86_64.whl (521.1 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-manylinux2014_s390x.whl (523.8 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-manylinux2014_ppc64le.whl (528.2 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-manylinux2014_i686.whl (514.2 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-manylinux2014_aarch64.whl (520.9 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-manylinux1_x86_64.whl (506.9 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-manylinux1_i686.whl (514.2 kB view details)

Uploaded CPython 3.8

pymongo-4.4.0b0-cp38-cp38-macosx_10_9_x86_64.whl (383.6 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-4.4.0b0-cp37-cp37m-win_amd64.whl (384.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.4.0b0-cp37-cp37m-win32.whl (380.5 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (486.3 kB view details)

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

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (489.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (486.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (488.5 kB view details)

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

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (480.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (479.7 kB view details)

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

pymongo-4.4.0b0-cp37-cp37m-manylinux2014_x86_64.whl (503.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-manylinux2014_s390x.whl (505.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-manylinux2014_ppc64le.whl (510.0 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-manylinux2014_i686.whl (497.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-manylinux2014_aarch64.whl (503.1 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-manylinux1_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-manylinux1_i686.whl (497.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.4.0b0-cp37-cp37m-macosx_10_6_intel.whl (413.3 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

File details

Details for the file pymongo-4.4.0b0.tar.gz.

File metadata

  • Download URL: pymongo-4.4.0b0.tar.gz
  • Upload date:
  • Size: 815.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for pymongo-4.4.0b0.tar.gz
Algorithm Hash digest
SHA256 90774f827a188e038665c72ca2b041254b456050513636edcbb9c5324b8a19f6
MD5 9c2cea5a336925851110ffba3911dcfc
BLAKE2b-256 10dad8399529d145b4f169e0761fcceab9f801a67caeab4fdafb26394cc991aa

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3ad65883a48c5231237b999e717da76b16d633222436084fedf88011c9762905
MD5 a47e71c7360104e1ee94b8fc32c4e552
BLAKE2b-256 3154d155307a49289a3233baf7d3fa6bb80a6ba7c995720652fd0418ca6e9337

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 15877a35cb4d848a8c91d9d28d9eee6633118da2f949b263085e7971241826a3
MD5 fc8c112786152d5224386a16f5756192
BLAKE2b-256 83c990a6531b658fdd83fe4440dd2545620267c6825a9c68bdb911acc797bdea

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2989438a0b2820bfb7a1c995988da68998ad538ca4514a0764f83e399a72fe7b
MD5 f6887c1332b6252a4e9b2b2a70f53816
BLAKE2b-256 3aea521a81ca4522d7b7808a908f9e550fd7a643c323115eaf86776bc67cb7b5

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58b2dbbb4d56b76061f305ceded81a70d98b1549171a28ecfeb9e365ba21c0ce
MD5 604ef3b04f5b994f8b2d3d0d0c33d5e1
BLAKE2b-256 4fa6d0fee2a2c369068f26a60243c2b88be2da67db105ac65af966c6cdc4f1f9

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30fdea481ba080bb05d9e0962861ceddeb473e444a6c6778756b169e88d5adcf
MD5 9de29af98ac4dc5f3da3251d98cd715d
BLAKE2b-256 c72016d5878dc83237d2b03ef08d2557a7ebd902069dcb2850e6f3ea8ad8161a

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb3f97baa74da3d5d67a38207fa1b267998bb8eff6c4466d45dafde8c23c8f2e
MD5 99f295c1176dd308f897bb3a9ba0fc09
BLAKE2b-256 0b921579a315714d8439d9eb64290dd65772efac6112b3b2c312a5d42c51643f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 803bb3715898e03479c7eb098a39059c403ad0c3881b2ab5979f015438fcb775
MD5 c7a2fecf26ff8f3367467923d4deade9
BLAKE2b-256 067385cc60f73873b2dd57033f705f84c91263d3c91ffddcb0a5ea7a9ac34f7e

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e5ae8d95e806c4c8b9a8cfc452052512e6f06ccab9e6ee0602f2457a2f207d45
MD5 608567fb6e1d5e56e7153a53eed718f1
BLAKE2b-256 99607cc92187999a09d64d7a63a2fa84566ab8fbd6e6d90c13e9fdeda57b3fee

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a2f3bb0a832c82e0984c25ecd14449fdf1d8cba40c57541685862857272e9f9f
MD5 09dd482a906a53d16f482df1aae2d197
BLAKE2b-256 0e646f97d904877a1fbc3bdde09a6dcc44ec5a53a570ec86f655bb28f8494952

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ab4cb1b975825793628e5d20906bdb2073e25454f3e5b51f13bc5679b7fd8e55
MD5 c94965834be98214e37d7d7ef84ec0d1
BLAKE2b-256 ac97fff1772bdd17553916fb0880eb4073d8a042f56c263de57d1648c88934a8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4363e8822b0894aa3696b2864ddd8f93e12fb0937faf31458cf0900ac191464
MD5 41a23f1046e797770206ee0ae871acb5
BLAKE2b-256 79e01e83b2ddadfd31880342dc3d7b046f207ff73eba986edccf9c283a156a09

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 208611e6389201003504a79202e782bad2834019d28d03263465b607172583cd
MD5 f829e6c560b25841ac63db01224ff18f
BLAKE2b-256 c86fdd22498372d69f8c50fda4b0b1492c1df2143f4d9ae0f5e7736e2187f7e2

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 586fb0b22e5e4f0ffe6085ccc25142286bb522a83a717277d923ff3247283fb9
MD5 192a615da8a0b8b312d3e5eb81213c14
BLAKE2b-256 1a22c0c7b84d835d393d5879f6066ee82b085e247390c7e4687d90e4a6c0ce1d

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75c8082a7b0fae44f9e9e06ba1bf464e78616617c0e4df81b1367bf93c74efbe
MD5 31cce05b96d62fa2b6cb3c0a5d08b587
BLAKE2b-256 cc7e7275bd0e44321b4d7e1c4b72ddaadab47d3600ee91a3dddb000792daaccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c80026705c83dd6932fffc141c0b552ae705b9b293e7d5d85ca160d260cb49e5
MD5 e1fad17d9be2050b3624d4c9f80fd007
BLAKE2b-256 ea4d4e061f65b0c4459fea32ee0def5d35e69eb765a4dffbc286fee240e584ca

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0aebd920c82f14fe2116c81a0766489c5a7853976650be76c7c4074f9c2ab9e
MD5 00940f93126936d6d946885e517ede4d
BLAKE2b-256 3bb3b746b482377b767cbfe5c39c3c042c6079c1852682280540cb7ad0d8595b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1346b8094724dfe1cc51edf72a9ea2e7a8dcd0a567e8d8093033aacacaa42332
MD5 069e3d973ed146c7f258456af4f36bc5
BLAKE2b-256 baaf297954f86260754c9a44fa69ed9767192022c06889256f20c800dc41cb7f

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af5fbcb547abcfd099bae96c8574e64e220101929bb27b35723cc9ead44580d9
MD5 f6432469fc17176eb9c1e03267ed5ce7
BLAKE2b-256 6874c261cdbca4bebb8b3a78c0dfc180fe681321621ff0da79cb318a5dc42285

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee5abd401025d94302468d1c5224347a302ce97acd97e85b73f27ee0e3b349db
MD5 e4856b4b48569237849ec18422ef43b6
BLAKE2b-256 cb36b08e69c2b36bcfe2037d02f55e39ebead3dd7f31ab5f96d5e1263750f0e3

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba427d31cc1d5c106ac2ad75a901630d5b31410bc3574e1f95b15d2422d77174
MD5 3e18c6e9093987f7a61bcf633f23372f
BLAKE2b-256 a92c5edf0e4acfdc7ee87d95df1e5a055b2dffb6a9f06d30c6c3d5887d734f5a

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb26c82c8069020d81d4eb59db642b87251c32d58a1ba76774a255578765fcf6
MD5 c74044dfb7aa78835e62a71152719deb
BLAKE2b-256 20047c7ff213aae80d25f9b1582bc154e908d526b13e9389f7eef44bcb7db3a5

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7c7a6bf5fe7dcef7f50d279f71e03a059a1c9bc4476cb53f628760362cc1f6f3
MD5 eaa387fbd8530fd07bb01aab8a063905
BLAKE2b-256 c2969f636147c964a854097395c605505bec475a535bb4a3b0b52e2d7833666b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3e1fa5fb0b5137dca5a52b525fbc6e2aa40e471138d341059e9f15c2abcf225c
MD5 3f28585c0becfed759a9eea0a4b6f903
BLAKE2b-256 65aacda30afb3f90c1f7bbcc916328863fc257f3a3d82d1d1bd4cbf6860a51e8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d7629a83be9591fcbaf2388f263bef8ce6f3d9d3e0bf0f0bb2a4ff2da76a9945
MD5 0ab73df36161b1ac1c840edd46180eb4
BLAKE2b-256 d5a912835a4822ff0411d1685587553d80b7d148da07cea39cc25392a1862323

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86826f2df5a5102bd33fe2627bbc64b09f21ec4c69fd42e5a35f4c37f66d629f
MD5 8c0048ca874854011fb093d85168f18e
BLAKE2b-256 723680afb729e3bcd13e905e70cb371bbdf11d1270de720c7106b35430e307f8

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e8912fada0beca4fdad611270248b5cc8ff466eb1deb933a4ac0367462c05f0
MD5 797e5186ca460498ad70caec1c61e33d
BLAKE2b-256 32b4f23882cbeee9c81f7089ebdcaaf0acd3ce8b58c795703ad708bc8f27cf5b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f6325627c2e34a81abe31dac0bacf445b5e5da5692844e6114655f33887f311
MD5 9b37536347029b83f183a61933b33fc1
BLAKE2b-256 67e00fc5c86baab1bdf7d90ef44048453da3e8e557f56f925b4c5cde6ec5fe54

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d93463f4a2d00625b4d61d2c71140fbae8047b9d4cafdf6806babcb1f39c9048
MD5 bd371aac5bb4bcc0cf3e8026f42e317a
BLAKE2b-256 30d7c744366f9940270d3375b5945b794067b33536e3ed239f0cc018dfd5d939

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 37a03f39516bd5f1386ab62bad2ad1f8e9c3806fefb97f5690351458aaf75a82
MD5 eddc8cea3a25f073c35286917c3d70f0
BLAKE2b-256 612e720a42ab3ea06cdf7cf0ee3dbfeccd5f6dbebb709db978f1906ffdab683f

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82ffac1308c9b470294feff550025af8a36a28002934334b7058e6caa28c6d36
MD5 b6b82ece8a09064a8c5728c7ea405d6d
BLAKE2b-256 7f24cc7cebe36d6e3c44e4f51374cad2a57e503f491975739d6fc3362581bd3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9dd4b66df41dce0ee43c0c8ede40665f2d099ebc3f614dc8cb7fb53051889b72
MD5 15b99c4f7eadf4b1aa0f01534ce2f7b1
BLAKE2b-256 01db6a0244c046210b930eaf67c491804dafffa741e7f3ec683467be8a3021df

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a94c27b251d24356177217cfbf285d0eb389305c67c9e04fc48b1e22fb9c2210
MD5 1c2456c571854fbd8f4fb441735244a7
BLAKE2b-256 f56b2de172188631ac25717054b81c8a6ed192166ba514fc2c3ad3a04fafe3ca

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 889e93c0a73a54806f10193cade0ccc7d7dc78b794df1f56600fe4e23150eefd
MD5 d89cce9346b6ff140d55c619e6ed1581
BLAKE2b-256 5b99db22e0e9020d2f1836e9cfb7af0d626ee82a27d78f8e570c1015f2868198

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8e50f532186344e66762fccc4335779ace9bb182c6288cf5abd8195e1c1022f
MD5 f38e66b13c7195d6cebad58f117b4738
BLAKE2b-256 4a99d88da36eafeb8fbacefc16a31660c56e4fab6ed1114734d4fb01a5f86726

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf4f79c4dbf1f7a929629cb7f38dc8ad957413488212c276a470804e8cebdcf0
MD5 7d5bbfc91be1cbaf0f954ffa7c3c196e
BLAKE2b-256 0c53e45be4e9a66c5f88531876b55f430f5098914861a0c5ef3a346fef5214b5

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 320c5151d5747419d01b49ccc4069962c328cbdb880fd85d60c65d69ee881157
MD5 0d3436e7c681f5ff3e1c13e5717f1d58
BLAKE2b-256 59de1d98033436bdce51e1dd3792de037c4e2be8752aee95a22a5593dd819e0c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 afc8c4f1c93163eb721245ac4076ba24c714e972300b28893598758f5312d29a
MD5 cb7fe8c5a2cf20262a8b10ca074bc316
BLAKE2b-256 7796bfe2ea3a153900409f974789329ec0cfbe683a7e9f80fde97050f45458c9

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad132956d7bb3ac472ac5fe1ca98a544750f75a6aed830f85c450c66008f38a6
MD5 d27743ac4b5f01496391a812ae471cdd
BLAKE2b-256 0fa2bb6724a9bf34c9680218ddaa69826ccfaf664f72613c14c197edb8cd523c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 88ec3fe14c6ff36b5f0f839773cfcda4ed057ae93cf64ff9db3381b8143ed11d
MD5 e222cd13e330399f2f95f660ab853ad9
BLAKE2b-256 452c9c789f517bcdaed4c2e8d2a0619f144a011a2055ee8366a30ed1ae3ff3e5

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3db8a264c7f1712d7ad3ce2c1084bd01e46ff231c8ece131227042402b4e2e0a
MD5 dcd8fa492d8e722ff426c53c0f0b9e0c
BLAKE2b-256 427adf9880803f109eb41bdc7d4246bad477739f6789e570530aa9b7867e0b8c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f020064fe1e6b0bb79578ea81620e5ece01095d661c498a5857099313322cd3e
MD5 d20e65f6b60127a77524edb25c51e858
BLAKE2b-256 2cd5cb2252e6a5bf5cbe4376893532737ece39e4fd7203434ace57f092421a76

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4070c44f0ec95a06e90b159f39acce0060d26bb90cd337cf9dd2f77f5bf6485b
MD5 826248de008fd74d0cdede7dd97e5a83
BLAKE2b-256 088aa60f9468b48ffebed850fd8133b60aadb1f2b0f056dfc061999506d641c6

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ba3f0fbe1ab690e4d6c2d7398bffda9c4bad915c8e5fb40b758770e88cd7a71a
MD5 e94ac58a368b08e426d2f150764fd0a0
BLAKE2b-256 c1953e63a95bbaa8fd7cf8d0ca88e7ba763cfb9c492e72d8fce6a15d30215b54

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d623016d7e71f81578d7220462d096f426b23baf0c42eec11e41b3ab93ec4966
MD5 18ad26e561605915b2191cb8ec22aaec
BLAKE2b-256 f92c64c123094656631545e8e698513bc151b41f44e56e6adeb441fcd4b59800

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0667241a6ad9599538b835981c39f53c8732e04259272d7f0e6cb56a27d849a
MD5 8409623601f9978fc5635ebc22d362a6
BLAKE2b-256 4c27357d4322cbce2ec550a6342578c1022a189e6763c0a2e4df5c109f8ac9a2

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fa12d2fd2841d6ef7ef4baad609eaddeee30ff6a273a63a1500dac8fc8abc680
MD5 aa1129179eabebb8605bcaa00e97277b
BLAKE2b-256 07ebf4a960f1449eba1a47752d5f52dbd10d157690f9db02357513fd1fcf2168

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e4650a359ab5f1bb95618f788c42c64e2495aba3d6ff93b0959f8ae46710855
MD5 838862a441489f9e2583bfa020614361
BLAKE2b-256 8c8112d97be020e739c8f83aea6746e00075443101ced8c24d67f1b37f270980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b018854676f1c7429a26c538268933e31b9a27839a2639e92982ff880723f7e2
MD5 00ab4f546646e9ffa60d4bdbacea2271
BLAKE2b-256 b69f703037813d833e17c3c94613f7ca682f6f89e24162d831d808f035238855

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70d269d309a9996aab2f06132fca58274e7705691a9ce5d3ea6d59a8ccd2fe10
MD5 8725c9656ca14139adf5a3666e863ea4
BLAKE2b-256 f9d115a7853a7084042f77c02e37be5da63a30ac46116d5d7842340cc95dc47b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d3aebf5291ea541d1c4eebe36135f9928f97506f3ec6d9f3396f84acf439432b
MD5 ea7d3734edba162fbef4f97e163cd151
BLAKE2b-256 f54579d73b99b4a0dba8781c06f806af3cbd7824da574621c9e6941563100f3b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3add7993249fa6c55f42cc48638ced5ead74dd68c6a0bedde39749b322cf4d05
MD5 a0b0ed8c331703a0f0613a0e4d79e047
BLAKE2b-256 fd4836f00616416afbdafbf237f9c623b0bcfa259ab2c84c39fe31397034aae9

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c59e815ee7439f25bda23e9933abd9f464aefcfbf85eb4b021e7344f1297c02
MD5 9084c20f8403adfa699567514b4d73dd
BLAKE2b-256 3c340d47f6be1223d9d202150da77b8670e037469a640d1c7c25e102c6124708

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43a010b68d08f38bddf92f1193a9d72154eec0276fde0e12b6ed3464473dd4f7
MD5 90e4934f3e5461b5bec8a9aa48cdcf74
BLAKE2b-256 57d78bfdac66ed37b58c6ab09cf79e99638a7832819b9867dc25c175a2095fe7

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6225c2a44ed890598a4e430994a9eca869f54a4267d7908614694128800a93d1
MD5 18bd9ad3cfa40f47f5547d88ff5b1706
BLAKE2b-256 0f6c6b1938c180553023c2bb071730baa6ff2ac6b1ad91d608b3a2a82778e445

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 59cec5922a1aeee5a9b4aa6c8bfa1a6417f16e773bbf83cf9ce994980b84a2a5
MD5 b97e2e80222101cdb527de0ffce30732
BLAKE2b-256 0c9ac229286af63c5e2e6272b9df3a58731897828d972beb2126769a3413b3c2

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5cf40cbc924bc6c92cf2ce0b2fe6919475c5789636a4b8d93af548695f78d45
MD5 be1da20e4f5003fad55db7fcf616a459
BLAKE2b-256 b5f4847f613ef5579cb0dc024a3e9d6341e8e47947f45c9128d20c621c64af8c

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-win_amd64.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cbdd70438f60050e6a437d18316db1d4de2ce0b3e09f4b43bc1bcd9fed468a73
MD5 f6ec6c46128fc776585d5f6276fa4ec9
BLAKE2b-256 5ec935b68be3c7fb1db979105704467e55abf917a7270719a293e84b8242959d

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-win32.whl.

File metadata

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

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f96bd4772a8a0e6d3b9735ab69cc32cfdd5df3f13670a8775db54ddcd7fe9d6d
MD5 4c733597d581f8daffeabd4b99887c2c
BLAKE2b-256 d6d046ef56cad9ca9de811b0ddc183083530759fd3a0d8587f463f2e1c902bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0464971123280fd4e6af498908e73551e5af6561560f5de9aa40efec79bbf05e
MD5 37e3fbb9f9dacd885d0ca1da2b75c515
BLAKE2b-256 df4cecdd0d2204f54b4c4ed6f4e02eb4de641fc3316cb0bfddb7e23625c47981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 062a4da93e12ef834f1f02c6820eb583a2bf92ad18c66dce04e7205a177d358d
MD5 6b9da29df9a0666a86da0613aabd4fc5
BLAKE2b-256 60a80ea4797bcadfa8067be6901f856f1ae7951b61207ecff6461378974bc7ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 854ffeb867c1f2565dfe494541857ab60f53887f12f811324be4dc4e19b8aa0e
MD5 acd3e231d49fdb61ae62d6fd71c9a8c4
BLAKE2b-256 700594476487837fd209ba21678e72c0471aa1c1bc796272a2addfa196c9de4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd99baf051a923d1d969ba9bb4f82936c002a00c3c2b385f1bb99f6d01f9d120
MD5 b1222a932b4cf0dc61e817d46dea394a
BLAKE2b-256 951d9aadc15c601a011026ae3568d3e111be2fc9bd9e915a7c1572f724bf94b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 13a52b1e206b5d0a81e17118fe0e1edca27e7a057eb2677decf00f71a9f841a5
MD5 6f856e0d6e9f564f3b95309c95833264
BLAKE2b-256 a52136dd525faa09f9b4d8529562e49b5e5507ff41ecc3fc55136f545fce63af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f32d7aae856e0d39a640490ebd5cdf41c10e29382d24fde53800ec64799226f0
MD5 7f3e3e5d2afa9cdbed2d4723ac087d05
BLAKE2b-256 9e151a9377e3a4643dc9268a820608cac050b4b89602b5065344ff47878f00a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc50a2e35a251edca354e0652109162648fc9576ececa3f69045f98bd3e14e90
MD5 2286c42b492c2a53be002b195029213c
BLAKE2b-256 343c08c68ab45b1f6c1510f87ae2d158c3f2f6da5dedb289f9210478c059b1a3

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aefa1be66af6295aa0e91d9654007950c24f68e727c41300ba2cabff442a9ec
MD5 5e7fdfe4f93f8c73c3cf506cd8efac9a
BLAKE2b-256 1b08ed8daee388b444196d0a54a3989d945aada58470eb35bd0555d87d9bc265

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7502baebc289b4105887fbc13354431765350349dc7b3941dcfaff68751bb249
MD5 884ca1d8d2425d3efdc40015cb875106
BLAKE2b-256 295320a52ba298fe02ac58bed3928bd2e6000fbbda4a443197823b77a2ac081a

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32fce0afc49a5aaf09bfa428ebf8463c6e01a602a0bc2f93efa628219d7ef5ab
MD5 f3c3155d7fd143675726b28e25827be9
BLAKE2b-256 ec8258e33cba5ee4351ac12db177bd7fc2f3e83deac29c993a1042ecb884f83b

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 030c5bf8f785bd74b12f68b5a628c3b989c15ebae02a77d54f6274b04270120f
MD5 6c3fa0901c1bbec8246ac188f0059c70
BLAKE2b-256 1ca648b336535b1f61a84b2f3aa7d3e0f2839a046588addfd7312cf29345d481

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8675a184d4a490eb011f4410612dd499eefd440fd2a8211462ae537807f5593
MD5 0ed7c249f44c36c87324e233cdab65bb
BLAKE2b-256 e05a02905766f95990ec846e1f4e4aedf031f9f279a8e35f7de2937b7cc5f7b9

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f0249f6d29ce4b3b33801b489fee3ef5e48f1a1adcb1598992042a497fe55f56
MD5 1feb26dffc01e54bd511c29616cc26e9
BLAKE2b-256 c097dadb251943ce988e7099d7969eb34ac43688e21447acc40b84d88fa83cfc

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5e7fb0ff2722de616a14a1f7c5847c464fcffe71173711720491c505430ab4e
MD5 011497624db098e486b6037e3da9394e
BLAKE2b-256 55f824518abf60f91f8c01979ad1e539454659730fce07ac0336665b64e8eea0

See more details on using hashes here.

File details

Details for the file pymongo-4.4.0b0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-4.4.0b0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6d178b47be5562c9b66862c9f599f09c26f917f94b27d880e3e399b0aa5de449
MD5 e161886c8c3171bb6e764497557f68b1
BLAKE2b-256 78968b75fb4f8d3701349bd352cb84cb9e126bd72265ec9d4214cb40b7a8a88f

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 Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page