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:

$ pip install .

Do not install the “bson” package from pypi. PyMongo comes with its own bson package; doing “easy_install bson” installs a third-party package that is incompatible with PyMongo.

Dependencies

PyMongo supports CPython 3.7+ and PyPy3.7+.

Required dependencies:

Support for mongodb+srv:// URIs requires dnspython

Optional dependencies:

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

$ python -m pip install "pymongo[gssapi]"

MONGODB-AWS authentication requires pymongo-auth-aws:

$ python -m pip install "pymongo[aws]"

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

$ python -m pip install "pymongo[ocsp]"

Wire protocol compression with snappy requires python-snappy:

$ python -m pip install "pymongo[snappy]"

Wire protocol compression with zstandard requires zstandard:

$ python -m pip install "pymongo[zstd]"

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

$ python -m pip install "pymongo[encryption]"

You can install all dependencies automatically with the following command:

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

Additional dependencies are:

  • (to generate documentation or run tests) tox

Examples

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

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

Documentation

Documentation is available at pymongo.readthedocs.io.

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

Learning Resources

MongoDB Learn - Python courses. Python Articles on Developer Center.

Testing

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

To verify that PyMongo works with Gevent’s monkey-patching:

$ python green_framework_test.py gevent

Or with Eventlet’s:

$ python green_framework_test.py eventlet

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymongo-4.6.3.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

pymongo-4.6.3-cp312-cp312-win_amd64.whl (473.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

pymongo-4.6.3-cp312-cp312-win32.whl (467.7 kB view details)

Uploaded CPython 3.12 Windows x86

pymongo-4.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (692.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pymongo-4.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (701.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pymongo-4.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (704.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (694.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pymongo-4.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (680.7 kB view details)

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

pymongo-4.6.3-cp312-cp312-macosx_10_9_universal2.whl (533.5 kB view details)

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

pymongo-4.6.3-cp311-cp311-win_amd64.whl (472.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-4.6.3-cp311-cp311-win32.whl (467.1 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-4.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (680.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-4.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (686.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-4.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (692.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (679.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-4.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (669.3 kB view details)

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

pymongo-4.6.3-cp311-cp311-macosx_10_9_universal2.whl (534.5 kB view details)

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

pymongo-4.6.3-cp310-cp310-win_amd64.whl (472.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-4.6.3-cp310-cp310-win32.whl (467.1 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-4.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-4.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (683.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-4.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (689.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (676.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-4.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (665.5 kB view details)

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

pymongo-4.6.3-cp310-cp310-manylinux2014_x86_64.whl (697.1 kB view details)

Uploaded CPython 3.10

pymongo-4.6.3-cp310-cp310-manylinux2014_s390x.whl (700.7 kB view details)

Uploaded CPython 3.10

pymongo-4.6.3-cp310-cp310-manylinux2014_ppc64le.whl (709.4 kB view details)

Uploaded CPython 3.10

pymongo-4.6.3-cp310-cp310-manylinux2014_i686.whl (692.1 kB view details)

Uploaded CPython 3.10

pymongo-4.6.3-cp310-cp310-manylinux2014_aarch64.whl (695.3 kB view details)

Uploaded CPython 3.10

pymongo-4.6.3-cp310-cp310-manylinux1_i686.whl (692.1 kB view details)

Uploaded CPython 3.10

pymongo-4.6.3-cp310-cp310-macosx_10_9_universal2.whl (534.7 kB view details)

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

pymongo-4.6.3-cp39-cp39-win_amd64.whl (472.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-4.6.3-cp39-cp39-win32.whl (467.1 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-4.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (676.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-4.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-4.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (689.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (675.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-4.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (685.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-4.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (654.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-4.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (663.6 kB view details)

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

pymongo-4.6.3-cp39-cp39-manylinux2014_x86_64.whl (696.4 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-manylinux2014_s390x.whl (699.9 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-manylinux2014_ppc64le.whl (708.5 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-manylinux2014_i686.whl (690.5 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-manylinux2014_aarch64.whl (694.6 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-manylinux1_x86_64.whl (684.6 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-manylinux1_i686.whl (690.5 kB view details)

Uploaded CPython 3.9

pymongo-4.6.3-cp39-cp39-macosx_10_9_universal2.whl (534.7 kB view details)

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

pymongo-4.6.3-cp38-cp38-win_amd64.whl (472.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-4.6.3-cp38-cp38-win32.whl (466.6 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-4.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (693.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-4.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (700.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-4.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (705.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-4.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (692.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-4.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (701.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-4.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (688.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-4.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (678.5 kB view details)

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

pymongo-4.6.3-cp38-cp38-manylinux2014_x86_64.whl (716.6 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-manylinux2014_s390x.whl (720.5 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-manylinux2014_ppc64le.whl (730.0 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-manylinux2014_i686.whl (702.9 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-manylinux2014_aarch64.whl (714.5 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-manylinux1_x86_64.whl (701.2 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-manylinux1_i686.whl (702.9 kB view details)

Uploaded CPython 3.8

pymongo-4.6.3-cp38-cp38-macosx_11_0_universal2.whl (535.6 kB view details)

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

pymongo-4.6.3-cp37-cp37m-win_amd64.whl (472.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-4.6.3-cp37-cp37m-win32.whl (466.0 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-4.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (659.1 kB view details)

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

pymongo-4.6.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (665.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-4.6.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (670.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-4.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (658.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-4.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (671.9 kB view details)

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

pymongo-4.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (658.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-4.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (647.2 kB view details)

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

pymongo-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl (679.9 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-manylinux2014_s390x.whl (682.5 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-manylinux2014_ppc64le.whl (689.7 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-manylinux2014_i686.whl (669.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-manylinux2014_aarch64.whl (678.3 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-manylinux1_x86_64.whl (671.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-manylinux1_i686.whl (669.4 kB view details)

Uploaded CPython 3.7m

pymongo-4.6.3-cp37-cp37m-macosx_10_6_intel.whl (534.4 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

File details

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

File metadata

  • Download URL: pymongo-4.6.3.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.6.3.tar.gz
Algorithm Hash digest
SHA256 400074090b9a631f120b42c61b222fd743490c133a5d2f99c0208cefcccc964e
MD5 ea52139a903be0d4577815b79b90c07d
BLAKE2b-256 6f5db05b09299f0b03219db9e31ea404e89c056f55a0aafbb403f6710391c44d

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pymongo-4.6.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 473.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2a6ae9a600bbc2dbff719c98bf5da584fb8a4f2bb23729a09be2e9c3dbc61c8a
MD5 fa70704bbad6b7b10c3e1d0b9f51c14d
BLAKE2b-256 b38afb83c32b40a47cbbbecff401e41f089b4387c76a806052ee4ac4810f06ad

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pymongo-4.6.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 467.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a023804a3ac0f85d4510265b60978522368b5815772262e61e3a2222a8b315c9
MD5 f33f5ed7aa3391a07be66c7fd56c1a5b
BLAKE2b-256 e09afb43e171d0b314ab75206e59ae87196045617422885aa0e32f6c59ac9b07

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01277a7e183c59081368e4efbde2b8f577014431b257959ca98d3a4e8682dd51
MD5 a65461549a789af0649b87b21a2843b9
BLAKE2b-256 e2354b18e02232a86e7cb4ac478af78d33e3528182965e39c6d4dcac55284802

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4330c022024e7994b630199cdae909123e4b0e9cf15335de71b146c0f6a2435
MD5 20eab81cb97ec9ce3e3b047449b63427
BLAKE2b-256 d4fe70f5a2bf64ab3353bed4487b7f6ac8f6ca90b65dcb9f10e193f4135d9f9e

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 391aea047bba928006114282f175bc8d09c53fe1b7d8920bf888325e229302fe
MD5 0d6eaef9d5b6fc8ea17a150979199bc8
BLAKE2b-256 e3331e9c21c045dd1a5e13ba3f7fbf2675c5c8d03abd97bac987dfa31798e897

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 994386a4d6ad39e18bcede6dc8d1d693ec3ed897b88f86b1841fbc37227406da
MD5 f37e9ebd3cc656fd3e5e6bba8b5df6ac
BLAKE2b-256 e9e0282c46bb31f5a0b548153bd0f42a932765b217ac88e4b5e2f1fbad5eef07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d30d5d7963453b478016bf7b0d87d7089ca24d93dbdecfbc9aa32f1b4772160a
MD5 eb023a02633952345f25f677fa004f01
BLAKE2b-256 863a39bdf2351fc3a0296157d7416b4c1f783f4b602066d54d66299862d106a0

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.3-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 722f2b709b63311c0efda4fa4c603661faa4bec6bad24a6cc41a3bc6d841bf09
MD5 d16479f12df929caf82df2c8455aba38
BLAKE2b-256 e32a2618a4b06f171898567afcbea35e38b3331888bdc75ed0326722974186b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1c2761302b6cbfd12e239ce1b8061d4cf424a361d199dcb32da534985cae9350
MD5 6ce377f73820917e9c6b89cc2d949f0c
BLAKE2b-256 6b3811db8be24e20b0885182aaa3839db2eb2be51f506a222538762e1b3723f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4670edbb5ddd71a4d555668ef99b032a5f81b59e4145d66123aa0d831eac7883
MD5 c88727349fee69c953bb6c6501a9fafb
BLAKE2b-256 6ffb5ff6853f16813077b4edd75b6f581e01e09f842cf92a1ce74dc662322e8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ad3e5bfcd345c0bfe9af69a82d720860b5b043c1657ffb513c18a0dee19c19
MD5 f65cd43fe105cbe0ad2d5f2c54d8a53b
BLAKE2b-256 00079b7612de2ac167d1dee7d18fa4e37fa830e7242c3f249f5d824931dcd26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 872bad5c83f7eec9da11e1fef5f858c6a4c79fe4a83c7780e7b0fe95d560ae3f
MD5 d28c7cb8cdc5ef2e42304fc560e67062
BLAKE2b-256 62ca26b035ee50570a792269653ae91514fd25a843f540cf2b1c2ed385bae8e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b35f8bded43ff91475305445fedf0613f880ff7e25c75ae1028e1260a9b7a86
MD5 32c39ab826d18a5963252c9d35291fdd
BLAKE2b-256 e0e685a4776b85e58c6cb223bed574ff8c5f887feb31f98c1cf4aa91001d2c81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60931b0e07448afe8866ffff764cd5bf4b1a855dc84c7dcb3974c6aa6a377a59
MD5 35a50dd001e4efcb171186b936eb21b2
BLAKE2b-256 a3181023fbf4882f04495faca58795d3d50bda565c1dc173b7201380af3c20e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e208f2ab7b495eff8fd175022abfb0abce6307ac5aee3f4de51fc1a459b71c9
MD5 a13ed513b541ed9faa6ea9d9ba85985a
BLAKE2b-256 3892adea29f9f09cce0ab733b01a936ba7dbe5a617f6cf07f9a92b95c5b5e92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 138b9fa18d40401c217bc038a48bcde4160b02d36d8632015b1804971a2eaa2f
MD5 2fee18520abcdb29512294fb7ccb2d45
BLAKE2b-256 2bf0bc30f0d9f7f1b3de1eb51ef8ed85378ff237f551c28bf4a23e71cf92aa20

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6cec7279e5a1b74b257d0270a8c97943d745811066630a6bc6beb413c68c6a33
MD5 baf455e45b8b9cf3b4ef6a2292bbe5c4
BLAKE2b-256 097c6098d6f1a6a9dc32d6bfc27e1c831999f5951aa0a72cf5c458ce034d24ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cdbea2aac1a4caa66ee912af3601557d2bda2f9f69feec83601c78c7e53ece64
MD5 3bca3a6ab6f9755fcc5546e39f7de4d1
BLAKE2b-256 ba4f30c2469a420673a30db91ab421e7269092f39490fe5dfbb5d52e28ec3540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664c64b6bdb31aceb80f0556951e5e2bf50d359270732268b4e7af00a1cf5d6c
MD5 a2bd1e26689838eb9f130a1606acf365
BLAKE2b-256 68b468558867e6108d90db35bbbd55610e4c8e6f0c9d1fec9a2b4e5246ec5c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ebcc145c74d06296ce0cad35992185064e5cb2aadef719586778c144f0cd4d37
MD5 39a28b56a821ce3d617119fde73b60c2
BLAKE2b-256 d18a26c1bb515c3ce84973d940bbba51f3879987db1916632db65d44d6cf4930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e97c138d811e9367723fcd07c4402a9211caae20479fdd6301d57762778a69f
MD5 21e7325d074ccd87db766e085d6256b8
BLAKE2b-256 16646c1cfaa35fc0e3b1617f155b763d0ff3f46e8828e1c475cbe08da40bcdfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ccc15a7c7a99aed7d0831eaf78a607f1db0c7a255f96e3d18984231acd72f70c
MD5 097d8e322064e8f529eed03cc16f18ab
BLAKE2b-256 7c68bb521d2f027d528e38bf03365b610b6b28a13fa875b4f0e51a485f7a1e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4056bc421d4df2c61db4e584415f2b0f1eebb92cbf9222f7f38303467c37117
MD5 0cfc9829ebf896b5a2dc078bbb6ca6ac
BLAKE2b-256 5b0bee67d43eb5e5c6caef87fbd9bbb1201d655cb6f7eb8aa505e0b326fd37ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af039afc6d787502c02089759778b550cb2f25dbe2780f5b050a2e37031c3fbf
MD5 767f7f2dde4a176492163c971f772db3
BLAKE2b-256 f4878d12b7d2179368ae786c0e898a9751aac4d378b8e3a4d2d26826b53ef12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4955be64d943b30f2a7ff98d818ca530f7cb37450bc6b32c37e0e74821907ef8
MD5 7c7a55ac267970a0d8d7cc6a604f2e51
BLAKE2b-256 8d97545293b52ff506c10c172ea6615dcc8e3e3de46329ae247c0fadf396c29e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc7a26edf79015c58eea46feb5b262cece55bc1d4929a8a9e0cbe7e6d6a9b0eb
MD5 492232099f9f4ae01a0010822dc8f7a1
BLAKE2b-256 d3bb673ce2c150ab75f3b2b78ca7837f38fb34b6f65cf82ead4b9c83020916e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00e6cfce111883ca63a3c12878286e0b89871f4b840290e61fb6f88ee0e687be
MD5 c3054baad013f2b4c1dcb7dbad2a86b0
BLAKE2b-256 c8f8584232059efaaadeb9cb4a66a552653c64c650a8aac9f9c6871163e26f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4726e36a2f7e92f09f5b8e92ba4db7525daffe31a0dcbcf0533edc0ade8c7d8
MD5 31be8f664cffec87e1aaeb6b85f42cbd
BLAKE2b-256 7a06b94ab5df85cce366f9535d0d36a716d44e1ec2647bd0774698285d426492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 731a92dfc4022db763bfa835c6bd160f2d2cba6ada75749c2ed500e13983414b
MD5 0be20268ee1522d363bafdbc560f44dc
BLAKE2b-256 6d0c6b71fc608ee1bd8191757efb61834053ccfcb260b65d5d66964ca5292cc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e344d0afdd7c06c1f1e66a4736593293f432defc2191e6b411fc9c82fa8c5adc
MD5 d5a1332e5d737a17c6ac471121276b86
BLAKE2b-256 700b94b7ac6ecab09ef1afe904292a4fda92341d5c6ab4bc74d349c5142f186a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6d5b35da9e16cda630baed790ffc3d0d01029d269523a7cec34d2ec7e6823e75
MD5 0dc5604bca3ea1f08df96f24652cdef5
BLAKE2b-256 a21907a975963333abe9a1a8988c15636d6615411026e94b11adac16705763c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 98877a9c4ad42df8253a12d8d17a3265781d1feb5c91c767bd153f88feb0b670
MD5 a37620a4bc8689c12d97661c7766e375
BLAKE2b-256 f031a46446ddb446f3266a2e7769d38681c0e2a0b74436193701899d080768ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3d10bdd46cbc35a2109737d36ffbef32e7420569a87904738ad444ccb7ac2c5
MD5 5a8247a48f691775197eba4797ded1bf
BLAKE2b-256 1765cffdf807c2d677f51902c69592d3ee730fad1ce345db3fd166bbcf7ff53e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ef1b4992ee1cb8bb16745e70afa0c02c5360220a7a8bb4775888721f052d0a6
MD5 adb4312bda891148e82a7578a381ccf0
BLAKE2b-256 af5e79a477afd4fec46fdb54bc4b97b8009418c872c70038ea2ac83a5cda37e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 705a9bfd619301ee7e985d6f91f68b15dfcb2f6f36b8cc225cc82d4260d2bce5
MD5 88a22ed910868c0a1b4a8987ffcb1a9f
BLAKE2b-256 92b646bc46551be42ce533ea2d051dc01a0397cf11b2c2df29c719f2f28c6074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e097f877de4d6af13a33ef938bf2a2350f424be5deabf8b857da95f5b080487a
MD5 6e6cce933cef96154aee85ba44279a12
BLAKE2b-256 37be879d8bec367c2690d15b31a29461b54419481505c34f51bdfa6cae7c983a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bec8e4e88984be157408f1923d25869e1b575c07711cdbdde596f66931800934
MD5 3e8a4509c15ed4dc7a5e5ee45e8bfe3e
BLAKE2b-256 070326b2fb17c77ce1d288fc3178f497e6fa00209fe34d5777b67dfd899ffcdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9e51e30d67b468a2a634ade928b30cb3e420127f148a9aec60de33f39087bdc4
MD5 7e92e8661532249d0fe1c9ef3d553cdb
BLAKE2b-256 87cb5f8ef497d5f87c9d2208319b137746cb0eb01c677650f7838ff96e78a2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17c1c143ba77d6e21fc8b48e93f0a5ed982a23447434e9ee4fbb6d633402506b
MD5 35efce7a56e3536770c0788427f09994
BLAKE2b-256 9b8dd3da42d421463550a9e2927ed210c8d8795a2893839c3dd0deed3fdcbb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff7d1f449fcad23d9bc8e8dc2b9972be38bcd76d99ea5f7d29b2efa929c2a7ff
MD5 6a6b0e322cb381bf4deb5fb91c3b802b
BLAKE2b-256 343290e6c65123d5439719906c0976de1bf11098f9b69151a2f0baf54cd4e4c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 becfa816545a48c8e740ac2fd624c1c121e1362072d68ffcf37a6b1be8ea187e
MD5 03fcedcd6e56175d0e56204f468a280c
BLAKE2b-256 8f72b57f4e117c625662b34ddb00a6c31b6d01f87afcba7c12760cdff88fd699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c8a4982f5eb767c6fbfb8fb378683d09bcab7c3251ba64357eef600d43f6c23
MD5 85936aaec675a5c3024b3c29d589591a
BLAKE2b-256 9c9455367f20394d32e8497458b71215c80cb0af92a50ffb71db34525b37cacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8d0ea740a2faa56f930dc82c5976d96c017ece26b29a1cddafb58721c7aab960
MD5 976bb64ec03a9c3cf4b59ecc68116b04
BLAKE2b-256 0334b5dd2079cc40840ba9730e5471d68a7a64db5c324c6a8b0344fc57a3d352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0182899aafe830f25cf96c5976d724efeaaf7b6646c15424ad8dd25422b2efe1
MD5 380f9ada59254380c3d5719480f0df15
BLAKE2b-256 e1035efaff98699c33ced7924bfe62a75ab2570c2f27f295c67a29c1eadb69b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6de33f1b2eed91b802ec7abeb92ffb981d052f3604b45588309aae9e0f6e3c02
MD5 b94af81c0239375caca150a5ab2d289b
BLAKE2b-256 3afe3da29df3b50deaf3faa00591882d29dcdf2bd89c54a20072a2c6c715a638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd6c15242d9306ff1748681c3235284cbe9f807aeaa86cd17d85e72af626e9a7
MD5 a8b5a425db193dcbcca38a17a9e68362
BLAKE2b-256 0eab2dbf438193bfa14096df53c5792809465c79545b8ede2ea620d528b96608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 14a82593528cddc93cfea5ee78fac95ae763a3a4e124ca79ee0b24fbbc6da1c9
MD5 6d5ce0cfd3497d2bbb8127ab94dd9d4a
BLAKE2b-256 d0d9b89db700186dc65bae5b1c4e7ee0f7ab6ce3f2a9c9f62c65447944d8ad6f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3e1ba5a037c526a3f4060c28f8d45d71ed9626e2bf954b0cd9a8dcc3b45172ee
MD5 8ffbf4f66d3c586ecf08dc754de98971
BLAKE2b-256 ada5deb4452b2e1c59cca6c5861ee8b78e26526480d0a565251384a578f449f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 90525454546536544307e6da9c81f331a71a1b144e2d038fec587cc9f9250285
MD5 4770fb17e52e2709fd25a3d590ab2d81
BLAKE2b-256 96ffd5ad3e79722219d422f14a106c22a2e744fdf6cf06af0dc2a7f554889b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa310096450e9c461b7dfd66cbc1c41771fe36c06200440bb3e062b1d4a06b6e
MD5 608bb4694f6f5d6935372248d266dee4
BLAKE2b-256 18a2029a3c80ff5d371d5d158af2066fd374fa74c7cfdfb1a86e491a4d6e0294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a0660ce32d8459b7f12dc3ca0141528fead62d3cce31b548f96f30902074cc0
MD5 2bb6ea694a7643e88a16570ff10e59d8
BLAKE2b-256 9a61f415d2a0f04bed261122f75309ed6384c241834335f7ea7c0e7d2309739c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75107a386d4ccf5291e75cce8ca3898430e7907f4cc1208a17c9efad33a1ea84
MD5 d877147a2d4a0c330848660f7388e546
BLAKE2b-256 86e48ac4c48c80cc999c4e91f8452c4f79f92ecc6cc50f7097177f9d4df1f608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53451190b8628e1ce7d1fe105dc376c3f10705127bd3b51fe3e107b9ff1851e6
MD5 20b45dad542eff835d798cc5bcb7cbbf
BLAKE2b-256 dc9ecda4b45a2d3db76be61a63b0246fcb4202fba3be1ed4906c4c068acee739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c701de8e483fb5e53874aab642235361aac6de698146b02c644389eaa8c137b6
MD5 3532e8e011bf274c1dcf1406b6559608
BLAKE2b-256 43b2cfae3b3a19af88b8141677dc95a6c2b3e4a7da729a6816580c93a81f0c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c67c19f653053ef2ebd7f1837c2978400058d6d7f66ec5760373a21eaf660158
MD5 d1fbe5129ffa455183d5b3190281d8f1
BLAKE2b-256 20cd915bb76485635e7e4892466c6518be08c90a4e45140ee29a0d8022ba104e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f465cca9b178e7bb782f952dd58e9e92f8ba056e585959465f2bb50feddef5f
MD5 b81d787b8eaf565c5d6debca70689fb3
BLAKE2b-256 eb8fa86037dd355426c83435c950e41ad490298f439640c40e05c7e9a8d391e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7df8b166d3db6cfead4cf55b481408d8f0935d8bd8d6dbf64507c49ef82c7200
MD5 500a2e2ca7028ecec725f239dd269d70
BLAKE2b-256 45bc376db78dfc82bb850c418a389f58a09e8f0a072549090bc76ff1735bff1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dde9fb6e105ce054339256a8b7a9775212ebb29596ef4e402d7bbc63b354d202
MD5 970526af3e94814b27bf4d8c1146b41e
BLAKE2b-256 9696b9295752c36a339c84069001c672182b9adf3721171aa71367e4dace55d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9757602fb45c8ecc1883fe6db7c59c19d87eb3c645ec9342d28a6026837da931
MD5 bea2f0984b458122ab228173322d23ee
BLAKE2b-256 78b9952ebbf48bd37846ab5a256932bbd6509d86515e3f77975abc5439f40590

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b5aec78aa4840e8d6c3881900259892ab5733a366696ca10d99d68c3d73eaaf
MD5 9e78e427194acd3cb892b4bcb3154f44
BLAKE2b-256 b1a2b49ae5dd844cb73162f5febe8d07a1588aeac02298f3edcbaffeaae689a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af5c5112db04cf62a5d9d224a24f289aaecb47d152c08a457cca81cee061d5bd
MD5 0101671a2d30884135b4d7d699ce2cb5
BLAKE2b-256 d3c6aefd5e7249d3034c2e3ccf876343219f2aa47e3595ab6efef8e4a79204e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7ee79e02a7c5ed34706ecb5dad19e6c7d267cf86d28c075ef3127c58f3081279
MD5 af532fd12635f43bff3163313a8f6d66
BLAKE2b-256 5a092abfa1d865627e2b900623bb9b1f9a8c52a57dee692a50b927f3549dac47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eaf3d594ebfd5e1f3503d81e06a5d78e33cda27418b36c2491c3d4ad4fca5972
MD5 5fbe232bb1da824b9add58917ee324f8
BLAKE2b-256 c3b1331a922ed1b4c0b153fef943feb63f4a0568949be443682ba1ea9348f8a2

See more details on using hashes here.

File details

Details for the file pymongo-4.6.3-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for pymongo-4.6.3-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4d167d546352869125dc86f6fda6dffc627d8a9c8963eaee665825f2520d542b
MD5 455fc8bba2374a60d07c6976f3cfb284
BLAKE2b-256 541afbd9feec63ccc6622e86926cfbb806743c850a9f303d6d0b85e01094ed38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 151361c101600a85cb1c1e0db4e4b28318b521fcafa9b62d389f7342faaaee80
MD5 6fe2661237724ff6f89de1a3ceb987f6
BLAKE2b-256 523385b88e83507f4e6c646b2c17327e8f976c212cc0852f915c14b643cbc421

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7330245253fbe2e09845069d2f4d35dd27f63e377034c94cb0ddac18bc8b0d82
MD5 ed67dbf540728f70c17013d58922b2c8
BLAKE2b-256 b756f449c26f92b3e5d79fd7e90f308e2d1f19b2aff55325cde0bf211ec3d141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b3853fb66bf34ce1b6e573e1bbb3cb28763be9d1f57758535757faf1ab2f24a
MD5 530c6bdce4b04f3fc96c3af6d9b51e56
BLAKE2b-256 86301c82f3c0bc9835e513d721929860b0ea8e523d55d80c351540042c030880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1e1586ebdebe0447a24842480defac17c496430a218486c96e2da3f164c0f05
MD5 b99383404f5aa9bcca4c6176db99b120
BLAKE2b-256 24bba0d577dfb2dc9d57f47124882c08791411e4d26852392b267c245cefb006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9066dff9dc0a182478ca5885d0b8a2b820b462e19459ada109df7a3ced31b272
MD5 070acc3c611f61c9acf163a3efee9b46
BLAKE2b-256 dff680932661b1fd00fc6b27ea255993638b8d99aba51dda0a90ad5b67682417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7cf28d9c90e40d4e385b858e4095739829f466f23e08674085161d86bb4bb10
MD5 9c6e26d15d438b2654760fc7ce97c60f
BLAKE2b-256 32b3d7b2bf7073b241f71d11b29a5e1c16b36e51ec9946963a97d8d3cb8fb5c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 098d420a8214ad25f872de7e8b309441995d12ece0376218a04d9ed5d2222cf3
MD5 45d0f66f69e635d437c6fe0c2cff3554
BLAKE2b-256 b69450b353c142e407d47369a31a493ff585e1a5b4273e645bad8839cd0989f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a4ea44e5a913bdb7c9abd34c69e9fcfac10dfaf49765463e0dc1ea922dd2a9d
MD5 75b4eb5aae6f8ab1c15a5b575c83419c
BLAKE2b-256 bce8ac4eefaaf6f02e84c1aeccf630e19487343419c1ef4d22125008ebb73906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 462684a6f5ce6f2661c30eab4d1d459231e0eed280f338e716e31a24fc09ccb3
MD5 ddee132a147ca2a476aa2f495c49a5d0
BLAKE2b-256 b71667203bfd61a4732596b255d2682dc1db47101d824161585999f776f84ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26d036e0f5de09d0b21d0fc30314fcf2ae6359e4d43ae109aa6cf27b4ce02d30
MD5 04adcd494e41761f63fef4241dc70550
BLAKE2b-256 0d28197f4d4a08656956c7a39043da0ebddfeee0f2fa1f2b66c7641ad8b87659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c9340c7161e112e36ebb97fbba1cdbe7db3dfacb694d2918b1f155a01f3d859
MD5 c334f47d33b1d71a93514be7221bcd6f
BLAKE2b-256 d6f198a246577012813f6155784de18b3367940f70dc3593d200f23445b393a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e420e74c6db4594a6d09f39b58c0772679006cb0b4fc40901ba608794d87dad2
MD5 9240209ed50ea080f2d910d33f966d21
BLAKE2b-256 3980aef688e2c57e8b585321b69e41ccfb258106c95a3e47ead92ebaa716a4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e458e6fc2b7dd40d15cda04898bd2d8c9ff7ae086c516bc261628d54eb4e3158
MD5 d9165fc184d92e91831e20e99ca91144
BLAKE2b-256 e504c7bfa2d32df4380f95326fdc3fa625e9217ec691d035be6c61311aab1df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18e5c161b18660f1c9d1f78236de45520a436be65e42b7bb51f25f74ad22bdde
MD5 702f55dbefa10b7d1adef39d9a1582e7
BLAKE2b-256 08dcb02480e2fd95589bb943723a8716c348b89415ca2542059a6c0bd16d7e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 36d7049fc183fe4edda3eae7f66ea14c660921429e082fe90b4b7f4dc6664a70
MD5 267a8640582bf58ff3a8b6a11fbdfe42
BLAKE2b-256 12243642a6f2217b89ad798d2e0643321e1fc04d26cd665b9ac8847960720d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 48c60bd32ec141c0d45d8471179430003d9fb4490da181b8165fb1dce9cc255c
MD5 7ea9dc507b876e0d709ebbf6acc42a83
BLAKE2b-256 52483a9101fac78d92c58f31e038b0b24aab0c6de24ab0d42a673fc1862a9c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-4.6.3-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 3b909e5b1864de01510079b39bbdc480720c37747be5552b354bc73f02c24a3c
MD5 c6d6e20284e946de5ac0d94fc8cb9237
BLAKE2b-256 749727f96b28030426c72ad201e0837cfac722f29ff8f322192753f42b6a769a

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