Skip to main content

Python driver for MongoDB <http://www.mongodb.org>

Project description

PyMongo

PyPI Version Python Versions Monthly Downloads Documentation Status

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

You can also download the project source and do:

pip install .

Do not install the "bson" package from pypi. PyMongo comes with its own bson package; running "pip install bson" installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.8+ and PyPy3.9+.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

Optional dependencies:

GSSAPI authentication requires pykerberos on Unix or WinKerberos on Windows. The correct dependency can be installed automatically along with PyMongo:

python -m pip install "pymongo[gssapi]"

MONGODB-AWS authentication requires pymongo-auth-aws:

python -m pip install "pymongo[aws]"

OCSP (Online Certificate Status Protocol) requires PyOpenSSL, requests, service_identity and may require certifi:

python -m pip install "pymongo[ocsp]"

Wire protocol compression with snappy requires python-snappy:

python -m pip install "pymongo[snappy]"

Wire protocol compression with zstandard requires zstandard:

python -m pip install "pymongo[zstd]"

Client-Side Field Level Encryption requires pymongocrypt and pymongo-auth-aws:

python -m pip install "pymongo[encryption]"

You can install all dependencies automatically with the following command:

python -m pip install "pymongo[gssapi,aws,ocsp,snappy,zstd,encryption]"

Additional dependencies are:

  • (to generate documentation or run tests) tox

Examples

Here's a basic example (for more see the examples section of the docs):

>>> import pymongo
>>> client = pymongo.MongoClient("localhost", 27017)
>>> db = client.test
>>> db.name
'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), 'test'), 'my_collection')
>>> db.my_collection.insert_one({"x": 10}).inserted_id
ObjectId('4aba15ebe23f6b53b0000000')
>>> db.my_collection.insert_one({"x": 8}).inserted_id
ObjectId('4aba160ee23f6b543e000000')
>>> db.my_collection.insert_one({"x": 11}).inserted_id
ObjectId('4aba160ee23f6b543e000002')
>>> db.my_collection.find_one()
{'x': 10, '_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
'x_1'
>>> for item in db.my_collection.find().sort("x", pymongo.ASCENDING):
...     print(item["x"])
...
8
10
11
>>> [item["x"] for item in db.my_collection.find().limit(2).skip(1)]
[8, 11]

Documentation

Documentation is available at pymongo.readthedocs.io.

Documentation can be generated by running tox -m doc. Generated documentation can be found in the doc/build/html/ directory.

Learning Resources

Testing

The easiest way to run the tests is to run tox -m test in the root of the distribution. For example,

tox -e test

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.8.0b0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

pymongo-4.8.0b0-cp312-cp312-win_amd64.whl (680.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.8.0b0-cp312-cp312-win32.whl (656.1 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.8.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.6 MB view details)

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

pymongo-4.8.0b0-cp312-cp312-macosx_11_0_arm64.whl (698.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pymongo-4.8.0b0-cp312-cp312-macosx_10_9_x86_64.whl (699.1 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pymongo-4.8.0b0-cp311-cp311-win_amd64.whl (631.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.8.0b0-cp311-cp311-win32.whl (611.2 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.8.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

pymongo-4.8.0b0-cp311-cp311-macosx_11_0_arm64.whl (645.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pymongo-4.8.0b0-cp311-cp311-macosx_10_9_x86_64.whl (645.6 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pymongo-4.8.0b0-cp310-cp310-win_amd64.whl (582.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.8.0b0-cp310-cp310-win32.whl (567.1 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.1 MB view details)

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

pymongo-4.8.0b0-cp310-cp310-macosx_11_0_arm64.whl (592.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pymongo-4.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl (592.4 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pymongo-4.8.0b0-cp39-cp39-win_amd64.whl (533.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.8.0b0-cp39-cp39-win32.whl (523.1 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (921.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (935.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (949.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (922.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (924.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (910.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (901.0 kB view details)

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

pymongo-4.8.0b0-cp39-cp39-macosx_11_0_arm64.whl (539.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pymongo-4.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl (539.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pymongo-4.8.0b0-cp38-cp38-win_amd64.whl (484.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.8.0b0-cp38-cp38-win32.whl (479.0 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (685.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (692.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (699.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (685.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (686.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (678.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (674.6 kB view details)

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

pymongo-4.8.0b0-cp38-cp38-macosx_11_0_arm64.whl (486.1 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pymongo-4.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl (485.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0.tar.gz
Algorithm Hash digest
SHA256 c1585993847271dcbe6aae381f33155f0b18e899ce166a014f208419267b03cd
MD5 e1147d917f0f133d2a0253f268aa1e4a
BLAKE2b-256 8b95e4a125f65843f4f1f2a323f811ddd20f7d4e3c21e85caac9bf3221f3fac7

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b21dfad3d27aa96d06ace0fd2ee31357b97352af580c7bc856d911ef60cd70a2
MD5 c1da9aa7d9a59e57c4fdaf73dc2ff495
BLAKE2b-256 febea35391ca946bf691f31ee89a6897ffe5b79be270a3fbf8acd01259b71661

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymongo-4.8.0b0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 656.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f6a6ddb3f3dc23ef05c4fa43e7eb27342ce1a831da0e505427244714c33a6bb5
MD5 26f45db75209611f682bbc4d66a0c3c2
BLAKE2b-256 93daa6fa5a43147474d526a9db5e20af3e532ae712796b67440681b84ae9cfb6

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07745a3942c35b10a66b428f2f189531e995d9fec6dcf89a2b2131a37577987b
MD5 a0837aec75da323856b917e3c6eabdaa
BLAKE2b-256 75cd8b49546d4dd015efb8e637ad92fa63d8965a5859edcab7473c86c4422f7b

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7013d704a7ea603ceb3da36a1f77546914197c6d5e2ea6b017421acf46535633
MD5 27bbe61a0ed466696c0ceb1a91f9c85d
BLAKE2b-256 4b9f3f85d569ca3fa8aca085e2b30fd8bb7e5e2ebeba8025c67ead22c6bbbd2a

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72b6c98263966f2f53d90f15b4fafdea449d5d3c54691937abb820382fa78f5d
MD5 2cbe85e376de2653b1b5f4f2de57d58d
BLAKE2b-256 812c41a4f8a75d0eb07fe9da8e618b001c6333950fd15c618597583f6380e31b

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40c0ebdc86317bf0ca8dec61e8954731cc0013452c366d46ed3e8d9614d7064f
MD5 5a78f85c1209357c8014b0eab96351aa
BLAKE2b-256 84537893de2edc96cc386943f267fedfefe4e845de9d46ea2c57891c2c237113

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7c2f42dab1989f795042f2464fdd476c946fed238f585f338bf77ace47dcfcdd
MD5 ec77381731ea73ac5198c54e8b3e9a5e
BLAKE2b-256 4dd3179b00265f5c9a4bd7993e53178837d4b2d3c0046a2a159b43416fbb2996

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 371c02b60919eb6aac7c212bdb784281e4b2a3e1ac014ad9c550155c0e99c23b
MD5 d978c0915d6344962937f87b02b56542
BLAKE2b-256 dbd61a0eef58a0cabed2079efe66e89a3ac215abd73bcc1d63b5aadf1cc547b8

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c1c124f0d068e399b354384194ce840eec6071bc3125558bba550d2e364c36f
MD5 2a4734506b0a8e8daa1af15f99191947
BLAKE2b-256 d861b9354576e2074de8635f79d53dec52a8f3ce1cc4d37e310ba20bd5badeca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 975b0e40a8b73ca948e649f66a756649f0b0cd5689a37d528269a5911ed6a577
MD5 1142d486b76cd0c6fc2c747b6dc77453
BLAKE2b-256 533801360b65bc08f4d5ab7f5f45a4a39496b0664addc9e8fa89197f772c2f53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 611.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 204f793cc7875bd67ec2de4b745def5bec6ebfa5d2322180339164ae9a5d4ea7
MD5 b5ac35f1c3cd1e0411530cd6ba3152d5
BLAKE2b-256 333a26d5a9470f9509ad628d576935420eeb3a0e89b1173349e40aa85c054be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c07811c1f47cf08f258e7a678ea9000e6f14f6175c76a3a60ab3ddf890066141
MD5 b5bcb9d07c5991249072afdc9b8561c2
BLAKE2b-256 22c9718fafd06cec6916cb0de358d6a2460f945eb5e25ec52de64112e774b4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18155ff47d70712652085c619dc4f9b96243dc3f400d2b82308f98aa2ccf59c2
MD5 68dd85388dd0861f9e9945ae6262e174
BLAKE2b-256 3ee070085390fe2b78e9155b8baf26585076f16c1c091d4d890d9a6ff27836e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5f9888cb4a621022b19af212aa99ab87b2ec3631f95144f423a820167611869
MD5 b111bcda138c55d17b700b63ac632eba
BLAKE2b-256 144b56996a159b9c79823dbb9c213566c74957f184e4fb0ad101ee6e6cf7905c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b0c7b8817e281a89f62ec770c9cf808d23a8086a170b6ab0dc9a317a6101db1b
MD5 23c46d4a0162670379a8ad45a5c45789
BLAKE2b-256 7121ab046ba1ea1707084acb51ac09c3d43711b9f464ad79a68d7475aed2c10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04f618849fcaf6b683148bb458f1117328fdb8b8539c415227219d4d06ab8275
MD5 d63d42f3fa9dbbbf57a6989d98985394
BLAKE2b-256 5e01f8d6aa0e0dbf6700339b2eaa8c1db7e2bd47b07231c46223c659da1d6634

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a8fba9819f9a311f5dece75d4516f1ea776e98783a1d9d0e640682a9fc74259
MD5 94b70a48a0e64d120ec264d157e497d0
BLAKE2b-256 f019333259a6f72ddbaf3973dcb613daaf71f6934f44b8ffce56317bd0b255f7

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f5653495a9c4823a9c542b20686e95e08d58603b13efeb4ef5352d47aec83f9
MD5 c765baf04fdc320fd63b30ada2616cf5
BLAKE2b-256 82caa4b0505d1322aac453c054cabe3c79dfbe8c0c705fd8930bb6af98599d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8b255bf573461f3c33298a8109f46cd2c5790cf89a34e5f9f31c5ff26c6c250
MD5 a7761728208a5763738bd1092a690dad
BLAKE2b-256 387cead4f1f777aafb52855881cfd2ef6c182b5ba5e59a70fee50c11f1202f67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 567.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a879728034a97116212340dde21a1326ef90c5cf1c1753d20b8db0b5ceeced2e
MD5 771ebbb292c261b82b625f00473e321e
BLAKE2b-256 40f0b37c025ee249cd25b505ca7da9225a39077bd9e51d4097921d9c53f683c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43d5cd75d3d4bac35e1fc615053717dfe0be185466e6b471378085c80e371cb7
MD5 6fe3bfd45239c92f421d19d95baca179
BLAKE2b-256 2dc0145e93b87ac09944449de5482ffa5de5ce861f5f7e011988dabf32c82248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0765cd82b14cb3bc405f68c843b52d47030d898f6342d21f035496127c715ea0
MD5 5a90de02a422d3d48d083a159dae6c6d
BLAKE2b-256 9d99e4c204ecf43c607f4b5d18b2b9092ae5d1714450f4ff0dd2c47c0fb1e9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 efe9f3e57738ac52a9a14aa1992eb760cfaa14a1eb5ab15091e1ef2f9a51d0a8
MD5 e9a32c1de06c1dc1cd38e202a3c4c143
BLAKE2b-256 6305698dff18bc55977ba778a667be4ebfdc4992882001c2bcd329033f6e1df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94b1e07df1091a6bc57b1f62ca5dff0c29fc5f0aecc418c629e35b2fc601b354
MD5 6a8faa51631347a3c296aac86fbece58
BLAKE2b-256 2222fb363dc667d2626f85913bdfb2a61f2f645f964a9879ac6a760501660ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d59d092aa0527e7e92f0398c4e09d88f5dbb07e23184d785dfe6a07c510d556
MD5 5f6e5b0200cb1b34cb2a6c8f53575262
BLAKE2b-256 c6ccac349418bc431eed04a0385d06d08e7b2082faf74d64a41de443fc74d2e8

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 605245c47f838e8cedd2d1162aa265b033275ab8279843882db959aeddacd0c7
MD5 a05247e6377b0a486daadfc73c2affce
BLAKE2b-256 d4a78a770597e0c0a784ab4e1cc5965d7c8c5b6345a4be7839491f8e12240480

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6acfa42e7f4e2f21355801a83aeabd856c8589a10ef050e52e03a11315c40c15
MD5 1cadafd6d4ff1ef755889634404403a6
BLAKE2b-256 b8db73d338a56a5c0d952b8a0786b5f72a0eae51a53260f6903d3a95b3b396d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 533.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 63fbb01e12451ef9ce0032da0225dfb676d32ed6bfd90f3bbc63a69f28e42b5d
MD5 b58a2ec0791986853291b7c89287ccc9
BLAKE2b-256 dc289e9e385ac8ebc41050210463d0423597dc825f4f2a0ca5d86a15fb2b2646

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 523.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 920d6646aa45b544e36046d55d397aecffb55f3cba6e2a8aa8ffefa6b5f71d91
MD5 ca950b74b956da2019a33ddf163f54b4
BLAKE2b-256 a920d798e711a85be36528b69234781c495b61e564a74b6252c96f1f89629ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c18dea08ead4b07c640e528ba4ceb753a87b0011f918d9c07b5c699c502ef72
MD5 15b7356562f12a6dfddcd1a94160d976
BLAKE2b-256 3fdcdd733cf2fbaa99cede53b286e16b182e8b01489f5bf7d349bd964be535bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46fe1e28a231edfe9e121954065b55893be4a9f3eeece86c3eb519373a00a42a
MD5 bdb94521a8104dae61cda58b5b0cc87d
BLAKE2b-256 84ed46a97c5493c4aa7d3227f18d06c349b80c39aba7e9b72f82059c10f844c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 002a3cfd3a0d23c6c7201f231a9608e82dc06e9ea1fd955ed2bc4f5202798940
MD5 284952a40c81fe2e93e87636670e5158
BLAKE2b-256 0114047f36904e0e4eef6d264815d19e9bb23d7366f7e14f8a56183a1187f0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33dc2df5be5827137c80f435553acac4a46788bab2bc157b80dbcc85df063ae8
MD5 9a8ec5268488bcbfdb37605b50036620
BLAKE2b-256 a1ccddee5a257bc69062f36cf70ea3c2d9a2405b391003a2e38e92a6ff6aa980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e633e60af61d2cb5d49d94c5893d7a350aaebbae4d1d0edc34ef39289095797f
MD5 8697741922ccfd167f45d041fd6f721a
BLAKE2b-256 6d2a31350f491952246277d2f7469b4945f501674b219c990c35b369728dc30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e463cb3c0ef1ae4c75179f38d4f314df625e202fc688c708fd85cdcce7caee3
MD5 fd5ab97210db9b4c0e5dd5204ee1cb59
BLAKE2b-256 de0a22cdb7fbc863012cc18f8fb8194b6e828229af499f15990390d856afb61a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a23959853c7c64abffc992e96db47267014cbbfbbad3ac42ad59cef04bbe306b
MD5 25b9b988cea651983b8e9a771d214f4b
BLAKE2b-256 fe5584e1dbc5929f438eb235e5606f2c37ebcf6e8331cdba291f033c701f635c

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46d66bfd57429e054707e98bc71e621779fc1981a44d8e1abbfc53f2561b3ff8
MD5 6687b8032f31f45657b559c6f936f17c
BLAKE2b-256 61a14a93569028af2daaaf4818bc783b7ed233fc7fb591184be830d363f03d7a

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8ae5772450e88fc6583b20f4a127b3809d1e51c06d54d6e5a75bd95b0d1bbcab
MD5 8ac64bf72549033eb4dcecbb0f39ef5d
BLAKE2b-256 a227979a0509830cce7c18da64c6e0bf3da29f0e3a46a0719bd9c3a917e4ce9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 484.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6d86aa031f3669715973c7db5f9fe6e4125a018cc811e82a2ebd4a3b8d03bedd
MD5 1e348e7ef5f2b640b509c574d77c1f81
BLAKE2b-256 8c861721921d5f1ca82f1b98e544f1cc44e1879ce6b0eaba2221d69be57a4464

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-4.8.0b0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 479.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f4f87ca1d26c3a290d55dd662b6b72486b7c8b93db8eba4fb7020844f00514ce
MD5 3a710151d7ca3cdcaf7d7421bcf90690
BLAKE2b-256 2d2966b3f1726a2d7a85885c4cf40c79393c3eb0627403b0470206e094db7f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75be0352f87a53c056f58c08e462c44cf41194cdc5cc483ee199fdd25cee3b37
MD5 58c947d44c5ebab4840ba1aebc2ac24b
BLAKE2b-256 c29f1e9724bd4515bc62c358a3108587408afe478cb07914887068fc9b02e48d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 588c6c4e9845652c825e593282ab9a929c5a8098562d32f071d81d3f1f87928a
MD5 850806f23ef86f6d85df441946eec993
BLAKE2b-256 22d40e24ef29927596de876f570f5f90ffff4fef7da819ff50129ee59a87b252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0b28af5485f10bf414d1d04d6575a01fd0f56ec4d5112469c0331ce9ba7c1d2b
MD5 a3a50ae686d5c631c8a442e2f33dcdc9
BLAKE2b-256 39bc9558531b3c9ba30f44ee976e5294c65ff189b36a3349765e36d67caba9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8fe60493f44a860f0ee8f3580ee38418260962ef912441fec8a8c1bed42431c
MD5 83ea9770f35819319e932aa3c4f58b7f
BLAKE2b-256 25f9312dee17decadada99acdebee6d0820bd6e032656bf90ddfbfcec435e0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 066861c0b4867756cc26dd91378eccb5efab531837c69e09f3ed294d0680e4a1
MD5 7ce526a98ec79e5210129c983433f9fc
BLAKE2b-256 af4dd8ba8277fd104c4b6a5987ca1f1d0156f68e4fde30f0b054a3c6c0ed0474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44ea43d4f9ee8601b438c2a73c5e4057651260ec23a9141d2eb17e4ec77ca14f
MD5 3a8ddf41eb89b3cdbb3bdbe936936996
BLAKE2b-256 0e9f3b22784ba83f6429c163a3fa875a9bd244a1560d89647f4fc18edbe93921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6da60972f868067acb0928ebb6e3d7c5711e2724e8c48bb147c25b5eaa6f18b
MD5 cdb4455e588fcfe8db4aaca205bcbefb
BLAKE2b-256 76fa8f83d7e69c83261c623979e5e862098c2392108956367b1acd41f28f18e4

See more details on using hashes here.

File details

Details for the file pymongo-4.8.0b0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 060d36eb464658f437b5121c12403e642535c458a480754ada2be1465839ee4d
MD5 c0037acf90d1350a070910528cb7b4fa
BLAKE2b-256 52e2f6670c8dedb639710279c0ce318e008ad57143d5d8ed59fa17463cc98b8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.8.0b0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd13d904a993a752c4ca8cf72b7beda82e0338b4bcad19fa144a51fa25ec0f45
MD5 62447d0cd5a92db301f879fe1404a220
BLAKE2b-256 b9c2eac7d4676761906fa749ddf53970a39726a1bcc9a7a6525c65de4b0d9623

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