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:

Mike Dirolf

Maintainer:

Bernie Hackett <bernie@mongodb.com>

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 2.6, 3.0, 3.2, 3.4, 3.6, 4.0, 4.2, 4.4, and 5.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 2.7, 3.5+, PyPy, and PyPy3.5+.

WARNING Support for Python 2.7 and 3.5 is deprecated. Those Python versions will not be supported by PyMongo 4.

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]

Support for mongodb+srv:// URIs requires dnspython:

$ python -m pip install pymongo[srv]

TLS / SSL support may require ipaddress and certifi or wincertstore depending on the Python version in use. The necessary dependencies can be installed along with PyMongo:

$ python -m pip install pymongo[tls]

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

$ 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:

$ 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,srv,tls,zstd,encryption]

Other optional packages:

  • backports.pbkdf2, improves authentication performance with SCRAM-SHA-1 and SCRAM-SHA-256. It especially improves performance on Python versions older than 2.7.8.

  • monotonic adds support for a monotonic clock, which improves reliability in environments where clock adjustments are frequent. Not needed in Python 3.

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
u'test'
>>> db.my_collection
Collection(Database(MongoClient('localhost', 27017), u'test'), u'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()
{u'x': 10, u'_id': ObjectId('4aba15ebe23f6b53b0000000')}
>>> for item in db.my_collection.find():
...     print(item["x"])
...
10
8
11
>>> db.my_collection.create_index("x")
u'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-3.13.0.tar.gz (804.4 kB view details)

Uploaded Source

Built Distributions

pymongo-3.13.0-py2.7-macosx-10.14-intel.egg (806.1 kB view details)

Uploaded Source

pymongo-3.13.0-cp311-cp311-win_amd64.whl (394.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

pymongo-3.13.0-cp311-cp311-win32.whl (391.3 kB view details)

Uploaded CPython 3.11 Windows x86

pymongo-3.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (518.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pymongo-3.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (521.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pymongo-3.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (526.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pymongo-3.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pymongo-3.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (509.4 kB view details)

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

pymongo-3.13.0-cp311-cp311-macosx_10_9_universal2.whl (430.4 kB view details)

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

pymongo-3.13.0-cp310-cp310-win_amd64.whl (394.5 kB view details)

Uploaded CPython 3.10 Windows x86-64

pymongo-3.13.0-cp310-cp310-win32.whl (391.3 kB view details)

Uploaded CPython 3.10 Windows x86

pymongo-3.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (516.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pymongo-3.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pymongo-3.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (524.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pymongo-3.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pymongo-3.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (507.6 kB view details)

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

pymongo-3.13.0-cp310-cp310-manylinux2014_x86_64.whl (532.9 kB view details)

Uploaded CPython 3.10

pymongo-3.13.0-cp310-cp310-manylinux2014_s390x.whl (535.4 kB view details)

Uploaded CPython 3.10

pymongo-3.13.0-cp310-cp310-manylinux2014_ppc64le.whl (540.7 kB view details)

Uploaded CPython 3.10

pymongo-3.13.0-cp310-cp310-manylinux2014_i686.whl (526.1 kB view details)

Uploaded CPython 3.10

pymongo-3.13.0-cp310-cp310-manylinux2014_aarch64.whl (532.6 kB view details)

Uploaded CPython 3.10

pymongo-3.13.0-cp310-cp310-manylinux1_i686.whl (526.0 kB view details)

Uploaded CPython 3.10

pymongo-3.13.0-cp310-cp310-macosx_10_9_universal2.whl (430.0 kB view details)

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

pymongo-3.13.0-cp39-cp39-win_amd64.whl (394.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

pymongo-3.13.0-cp39-cp39-win32.whl (391.2 kB view details)

Uploaded CPython 3.9 Windows x86

pymongo-3.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (515.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pymongo-3.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (519.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pymongo-3.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (523.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pymongo-3.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (515.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pymongo-3.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (513.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ x86-64

pymongo-3.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (506.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (506.8 kB view details)

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

pymongo-3.13.0-cp39-cp39-manylinux2014_x86_64.whl (532.2 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-manylinux2014_s390x.whl (534.8 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-manylinux2014_ppc64le.whl (540.0 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-manylinux2014_i686.whl (525.2 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-manylinux2014_aarch64.whl (531.9 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-manylinux1_x86_64.whl (513.1 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-manylinux1_i686.whl (525.2 kB view details)

Uploaded CPython 3.9

pymongo-3.13.0-cp39-cp39-macosx_10_9_universal2.whl (430.0 kB view details)

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

pymongo-3.13.0-cp38-cp38-win_amd64.whl (394.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

pymongo-3.13.0-cp38-cp38-win32.whl (391.1 kB view details)

Uploaded CPython 3.8 Windows x86

pymongo-3.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pymongo-3.13.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (529.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pymongo-3.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (534.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pymongo-3.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (525.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pymongo-3.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (524.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ x86-64

pymongo-3.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (513.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (516.4 kB view details)

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

pymongo-3.13.0-cp38-cp38-manylinux2014_x86_64.whl (545.6 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-manylinux2014_s390x.whl (548.1 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-manylinux2014_ppc64le.whl (553.6 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-manylinux2014_i686.whl (535.1 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-manylinux2014_aarch64.whl (543.9 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-manylinux1_x86_64.whl (524.7 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-manylinux1_i686.whl (535.1 kB view details)

Uploaded CPython 3.8

pymongo-3.13.0-cp38-cp38-macosx_10_9_x86_64.whl (395.1 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pymongo-3.13.0-cp37-cp37m-win_amd64.whl (394.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

pymongo-3.13.0-cp37-cp37m-win32.whl (390.7 kB view details)

Uploaded CPython 3.7m Windows x86

pymongo-3.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (506.0 kB view details)

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

pymongo-3.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (509.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pymongo-3.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (514.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pymongo-3.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (505.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pymongo-3.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (506.7 kB view details)

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

pymongo-3.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (498.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (497.5 kB view details)

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

pymongo-3.13.0-cp37-cp37m-manylinux2014_x86_64.whl (526.5 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-manylinux2014_s390x.whl (527.7 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-manylinux2014_ppc64le.whl (534.8 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-manylinux2014_i686.whl (514.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-manylinux2014_aarch64.whl (525.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-manylinux1_x86_64.whl (506.6 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-manylinux1_i686.whl (514.9 kB view details)

Uploaded CPython 3.7m

pymongo-3.13.0-cp37-cp37m-macosx_10_6_intel.whl (429.0 kB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pymongo-3.13.0-cp36-cp36m-win_amd64.whl (397.6 kB view details)

Uploaded CPython 3.6m Windows x86-64

pymongo-3.13.0-cp36-cp36m-win32.whl (392.0 kB view details)

Uploaded CPython 3.6m Windows x86

pymongo-3.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (505.8 kB view details)

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

pymongo-3.13.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (509.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

pymongo-3.13.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (514.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

pymongo-3.13.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (505.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pymongo-3.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (506.0 kB view details)

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

pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl (498.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (496.6 kB view details)

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

pymongo-3.13.0-cp36-cp36m-manylinux2014_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-manylinux2014_s390x.whl (524.6 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-manylinux2014_ppc64le.whl (531.9 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-manylinux2014_i686.whl (513.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-manylinux2014_aarch64.whl (522.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-manylinux1_x86_64.whl (505.5 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-manylinux1_i686.whl (513.4 kB view details)

Uploaded CPython 3.6m

pymongo-3.13.0-cp36-cp36m-macosx_10_6_intel.whl (426.1 kB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pymongo-3.13.0-cp35-cp35m-win_amd64.whl (397.6 kB view details)

Uploaded CPython 3.5m Windows x86-64

pymongo-3.13.0-cp35-cp35m-win32.whl (391.9 kB view details)

Uploaded CPython 3.5m Windows x86

pymongo-3.13.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (505.8 kB view details)

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

pymongo-3.13.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl (498.0 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp35-cp35m-manylinux1_x86_64.whl (505.3 kB view details)

Uploaded CPython 3.5m

pymongo-3.13.0-cp35-cp35m-manylinux1_i686.whl (497.5 kB view details)

Uploaded CPython 3.5m

pymongo-3.13.0-cp35-cp35m-macosx_10_6_intel.whl (426.1 kB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl (502.2 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ x86-64

pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl (494.7 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp27-cp27mu-manylinux1_x86_64.whl (501.7 kB view details)

Uploaded CPython 2.7mu

pymongo-3.13.0-cp27-cp27mu-manylinux1_i686.whl (494.2 kB view details)

Uploaded CPython 2.7mu

pymongo-3.13.0-cp27-cp27m-win_amd64.whl (393.6 kB view details)

Uploaded CPython 2.7m Windows x86-64

pymongo-3.13.0-cp27-cp27m-win32.whl (389.7 kB view details)

Uploaded CPython 2.7m Windows x86

pymongo-3.13.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (502.3 kB view details)

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

pymongo-3.13.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl (494.7 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.5+ i686

pymongo-3.13.0-cp27-cp27m-manylinux1_x86_64.whl (501.7 kB view details)

Uploaded CPython 2.7m

pymongo-3.13.0-cp27-cp27m-manylinux1_i686.whl (494.2 kB view details)

Uploaded CPython 2.7m

pymongo-3.13.0-cp27-cp27m-macosx_10_14_intel.whl (390.7 kB view details)

Uploaded CPython 2.7m macOS 10.14+ intel

File details

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

File metadata

  • Download URL: pymongo-3.13.0.tar.gz
  • Upload date:
  • Size: 804.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0.tar.gz
Algorithm Hash digest
SHA256 e22d6cf5802cd09b674c307cc9e03870b8c37c503ebec3d25b86f2ce8c535dc7
MD5 3965b85631b7d482c78a38ae028f4f0a
BLAKE2b-256 ecff9b08f29b57384e1f55080d15a12ba4908d93d46cd7fe83c5c562fdcd3400

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-py2.7-macosx-10.14-intel.egg.

File metadata

File hashes

Hashes for pymongo-3.13.0-py2.7-macosx-10.14-intel.egg
Algorithm Hash digest
SHA256 bc04c92d05c142889c26810a4842273deb42e66411273cab4ad09268fe69ba69
MD5 6054ba425d59ad42764d88b0fe7eb0d3
BLAKE2b-256 3e2087ca37887b92416a7fc9878eca60664f707b062a305849c9c95c95fce808

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 394.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 174fd1000e896d0dfbc7f6d7e6a1992a4868796c7dec31679e38218c78d6a942
MD5 d6641ad69e1ce6e0c7a3da5bc5c15629
BLAKE2b-256 2264fe59e4175aa00d98241f007783268e87610d0a218c8ea3311956f3806986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 391.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e8f6979664ff477cd61b06bf8aba206df7b2334209815ab3b1019931dab643d6
MD5 59cec6adb39b274ae326d7fa7d42c9a6
BLAKE2b-256 cfe1968dd3a62a0a8fd49f5edb0395a09c8b65b89a3c1d7353a6d8bb67e6d893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6f8191a282ef77e526f8f8f63753a437e4aa4bc78f5edd8b6b6ed0eaebd5363
MD5 1d0a4790ab1a7bddb6d9c4a9b6a76bea
BLAKE2b-256 7e6b6d79a93c0a6b9c02798f86e35a6f37e568624be6194bf96eef2281a9d66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8927f22ef6a16229da7f18944deac8605bdc2c0858be5184259f2f7ce7fd4459
MD5 903afd0c589dea1c3fea0da4cbead5c2
BLAKE2b-256 69a37f7b94125de760329975868e8f4bb6288d31d4dd0b505554beea58703540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4a82a1c10f5608e6494913faa169e213d703194bfca0aa710901f303be212414
MD5 32aabf1905b386301ec8a7ec61871e1e
BLAKE2b-256 4943e12b7b3deeb618a8d6a6265fbdb418993331aee282c0a9014232d67c9c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26f9cc42a162faa241c82e117ac85734ae9f14343dc2df1c90c6b2181f791b22
MD5 83d2f717d27b988be2712ecba8402a10
BLAKE2b-256 b093fd1f114c1613fa12b7fc74ee6606adb9eebb0865f0b7ac956be9f55c43d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d9ed67c987bf9ac2ac684590ba3d2599cdfb0f331ee3db607f9684469b3b59d
MD5 7b11a83d35c0cfafccd6a3d6753d6e82
BLAKE2b-256 19131e5ceb828c5b5f9bae253ba2712e1e66a26e0bdd9de9f94f04badeb0b99c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bdd34c57b4da51a7961beb33645646d197e41f8517801dc76b37c1441e7a4e10
MD5 d02ca5dbff0cdc02c88f1d940186a796
BLAKE2b-256 a630c6fba6f336c43f2c7961a949cb1bab2a08082faefb90174f223b22664632

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 394.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea8824ebc9a1a5c8269e8f1e3989b5a6bec876726e2f3c33ebd036cb488277f0
MD5 366651f33340b65da8bf807758db08c2
BLAKE2b-256 0926440f014803bbefa0729151a96df71c65ff67b53cad4df4dab0a083694b8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 391.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 944249aa83dee314420c37d0f40c30a8f6dc4a3877566017b87062e53af449f4
MD5 f6b53055ca4732051a028d558a12623b
BLAKE2b-256 8c927ec070a6685e864683eae26c0d75f98b9f14dbc9292d4c9077db7afbb0fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65b6fddf6a7b91da044f202771a38e71bbb9bf42720a406b26b25fe2256e7102
MD5 985f5a926fae5d439e69e7916319ba05
BLAKE2b-256 4114103e87e915949769b4fa89b67e6ba3e628777b35ef0b77f2551a341bd29f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30245a8747dc90019a3c9ad9df987e0280a3ea632ad36227cde7d1d8dcba0830
MD5 584474e87755e26be8c9d5307a79556b
BLAKE2b-256 2d9e2ac05a6070f30d336bfe6dec0f4d06fcdb63069fab6c7a8335690a652395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0379447587ee4b8f983ba183202496e86c0358f47c45612619d634d1fcd82bd
MD5 1f862be78446a3a12ef29bbc26d6661c
BLAKE2b-256 12b0ee5211509273bc93c776382b72140634fdca55ee2fe9ff153282580b2fd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09de3bfc995ae8cb955abb0c9ae963c134dba1b5622be3bcc527b89b0fd4091c
MD5 a72a256c420e50eafe02087257b9037e
BLAKE2b-256 3d906449ca64a43f813ce2e35a3dc5b702eb1b317a953a0d78d791c1c5fd91c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5831a377d15a626fbec10890ffebc4c6abcd37e4126737932cd780a171eabdc1
MD5 49a638ab091535acd46ad870527dd424
BLAKE2b-256 9e8130ae79493c6563a12c4603453fe08b7c34290b7c236c7ee451e914d4ba05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 172db03182a22e9002157b262c1ea3b0045c73d4ff465adc152ce5b4b0e7b8d4
MD5 a5186ea4570a92fc6ce258504c267fa1
BLAKE2b-256 58cc109c351a3c7210d35202283128773ad93b1a72ea09cf3957fe11a364a4bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b261d593f2563299062733ae003a925420a86ff4ddda68a69097d67204e43f3
MD5 87a4c5131fca4014e7cc065492c45ca0
BLAKE2b-256 3278d7675f3ec66e7944670642a248128d6a078dc8da943b98c93c6eddedc867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93d4e9a02c17813b34e4bd9f6fbf07310c140c8f74341537c24d07c1cdeb24d1
MD5 888d0c07b265fd426d96cfa8a1c1bdb3
BLAKE2b-256 b77282ee786367e05dac64760016b121f67dc05bd0df961cb3cdbf13599e473c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f4175fcdddf764d371ee52ec4505a40facee2533e84abf2953cda86d050cfa1f
MD5 e57c5edad65508ce86a4f0a294d4fbfd
BLAKE2b-256 d56e44c1bd0b43f9f96f317e6bc98a06a755da4f416945be2d44a242ccee3f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7c91747ec8dde51440dd594603158cc98abb3f7df84b2ed8a836f138285e4fb
MD5 98ca516d4f79737e4c9a8639de1f0c7c
BLAKE2b-256 3dcde8ce064ed8555e728b171ce8a0ef08ab9a1af03839df6011b05c0f3c47c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5b733694e7df22d5c049581acfc487695a6ff813322318bed8dd66f79978636
MD5 5bfd71ce5b829432f64a2ece332ed12d
BLAKE2b-256 4bf12e9a2beaefa75fa2bfa5a24a88ccf9d032d3336cf0e52efc8eab8add4fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1037097708498bdc85f23c8798a5c46c7bce432d77d23608ff14e0d831f1a971
MD5 77c47ba72f58b2a14a9f2b7cff940ed4
BLAKE2b-256 1d6f06ad835f571f2a075073d75ed8d498e5ec7753a769630722e8a6727309fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 394.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3cfc9bc1e8b5667bc1f3dbe46d2f85b3f24ff7533893bdc1203058012db2c046
MD5 bd6a820dabdc23626a3b9bc1489c7864
BLAKE2b-256 6ced1d565aa692027268b4383056067d72d6fd3facbd164fccf4ae9bfc37664a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 391.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7593cb1214185a0c5b43b96effc51ce82ddc933298ee36db7dc2bd45d61b4adc
MD5 f1a9f8ace06e278d7ea699d2077afbba
BLAKE2b-256 730744d0b648e15b6f36158f7a52c1796a2ec5d913955872bfe624f6f8eeba50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30ed2788a6ec68743e2040ab1d16573d7d9f6e7333e45070ce9268cbc93d148c
MD5 9dfa3ab7f71151a801e8c80ea09457a3
BLAKE2b-256 64e61a038c454a973d26c4c66827d82191a573f6698913790f7f4ae414dfc738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a32f3dfcca4a4816373bdb6256c18c78974ebb3430e7da988516cd95b2bd6e4
MD5 ef6b7e3a05d3c3f6d5cef1bb08066584
BLAKE2b-256 3a8833fe39cffd3af2e4d2dc13265b28077c3172c9df95fad21492e9d3eb68a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c7cab8155f430ca460a6fc7ae8a705b34f3e279a57adb5f900eb81943ec777c
MD5 387098ba6417427a0465f1243ffb22f3
BLAKE2b-256 13f846184f03f8eb523bad290199cc8ba2f823be4197d24fe2cc0bf5726e47a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa3bca8e76f5c00ed2bb4325e0e383a547d71595926d5275d7c88175aaf7435e
MD5 f2f90a81bd05754b7e528a2d053caa56
BLAKE2b-256 05795225ff6de76b71f4eff7288321a68f8ff5277d1bec20833633607d339cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 64ed1a5ce5e5926727eb0f87c698c4d9a7a9f7b0953683a65e9ce2b7cc5f8e91
MD5 76cb86987e2f7eda9236f20507bb7060
BLAKE2b-256 52fe78d0aa577ef9f836feb658f12e7e6adcc248e77b855c4d80248d74cd3ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0665412dce26b2318092a33bd2d2327d487c4490cfcde158d6946d39b1e28d78
MD5 2baad1702a641d3066d57baadc7805ef
BLAKE2b-256 c2b2c7995b0f760232c7fd0bc3ba27e28cedfc5d77484cde5c4edb136c2a5a97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 21e61a536ffed84d10376c21c13a6ed1ebefb61989a844952547c229d6aeedf3
MD5 2f5282da6a73505c65a21b4904626c2c
BLAKE2b-256 fb4c30362dea9e57ffdb2bf479daa2c794a5a9d1826094e3db64567c98e22b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bdeb71a610a7b801416268e500e716d0fe693fb10d809e17f0fb3dac5be5a34
MD5 e5189c7b69d358e4b6c9a89bf28edaf7
BLAKE2b-256 a3c7d98e7d0e22439af5975aa7aa518749f6d09e5ec02bb801db636e3662bd55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4092b660ec720d44d3ca81074280dc25c7a3718df1b6c0fe9fe36ac6ed2833e4
MD5 a72cde72a063833b39cd0e757da8e083
BLAKE2b-256 12b72b6bd80d85f35e5e38950a56bc950615ce6080686ff4c4f7f57d6a91dbab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2bfc39276c0e6d07c95bd1088b5003f049e986e089509f7dbd68bb7a4b1e65ac
MD5 c5a984ada7402fd74b0ad9e6e2fd91e7
BLAKE2b-256 e4203fac371a416019973327cc4c90a251e477496b103b7d0c8c637eb33513f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 028175dd8d2979a889153a2308e8e500b3df7d9e3fd1c33ca7fdeadf61cc87a2
MD5 42c7b1b18cc6017124ef74cc89909787
BLAKE2b-256 3a6b03e882000769b9c2c742a0c6b48f5a6d3a099cfc41880d7bd532257cbd7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d7910135f5de1c5c3578e61d6f4b087715b15e365f11d4fa51a9cee92988b2bd
MD5 bc19f44110e469a36cf73a705dc6fd9d
BLAKE2b-256 67fcbbfb06d106f674f04927f0eb72f9d8efc7cad7b5ca3dd554b57b6322e005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1410faa51ce835cc1234c99ec42e98ab4f3c6f50d92d86a2d4f6e11c97ee7a4e
MD5 a777ce1af7da9e990d8da4dbac956d9f
BLAKE2b-256 faedfbf98215e020294f55fcf79617c38ace2ce23b13a09cca18558f9033301a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e0854170813238f0c3131050c67cb1fb1ade75c93bf6cd156c1bd9a16095528
MD5 b8c27d05a389cc81f1d27c7509b276ff
BLAKE2b-256 ede968f0de0a77f0e7cb481d146d7367b4a61e4e76d5fcd7b3d64d84db198a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3c5cb6c93c94df76a879bad4b89db0104b01806d17c2b803c1316ba50962b6d6
MD5 4a11f64011bed9ab7e9354e7fce3e6bb
BLAKE2b-256 d537a6cfe9e986427f2674c793bb9ac1c608d4d897c4a8abd583d0f640bd7ae9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 394.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8ad0515abb132f52ce9d8abd1a29681a1e65dba7b7fe13ea01e1a8db5715bf80
MD5 0a7308b0f8fb6051a07f5c0e7d59a736
BLAKE2b-256 a7e89a66bcba8988e715444c6739e0323372fee0e25681c4d2d1405799997d90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 391.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b0746d0d4535f56bbaa63a8f6da362f330804d578e66e126b226eebe76c2bf00
MD5 87365ed52bc2a7dd5d3dca30b5cf1e37
BLAKE2b-256 6ebae25e9a6542bbb220cfcc76f0a3ebd09ee6bef7366d776da1ae9726edeb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db5b4f8ad8607a3d612da1d4c89a84e4cf5c88f98b46365820d9babe5884ba45
MD5 f75e89cb01139c6961b48a25e4598515
BLAKE2b-256 7db55fca287104815b858ec5b46b07e442d9d6ba51342ace3bb8f0b849059ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09b9d0f5a445c7e0ddcc021b09835aa6556f0166afc498f57dfdd72cdf6f02ad
MD5 fa04ca080aac3eb829ed49d498be84fa
BLAKE2b-256 68149f406e38a0c406fe71a6fc090536ab7573401cd3bee7417c3fc47f858fa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6af0a4b17faf26779d5caee8542a4f2cba040cea27d3bffc476cbc6ccbd4c8ee
MD5 f781306189c581b759080dc976b0a00e
BLAKE2b-256 59b8750f3a34aa4b627190075d4a274b55d8a21f33d860aebc0c5b15cf3d2345

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12721d926d43d33dd3318e58dce9b0250e8a9c6e1093fa8e09f4805193ff4b43
MD5 2c847391bd40465c337b6038ad9bc2e3
BLAKE2b-256 05280f3cd482294f335ba2091a24c44f65e22ffc64710d2ff43b8d79b1f7ff53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c8f755ff1f4ab4ca790d1d6d3229006100b301475948021b6b2757822e0d6c97
MD5 93d0ee0a714651eb70795a8a2bc7150c
BLAKE2b-256 bb5ea9cbe342dc21cb1f30267f0095d60b4fe9c3b7855f5674ad935c006ccc51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34cd48df7e1fc69222f296d8f69e3957eb7c6b5aa0709d3467184880ed7538c0
MD5 d5f8c98e3fd87e883c489c163454e283
BLAKE2b-256 00760a0f04e666bd8bfc15d7c28e823f1f5306583a654bb449d0c6deaf705d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34dbf5fecf653c152edb75a35a8b15dfdc4549473484ee768aeb12c97983cead
MD5 ebbdb6b88c852c957322411f0a600748
BLAKE2b-256 6d339dd723b3f11f57777acff22323f3e48238609e1799d065fd811edf717895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dae3b353a10c3767e0aa1c1492f2af388f1012b08117695ab3fd1f219e5814e
MD5 f5928d717af7007826ec21458d9baecb
BLAKE2b-256 eae52e228d5ac6a2a0ed2bfdf8bbd3d0a3dfacb84aa32de926aa9d0f642e066f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7219b1a726ced3bacecabef9bd114529bbb69477901373e800d7d0140baadc95
MD5 c5f371de772da430d4ffb02407528be1
BLAKE2b-256 64ea5dd99f978392d9b6dbd2ee8a7ea4c534e51e67972b4558bcf7786036d515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d1a19d6c5098f1f4e11430cd74621699453cbc534dd7ade9167e582f50814b19
MD5 ae480f56fd9eadd8298287861bcc051a
BLAKE2b-256 0573c0b1cbd8f838e0adab47c9c12b9715c0e30df32e035fc6e057cd3481dde3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b01ce58eec5edeededf1992d2dce63fb8565e437be12d6f139d75b15614c4d08
MD5 2e0b7b9f046532c43a8d81547846da54
BLAKE2b-256 b7c4b717107a197afb54063d3e43fdb3abd93a4f8a7c8922f627db1a15321d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db2e11507fe9cc2a722be21ccc62c1b1295398fe9724c1f14900cdc7166fc0d7
MD5 36b05133016ecee39cdb76e905e860b4
BLAKE2b-256 8e8613b899bd71fe6bdc4e5d67f2eb7bb46e08bbb88dc3eb389a5a35034d5836

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 80d8576b04d0824f63bf803190359c0d3bcb6e7fa63fefbd4bc0ceaa7faae38c
MD5 7d0b14265be6eca3d8a93e594d3f2b4d
BLAKE2b-256 0b9ce1652def3cc841688402fcfa676eb14bd5551cb29c7e1b6f65488d89b30b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b6793baf4639c72a500698a49e9250b293e17ae1faf11ac1699d8141194786fe
MD5 901b7a939212fc74c7205245fbe8da9b
BLAKE2b-256 b896d9e45131c1dae1da92fbd6ba4ce07e46b6f83ab32ef997c81a5b24888440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a796ef39dadf9d73af05d24937644d386495e43a7d13617aa3651d836da542c8
MD5 4e6758fb21d11d68a62aead10b733500
BLAKE2b-256 1adc070ef86beddee6b7f7b05be456c0e8a758d7db1b665686727b3cdf009519

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 32eac95bbb030b2376ffd897376c6f870222a3457f01a9ce466b9057876132f8
MD5 98278ae19b031bac38368fa1be988edd
BLAKE2b-256 b004a4db8a9c0d127fbcab5a65c9a8d789459ad6c58d0cbddafb287c332e7f39

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pymongo-3.13.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 390.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 1c2c5e2b00e2fadcd590c0b2e293d71215e98ed1cb635cfca2be4998d197e534
MD5 6d0f52a26fa5f24369f4e10483cade00
BLAKE2b-256 c2bf404ce88d3d257d0a7118041a0f7e295388be8c3f6cec6fa5a714752048ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a149377d1ff766fd618500798d0d94637f66d0ae222bb6d28f41f3e15c626297
MD5 234bcd232a64244e38763fb934070aff
BLAKE2b-256 1b05807550768330f2e502053862586ff6851a957bffb6b7817ec688c20310ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24e954be35ad4537840f20bbc8d75320ae647d3cb4fab12cb8fcd2d55f408e76
MD5 cca33d46f049a1cd8088d2e56dba8000
BLAKE2b-256 7803a852be81c0d5b7d123072f0c4bb3513ed47a6607bbf9232964766aa4ae95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16e74b9c2aca2734c7f49f00fe68d6830a30d26df60e2ace7fe40ccb92087b94
MD5 195b8cb430fe41996a6ed9ccdadc813c
BLAKE2b-256 877bf014092d322f073bc75ba854e3fcd21beceeccffd4ef572e29ff144ef560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02f0e1a75d3bc0e16c7e15daf9c56185642be055e425f3b34888fc6eb1b22401
MD5 934614bd50ff56a743118d53b49c1bae
BLAKE2b-256 f9515c8438e16ede48fd48a2c33152df9eb9f800f5023609d1041165f218c7a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9b2ed9c3b30f11cd4a3fbfc22167af7987b01b444215c2463265153fe7cf66d6
MD5 a4abda2f4c609f6822cc9cfd4ba7a2af
BLAKE2b-256 3eb4ff92026290647fb16c5d3374daeaa0468faa5fbd7ee1ff6c366d5972c517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bbc0d27dfef7689285e54f2e0a224f0c7cd9d5c46d2638fabad5500b951c92f
MD5 304e21a0115d1e0a7a5c86f251500b5a
BLAKE2b-256 81bb1503fb84e52eb03d61b399b1651a38d1944ac4781976ac8ff265e32e0d1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61660710b054ae52c8fc10368e91d74719eb05554b631d7f8ca93d21d2bff2e6
MD5 77065b73f7f14c8e67a8a651364bfe74
BLAKE2b-256 4bea8925f0528dbc8ccee59b6a72fd87b4e01e4a966c3f6612de0fa26cacbaf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65a063970e15a4f338f14b820561cf6cdaf2839691ac0adb2474ddff9d0b8b0b
MD5 21f872c02789688e10ed39f35fa07f51
BLAKE2b-256 18b5616132627b68153c6c2c6769a05c10e0fe9df4a3eb89f6f8e0e716b76e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8cc37b437cba909bef06499dadd91a39c15c14225e8d8c7870020049f8a549fe
MD5 b6c4cbb5514e19d67a90a98094f70ad0
BLAKE2b-256 9de22930014b5c67d31c5d60e86deb036de995e3cf7c9c7eb235bb5c995eac71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ec2bb598847569ae34292f580842d37619eea3e546005042f485e15710180d5
MD5 1d16ca722f0d9e676ef4089422f3ec7b
BLAKE2b-256 89b4d15bfc4d051d3d301585a9b31663e46d6f60c49483754dd71d4065ace4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3b70ed82f20d18d22eafc9bda0ea656605071762f7d31f3c5afc35c59d3393b
MD5 e3203c734f779d06a8b70fee0a0cb1f1
BLAKE2b-256 c16d20279d45f538be26a0f77470e605f545d22090e5a47798d6daa2c04c0e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2943d739715f265a2983ac43747595b6af3312d0a370614040959fd293763adf
MD5 d266dc9dfe95d7c8add514a0823fe6ee
BLAKE2b-256 def041e241f6d8ffaa2e0f24c0140499e3f9cafc7ee8780ea7d859aa8bf338a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9c3d07ea19cd2856d9943dce37e75d69ecbb5baf93c3e4c82f73b6075c481292
MD5 4e83010e7bfc772a16ec99af96478444
BLAKE2b-256 006579ca9778d8df496a3725a642838cf1d9bb7430bb62c48f22643ee17b7cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 398fb86d374dc351a4abc2e24cd15e5e14b2127f6d90ce0df3fdf2adcc55ac1b
MD5 ee4ed110e2b6ba2b257b85d8d6ae842f
BLAKE2b-256 db65c621b8b28daba4a0cbe287d06a66767659ff293eeaba14ed999b41faa4df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pymongo-3.13.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 b1223b826acbef07a7f5eb9bf37247b0b580119916dca9eae19d92b1290f5855
MD5 cc0dda414dc1b1e650767155f5493e59
BLAKE2b-256 171837c0817d3948f675a31ea6ea5e5fbc13c829302bf753c5f584f44b4d7df1

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a6cbb73d9fc2282677e2b7a137d13da987bd0b13abd88ed27bba5534c226db06
MD5 1af5c8fabf4acf3c3f9df7c35002e5dc
BLAKE2b-256 24c075da3777e1cf1539af4a88b3a380590ce85a4a0af2ed7437bd29880478b8

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pymongo-3.13.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 392.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 7cb987b199fa223ad78eebaa9fbc183d5a5944bfe568a9d6f617316ca1c1f32f
MD5 d8eed2bce7d05787bbce2ea339911937
BLAKE2b-256 7baf9e88f2f9c3e3285f72b293330f625a41c65264d88d663a5c1873496c9999

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5161167b3840e9c84c80f2534ea6a099f51749d5673b662a3dd248be17c3208
MD5 37c8fef5bfa72dd85a5a47f964211fb8
BLAKE2b-256 229d5cb1ba3aa5046e3b66095ed53e2b3c2ba3847a1735b1d38f868d26f0a4c0

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a424bdedfd84454d2905a861e0d4bb947cc5bd024fdeb3600c1a97d2be0f4255
MD5 513cb5d309a62d83f5658b0334880ff7
BLAKE2b-256 8907f6811965798383de109e455ada49436db8589fbad9556794edc46afe1324

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5136ebe8da6a1604998a8eb96be55935aa5f7129c41cc7bddc400d48e8df43be
MD5 0cc01a0cdbc7f9ee611c3f61a1617dac
BLAKE2b-256 660cb2bb727a41bd04e8ee823cc6604a383948ac21a4d799297f584abf7c1a39

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d593d50815771f517d3ac4367ff716e3f3c78edae51d98e1e25791459f8848ff
MD5 2fc79cee3b0cd5e1e54fc5f597cb028a
BLAKE2b-256 b0c8f3d7596747213131b1c8d12440da9897af51c5dbf3bd8f2a62047c5f2728

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 222591b828de10ac90064047b5d4916953f38c38b155009c4b8b5e0d33117c2b
MD5 fecadb3cf994c95171975859c8a5c91c
BLAKE2b-256 7b16c5b6c4ca54c4407e5d4abfb30f430204629c66d3630a1f7d7ebd5b459e5d

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2406df90b2335371706c59b7d79e9633b81ed2a7ecd48c1faf8584552bdf2d90
MD5 523f60cd36533c62918ddbb1fcc54242
BLAKE2b-256 4eeb6fc1a5b574d75df313c114c8539c542ce490982b7662c48aa5557315634c

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 644470442beaf969df99c4e00367a817eee05f0bba5d888f1ba6fe97b5e1c102
MD5 d6e4f2089f7ee6fbd2781259d2fc43d5
BLAKE2b-256 8af81f42b214188938a18fe6c7f7b1920b32126e3d91538f14a08f2e8f16cd79

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe8194f107f0fa3cabd14e9e809f174eca335993c1db72d1e74e0f496e7afe1f
MD5 aee1ae2cbd31e94289c73fbdeefdcd7a
BLAKE2b-256 004001b32abf5183fc3ed53ba4a8b32e3b3e70c43413af450ce8f959757e3354

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e5536994cf2d8488c6fd9dea71df3c4dbb3e0d2ba5e695da06d9142a29a0969
MD5 9da36ff884366c3e9cc742024dfaf474
BLAKE2b-256 1873117a411c5e57dffb9bcf1da1f6dda671df3b4b54e36b4e403358ad021b59

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42ba8606492d76e6f9e4c7a458ed4bc712603be393259a52450345f0945da2cf
MD5 1dacd527efd65f40dd5442394ce81682
BLAKE2b-256 ba4084e3262151976f16b53db6f6e8b9222fc2049e213bc12920af9703b98c86

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70b67390e27e58876853efbb87e43c85252de2515e2887f7dd901b4fa3d21973
MD5 d21861932591670a1e91991e6fe48de5
BLAKE2b-256 d3cb5ebb8b05e721e0e55ba8c2d646a7469392207ab0260e925447878f744c31

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59c98e86c5e861032b71e6e5b65f23e6afaacea6e82483b66f1191a5021a7b4f
MD5 c44f87f42d23ca5fead32989234def4c
BLAKE2b-256 6137ea4322cfe7d4449334511a45e08c96fb33961f21660bc09681432adb76f9

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0f2c5a5984599a88d087a15859860579b825098b473d8c843f1979a83d159f2e
MD5 ed8da0db33e17b1ca956e8dd2d41b39d
BLAKE2b-256 6ada582a75c8fc1bab1f94726283ca98c98b793a01abb501300dd28beea79db7

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5e87c0eb774561c546f979342a8ff36ebee153c60a0b6c6b03ba989ceb9538c
MD5 b295de9bb85fa02d14698ca4fe14f10a
BLAKE2b-256 dccded6d315a40d20927f5bdd21fffb508986684c297bff244ad60b4d2891890

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d42eb29ba314adfd9c11234b4b646f61b0448bf9b00f14db4b317e6e4b947e77
MD5 47b6770f021a0f2391d4b2d2c1e3742e
BLAKE2b-256 fc3fdd91f9ce00e3499e3597922f75b7c1b410c9c4f185e1920a4072abbc6799

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.13.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 79f777eaf3f5b2c6d81f9ef00d87837001d7063302503bbcbfdbf3e9bc27c96f
MD5 456cc1a090803b0a5ec0d8cf39a24f21
BLAKE2b-256 f39ef5f008c4464916bd3d5c6d4822bd7d7adc713b54af529caa6b8296ad8120

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: pymongo-3.13.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 391.9 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 570ae3365b23d4fd8c669cb57613b1a90b2757e993588d3370ef90945dbeec4b
MD5 897f926511ac67adbe9842738044c8d2
BLAKE2b-256 0f41b951e3984f90771a82fb1a6f6f9ac4cf0aefaa94c6a4d3595a61b1b49bb3

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 10f0fddc1d63ba3d4a4bffcc7720184c1b7efd570726ad5e2f55818da320239f
MD5 2630e13fe0025e81e1c2db4fcf77dbfd
BLAKE2b-256 c3c2f532c5d37e9d618b8c8191a3cc3ac55c1452252e389d505819ac040728a3

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1956f3338c10308e2f99c2c9ff46ae412035cbcd7aaa76c39ccdb806854a247
MD5 3fc141a2e61ee7d53bb0714a04174ede
BLAKE2b-256 a529de32ce7f498278c537ccb87b69b5d5d5ef2d5b352941da1d6634e313f6fe

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5c1db7d366004d6c699eb08c716a63ae0a3e946d061cbebea65d7ce361950265
MD5 6255a77ce992568aa78577f03b2489cc
BLAKE2b-256 369c0ae5759850335e70fc12faa52e8c4f1c59bb1d4214ce02f62e2eafa88825

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 28565e3dbd69fe5fe35a210067064dbb6ed5abe997079f653c19c873c3896fe6
MD5 5f932d5edbb8da92f020d448964d700d
BLAKE2b-256 4360cb1235c224434e22c3a917b9b2292a8054ad125c3d9ba1957a1d255f0abe

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 d1ee773fb72ba024e7e3bb6ea8907fe52bccafcb5184aaced6bad995bd30ea20
MD5 20d2cbc2d00a8d3610e0791ef556fbd1
BLAKE2b-256 38554918e828f7b7f10561b9a9e3100b11af8868841d33994ef3728f0bfd88c0

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c7c45a8a1a752002b0a7c81ab3a4c5e3b6f67f9826b16fbe3943f5329f565f24
MD5 92bce977dc997850eb99d3c4a0f93e07
BLAKE2b-256 a4b6042f19adbfd4c2d9dfa74db53ed3c2b66b00c4f44d895a5e8d292faa1265

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50a81b2d9f188c7909e0a1084fa969bb92a788076809c437ac1ae80393f46df9
MD5 1e5fa7b5831b25384fce9f0a7cd024f7
BLAKE2b-256 3508a720afd052fa16177ce7bb66293e30402415a8bd89c2c2f32f49983039ac

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 50b99f4d3eee6f03778fe841d6f470e6c18e744dc665156da6da3bc6e65b398d
MD5 8c87982d881d1fca9a74981688fc503d
BLAKE2b-256 6fa33af16e90f34a90837ff4fe0f52cda602b5ec208307b05927d038d1af0b11

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 776f90bf2252f90a4ae838e7917638894c6356bef7265f424592e2fd1f577d05
MD5 f20b2cc3046bc3634d29cedb66c59571
BLAKE2b-256 1f92fc3f7df9f8a472e248c729d70611dc161d149acf9c8b2929a561855ed68e

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pymongo-3.13.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 393.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4f6dd55dab77adf60b445c11f426ee5cdfa1b86f6d54cb937bfcbf09572333ab
MD5 88a2b0d5c962a94edb90077a0b480a07
BLAKE2b-256 c7dbb3b81243fd6c53668f628f00ad989fffe96e62c95a6f20b0b06ce0266b82

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: pymongo-3.13.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 389.7 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a17b81f22398e3e0f72bdf938e98c810286994b2bcc0a125cd5ad8fd4ea54ad7
MD5 484da1280889189434c2b08584f3ecc6
BLAKE2b-256 b7c6a68403145bbc48a4634a95df073de282d27b56cd166e9d4ace125e376ff3

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1c9d23f62a3fa7523d849c4942acc0d9ff7081ebc00c808ee7cfdc070df0687f
MD5 7b75c98574fe0fcc808c0884f154d1b4
BLAKE2b-256 79b24f95d4b759f4c319c85803a6c57d5af1f8fd4acf8677adf1d7faf77bcf97

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 851f2bb52b5cb2f4711171ca925e0e05344a8452972a748a8a8ffdda1e1d72a7
MD5 fe3b8800397403815b6b9fe55901bd39
BLAKE2b-256 37e3d2c53129bbeb5e9cbd897dd3291dc4e6585d60d57ed8a7422fae5e63fd1b

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9f592b202d77923498b32ddc5b376e5fa9ba280d3e16ed56cb8c932fe6d6a478
MD5 7c81219c67b48e94eed82fd231a6c5bb
BLAKE2b-256 48e31eb0b1eca3e402f11ea868556974bee91a5b3067d39a1794015945058e56

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b96e0e9d2d48948240b510bac81614458fc10adcd3a93240c2fd96448b4efd35
MD5 d61b1d5271a38a112c066de05ce6a0a8
BLAKE2b-256 c5096259b3cfb76909a161c5cc9b7f2bc3b37c51ca08fff70acbf5caf7a4a052

See more details on using hashes here.

File details

Details for the file pymongo-3.13.0-cp27-cp27m-macosx_10_14_intel.whl.

File metadata

File hashes

Hashes for pymongo-3.13.0-cp27-cp27m-macosx_10_14_intel.whl
Algorithm Hash digest
SHA256 3ad3a3df830f7df7e0856c2bdb54d19f5bf188bd7420985e18643b8e4d2a075f
MD5 e9435a06e7914266bfbf87ba240ef09e
BLAKE2b-256 5d09022dfd359785ce19e17d021a080e173d51c09a79369074366056d83d1926

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