Skip to main content
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.4+, PyPy, and PyPy3.5+.

WARNING Support for Python 2.7, 3.4 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

Release files for pymongo 3.12.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pymongo 3.12.0
File Size Uploaded
pymongo-3.12.0.tar.gz 818.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pymongo 3.12.0
File
pymongo-3.12.0-py2.7-macosx-10.14-intel.egg Legacy Egg format - - Details
pymongo-3.12.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pymongo-3.12.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pymongo-3.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp39-cp39-manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp39-cp39-manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp39-cp39-manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pymongo-3.12.0-cp39-cp39-manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp39-cp39-manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pymongo-3.12.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pymongo-3.12.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pymongo-3.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp38-cp38-manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp38-cp38-manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp38-cp38-manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pymongo-3.12.0-cp38-cp38-manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp38-cp38-manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pymongo-3.12.0-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pymongo-3.12.0-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
pymongo-3.12.0-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp37-cp37m-manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp37-cp37m-manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp37-cp37m-manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-3.12.0-cp37-cp37m-manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp37-cp37m-manylinux1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp37-cp37m-macosx_10_6_intel.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.12.0-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pymongo-3.12.0-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp36-cp36m-manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp36-cp36m-manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp36-cp36m-manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp36-cp36m-manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-3.12.0-cp36-cp36m-manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp36-cp36m-manylinux1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp36-cp36m-macosx_10_6_intel.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.12.0-cp35-cp35m-win_amd64.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-64 Details
pymongo-3.12.0-cp35-cp35m-win32.whl CPython 3.5 CPython 3.5 pymalloc Windows x86-32 Details
pymongo-3.12.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64 Details
pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x Details
pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32 Details
pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64 Details
pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.12.0-cp34-cp34m-win_amd64.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-64 Details
pymongo-3.12.0-cp34-cp34m-win32.whl CPython 3.4 CPython 3.4 pymalloc Windows x86-32 Details
pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386) Details
pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp27-cp27m-win_amd64.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-64 Details
pymongo-3.12.0-cp27-cp27m-win32.whl CPython 2.7 CPython 2.7 pymalloc Windows x86-32 Details
pymongo-3.12.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details
pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32 Details
pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386) Details

Total release size: 49.1 MB

Release files / pymongo-3.12.0.tar.gz

Download URL pymongo-3.12.0.tar.gz
Size 818.6 kB
Tags Source
SHA-256 checksum
How to use checksums
b88d1742159bc93a078733f9789f563cef26f5e370eba810476a71aa98e5fbc2
BLAKE2b-256 checksum
How to use checksums
38f2f3e8be03c9994354a5e6c542b6cd76550127f202fcc3a328e1324ee68317
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-py2.7-macosx-10.14-intel.egg

Download URL pymongo-3.12.0-py2.7-macosx-10.14-intel.egg
Size 804.0 kB
Tags Egg
SHA-256 checksum
How to use checksums
d1740776b70367277323fafb76bcf09753a5cc9824f5d705bac22a34ff3668ea
BLAKE2b-256 checksum
How to use checksums
855d587e1fd93b928998eccb40b303ce15a00811d95ec5f5f02c4bbdd1c371b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-win_amd64.whl

Download URL pymongo-3.12.0-cp39-cp39-win_amd64.whl
Size 397.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
3ce83f17f641a62a4dfb0ba1b8a3c1ced7c842f511b5450d90c030c7828e3693
BLAKE2b-256 checksum
How to use checksums
739d2ab0027be0b5202e7f9264f1c47748f6a0b74752f66a64efc3710ade0b0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-win32.whl

Download URL pymongo-3.12.0-cp39-cp39-win32.whl
Size 391.8 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
2e92aa32300a0b5e4175caec7769f482b292769807024a86d674b3f19b8e3755
BLAKE2b-256 checksum
How to use checksums
babb1d2ba81c687519684a3e46efbd0982eda42a76a2e32baafb3e3b83bf4c3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 531.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
19d4bd0fc29aa405bb1781456c9cfff9fceabb68543741eb17234952dbc2bbb0
BLAKE2b-256 checksum
How to use checksums
678a3fa2090762a48a5f3544d188db456b93e23a16d177cf18434de9a246f216
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 534.8 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
dd6ff2192f34bd622883c745a56f492b1c9ccd44e14953e8051c33024a2947d5
BLAKE2b-256 checksum
How to use checksums
770f8167521f94401d2d211a8996725d0057bd708c1626bf8615f9fbd1b8280e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 539.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a6d055f01b83b1a4df8bb0c61983d3bdffa913764488910af3620e5c2450bf83
BLAKE2b-256 checksum
How to use checksums
0d0d3c212a95ae980065a018d5fc0fd512e9b3598cddf5ae8db0cf6bf9aacb9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 531.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
dd1f49f949a658c4e8f81ed73f9aad25fcc7d4f62f767f591e749e30038c4e1d
BLAKE2b-256 checksum
How to use checksums
d1fa719bb07efa8b7c9646ffaecc98576682f48a0604a24530dc6f8dc6a94f74
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 514.1 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6261bee7c5abadeac7497f8f1c43e521da78dd13b0a2439f526a7b0fc3788824
BLAKE2b-256 checksum
How to use checksums
cbd4fbab1bae1e90338b659a3452215f7c46a25ef5bae208d7758d9034f2d443
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 498.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0b6055e0ef451ff73c93d0348d122a0750dddf323b9361de5835dac2f6cf7fc1
BLAKE2b-256 checksum
How to use checksums
439e7f2fdfe86f1d59df51dad850cff821a67f4f780f4f9d8e85127507889ace
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 525.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
24f8aeec4d6b894a6128844e50ff423dd02462ee83addf503c598ee3a80ddf3d
BLAKE2b-256 checksum
How to use checksums
af325c679f7eddbded86bdcef2f1aabded2413c1ed54ad74bffeda5f9f6015b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux2014_x86_64.whl
Size 531.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e7a33322e08021c37e89cae8ff06327503e8a1719e97c69f32c31cbf6c30d72c
BLAKE2b-256 checksum
How to use checksums
9e21f1b17db80e9eaf2bcfe65b51755b1108444f2001e9db90c5643ab261ec62
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux2014_s390x.whl
Size 534.8 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
701e08457183da70ed96b35a6b43e6ba1df0b47c837b063cde39a1fbe1aeda81
BLAKE2b-256 checksum
How to use checksums
de1ee6c8dea43864ff5ff6010b5db06af19b43a36612ebbe598f1a0ab1b6bbff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux2014_ppc64le.whl
Size 539.7 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
6b89dc51206e4971c5568c797991eaaef5dc2a6118d67165858ad11752dba055
BLAKE2b-256 checksum
How to use checksums
30db68da4336b04fef94acbbf45781264c11ede6ee8143a300e98d85c6c877d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux2014_i686.whl
Size 525.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
9a13661681d17e43009bb3e85e837aa1ec5feeea1e3654682a01b8821940f8b3
BLAKE2b-256 checksum
How to use checksums
26e69a087a30e3aeb6935036e9cfe6bb2c63229cdb06405ce9f732f5de6e38bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux2014_aarch64.whl
Size 531.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a9ba2a63777027b06b116e1ea8248e66fd1bedc2c644f93124b81a91ddbf6d88
BLAKE2b-256 checksum
How to use checksums
525df99d7d51953b68ee6f31db5f2314573ec9f33ae0334333b6b0e344ed0eab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux1_x86_64.whl
Size 514.1 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
da8288bc4a7807c6715416deed1c57d94d5e03e93537889e002bf985be503f1a
BLAKE2b-256 checksum
How to use checksums
8cc02a0c64581c0d3c20dae1ae4cd453b7afd28e80e9dd32ad97a9bb9eba7f2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp39-cp39-manylinux1_i686.whl
Size 525.1 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
845a8b83798b2fb11b09928413cb32692866bfbc28830a433d9fa4c8c3720dd0
BLAKE2b-256 checksum
How to use checksums
0f32142ad030303d37dafe94bbbc3261cb02aca3d2d0f9cc4ecbdf04cc52b0ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pymongo-3.12.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 394.1 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
cda9e628b1315beec8341e8c04aac9a0b910650b05e0751e42e399d5694aeacb
BLAKE2b-256 checksum
How to use checksums
36ce57eaf6c7f93b15a13776680c07416076c0a672624181818050c02ec3f855
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-win_amd64.whl

Download URL pymongo-3.12.0-cp38-cp38-win_amd64.whl
Size 397.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
a2239556ff7241584ce57be1facf25081669bb457a9e5cbe68cce4aae6567aa1
BLAKE2b-256 checksum
How to use checksums
796afd8e6293a99c008ce138d99ff31c91994ce5ed672f92cd87ac8b0a9b8381
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-win32.whl

Download URL pymongo-3.12.0-cp38-cp38-win32.whl
Size 391.7 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
5af390fa9faf56c93252dab09ea57cd020c9123aa921b63a0ed51832fdb492e7
BLAKE2b-256 checksum
How to use checksums
c78f68a9dc45b48ae001d49402ef09d573d41877fdc54dc005ea2ca620a59cd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 545.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6e66780f14c2efaf989cd3ac613b03ee6a8e3a0ba7b96c0bb14adca71a427e55
BLAKE2b-256 checksum
How to use checksums
c42feaac72d21a47bf7ac9539f9faeb75c1b0e9941e94ce285c1b4cf688c1a98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 548.0 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2399a85b54f68008e483b2871f4a458b4c980469c7fe921595ede073e4844f1e
BLAKE2b-256 checksum
How to use checksums
3966ca8eee458bc21203af346aa84414c5699ea885256005447ab6763336bd45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 553.4 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b772bab31cbd9cb911e41e1a611ebc9497f9a32a7348e2747c38210f75c00f41
BLAKE2b-256 checksum
How to use checksums
883f1e1c34d2653b2d1fb4dd5f0af691ad2c383fa645aa2091d6bbf3bb81473c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 543.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
657ad80de8ec9ed656f28844efc801a0802961e8c6a85038d97ff6f555ef4919
BLAKE2b-256 checksum
How to use checksums
2fcd32eb84949f5cfc3c080b7989e7f9012004b27e88d500b135c5501d613243
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 524.8 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
db93608a246da44d728842b8fa9e45aa9782db76955f634a707739a8d53ff544
BLAKE2b-256 checksum
How to use checksums
184b2a4f620bdf5cf1b8015db4e23b7dc46d731e0329d6283a2dbfe81812e262
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 515.3 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
070a4ef689c9438a999ec3830e69b208ff0d12251846e064d947f97d819d1d05
BLAKE2b-256 checksum
How to use checksums
2374fb6f9aad10d6e5d1f68beea291c82fd23c8f1f4ee2da13555a124a3f70a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 534.9 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
02dc0b0f48ed3cd06c13b7e31b066bf91e00dac5f8147b0a0a45f9009bfab857
BLAKE2b-256 checksum
How to use checksums
078958c54eca4b119a216d4d335421c807d534cbf04c971e8f08861ad60a0e39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux2014_x86_64.whl
Size 545.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
18290649759f9db660972442aa606f845c368db9b08c4c73770f6da14113569b
BLAKE2b-256 checksum
How to use checksums
a7368a46ee30616e2d789bb9bf552fc1d4675dd16afbf45dd52eaa49c6fac6ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux2014_s390x.whl
Size 548.1 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
208debdcf76ed39ebf24f38509f50dc1c100e31e8653817fedb8e1f867850a13
BLAKE2b-256 checksum
How to use checksums
2736dcc898f6966cae74d05e9324e90a827d54741f24a4df1700b28ae11d20f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux2014_ppc64le.whl
Size 553.4 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
246ec420e4c8744fceb4e259f906211b9c198e1f345e6158dcd7cbad3737e11e
BLAKE2b-256 checksum
How to use checksums
d05ddd98dcdaf2b152cda836bddf95ddce0fe531dbab4ed80720df769d096718
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux2014_i686.whl
Size 535.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
39dafa2eaf577d1969f289dc9a44501859a1897eb45bd589e93ce843fc610800
BLAKE2b-256 checksum
How to use checksums
d9d4b293c3ce9ceaff1d3e22d2ca18dbd2818c217097929d0d12411d93c90299
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux2014_aarch64.whl
Size 543.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
053b4ebf91c7395d1fcd2ce6a9edff0024575b7b2de6781554a4114448a8adc9
BLAKE2b-256 checksum
How to use checksums
b0f5ea10de31e389f8bb024062e683830140ef1dd04b4fd095e95ac00b1c0be0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux1_x86_64.whl
Size 524.9 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cc2894fe91f31a513860238ede69fe47fada21f9e7ddfe73f7f9fef93a971e41
BLAKE2b-256 checksum
How to use checksums
ba3aea837307e36f8d182341b2cb21196b777f19681473040188cf9299721623
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp38-cp38-manylinux1_i686.whl
Size 535.0 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e9faf8d4712d5ea301d74abfcf6dafe4b7f4af7936e91f283b0ad7bf69ed3e3a
BLAKE2b-256 checksum
How to use checksums
64441b558f24701b78689b1d06adb8fcde1e3260151c36e1f0632f42d839b496
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pymongo-3.12.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 394.4 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7c6a9948916a7bbcc6d3a9f6fb75db1acb5546078023bfb3db6efabcd5a67527
BLAKE2b-256 checksum
How to use checksums
2b912f0229cbdf99797dd054ad06001f50ec710fcc8122ac8cf653bd4dd73e77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-win_amd64.whl

Download URL pymongo-3.12.0-cp37-cp37m-win_amd64.whl
Size 396.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e018a4921657c2d3f89c720b7b90b9182e277178a04a7e9542cc79d7d787ca51
BLAKE2b-256 checksum
How to use checksums
f0f673614cad83e38099d3464107660f2038497d24ba0b76de5a21fee9ef85ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-win32.whl

Download URL pymongo-3.12.0-cp37-cp37m-win32.whl
Size 391.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
94d38eba4d1b5eb3e6bfece0651b855a35c44f32fd91f512ab4ba41b8c0d3e66
BLAKE2b-256 checksum
How to use checksums
22bda7e23459337ca081acaeb2f8bcc16f5d60dce87ec1467195b271e852ee60
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 526.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
46d5ec90276f71af3a29917b30f2aec2315a2759b5f8d45b3b63a07ca8a070a3
BLAKE2b-256 checksum
How to use checksums
53e0b1f1deabb4980b8901521e64f53b158a72409372045306db465b264a674a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 527.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b6ea08758b6673610b3c5bdf47189286cf9c58b1077558706a2f6f8744922527
BLAKE2b-256 checksum
How to use checksums
2005c8eca00a1776e8b2fe43fc968799dfc330f4333ef867275ca7c9e2132249
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 534.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7c72d08acdf573455b2b9d2b75b8237654841d63a48bc2327dc102c6ee89b75a
BLAKE2b-256 checksum
How to use checksums
b459995b249c66af21ae46ddfc66ce2fa5d5fe95f5551d56e8b8f48b5b88dfd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 525.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ec5ca7c0007ce268048bbe0ffc6846ed1616cf3d8628b136e81d5e64ff3f52a2
BLAKE2b-256 checksum
How to use checksums
764b217628b917b603f21d3bd9e6382f973fb5ef4089e03aa81b946652afa3ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 507.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
eee42a1cc06565f6b21caa1f504ec15e07de7ebfd520ab57f8cb3308bc118e22
BLAKE2b-256 checksum
How to use checksums
4ce02d59464fccd9ee6f4e6183d8319862dacf3e91285a95030fc528fbbd263a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Size 498.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d1131562ddc2ea8a446f66c2648d7dabec2b3816fc818528eb978a75a6d23b2e
BLAKE2b-256 checksum
How to use checksums
7bb859ebcaf8b0c78369c7cbf30a55bac33037a5597ce15e38f5307cf6cfe5e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 514.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
625befa3bc9b40746a749115cc6a15bf20b9bd7597ca55d646205b479a2c99c7
BLAKE2b-256 checksum
How to use checksums
f5f7d062a742be339b9dce52a0a4897d76f9ea340cd2b668787cc2c3d6029787
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux2014_x86_64.whl
Size 526.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f94c7d22fb36b184734dded7345a04ec5f95130421c775b8b0c65044ef073f34
BLAKE2b-256 checksum
How to use checksums
6ab92e3381b48a5eb90d5bacdc200e1b0b6c4e3b297907bff4c33b80022bad09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux2014_s390x.whl
Size 527.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
1bab889ae7640eba739f67fcbf8eff252dddc60d4495e6ddd3a87cd9a95fdb52
BLAKE2b-256 checksum
How to use checksums
5739ead5b8d55d7112bb2196e7d87998a858b87164b6dbc6c756a2befa814377
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux2014_ppc64le.whl
Size 534.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a752ecd1a26000a6d67be7c9a2e93801994a8b3f866ac95b672fbc00225ca91a
BLAKE2b-256 checksum
How to use checksums
be2c6f080d28447d20f6434b8c193e8731897098e74a073b1da86dc397878f46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux2014_i686.whl
Size 514.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
2dbfbbded947a83a3dffc2bd1ec4750c17e40904692186e2c55a3ad314ca0222
BLAKE2b-256 checksum
How to use checksums
e91f90e6c29d32d531a121a1f3c5cb7c8bb554104a4c2c95f2625109fd864118
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux2014_aarch64.whl
Size 525.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f6977a520bd96e097c8a37a8cbb9faa1ea99d21bf84190195056e25f688af73d
BLAKE2b-256 checksum
How to use checksums
f059b1023bb62b215c69a238d6f5fe3abcff407d2627580d9e8e44d0c9dada5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux1_x86_64.whl
Size 508.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fe5872ce6f9627deac8314bdffd3862624227c3de4c17ef0cc78bbf0402999eb
BLAKE2b-256 checksum
How to use checksums
f1e6ce8678199eb2922e15197a05555839f95d303a43cde8355ca4df7772a464
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp37-cp37m-manylinux1_i686.whl
Size 514.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
af586e85144023686fb0af09c8cdf672484ea182f352e7ceead3d832de381e1b
BLAKE2b-256 checksum
How to use checksums
68d3190f4142e7bc1d9f5d6de59759fa9b71967af3f53f285b03fdf50575c2f9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp37-cp37m-macosx_10_6_intel.whl

Download URL pymongo-3.12.0-cp37-cp37m-macosx_10_6_intel.whl
Size 428.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
b754240daafecd9d5fce426b0fbaaed03f4ebb130745c8a4ae9231fffb8d75e5
BLAKE2b-256 checksum
How to use checksums
62d6bb6a12a05303a881c8d28106d2a9cf8ec1cc48f1a73cdc5448b001bbaa3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-win_amd64.whl

Download URL pymongo-3.12.0-cp36-cp36m-win_amd64.whl
Size 396.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f2acf9bbcd514e901f82c4ca6926bbd2ae61716728f110b4343eb0a69612d018
BLAKE2b-256 checksum
How to use checksums
b82a929b73de5ef886bb9b62c3611cc4f9a10728b22a78661dd417399b84254f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-win32.whl

Download URL pymongo-3.12.0-cp36-cp36m-win32.whl
Size 391.1 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
d04ca462cb99077e6c059e97c072957caf2918e6e4191e3161c01c439e0193de
BLAKE2b-256 checksum
How to use checksums
868f8c3747c669129a9c99f07384033da1818b8fce1aed0c3a73bc02c8012507
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 523.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
78ecb8d42f50d393af912bfb1fb1dcc9aabe9967973efb49ee577e8f1cea494c
BLAKE2b-256 checksum
How to use checksums
46fe0d739f8c692893d6a4cb7346a36b6f36d19433e55e8b8fd1c865ff33380a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 524.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
ced944dcdd561476deef7cb7bfd4987c69fffbfeff6d02ca4d5d4fd592d559b7
BLAKE2b-256 checksum
How to use checksums
602731f354c68badf274210eff2ef916bbaf9b4139b995d5cd5062eb947a4ecd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 531.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f55c1ddcc1f6050b07d468ce594f55dbf6107b459e16f735d26818d7be1e9538
BLAKE2b-256 checksum
How to use checksums
68081e74ea02e3ee948f129cd2aa5022b13966b5a2853edd8da646bdaabd5231
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 522.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fd3854148005c808c485c754a184c71116372263709958b42aefbef2e5dd373a
BLAKE2b-256 checksum
How to use checksums
ea1c1e8d65ca1dc0adce98a7d3bfa97f177f2053dff1c1a89462e9764c737591
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 506.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
bc9ac81e73573516070d24ce15da91281922811f385645df32bd3c8a45ab4684
BLAKE2b-256 checksum
How to use checksums
4eb0d523e7472203d2e415937bb7930471ff42a32854d1ee5b6057ffd2fd75b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl
Size 497.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b8bf42d3b32f586f4c9e37541769993783a534ad35531ce8a4379f6fa664fba9
BLAKE2b-256 checksum
How to use checksums
49b7d78e452f41ed9541f10825aa44e659dd2c708f6c972095fa1b56a4cf391e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 513.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
1970cfe2aec1bf74b40cf30c130ad10cd968941694630386db33e1d044c22a2e
BLAKE2b-256 checksum
How to use checksums
275c7f5232b52a69fcad26bff917e40fadfa09263bf413a6610c41bfdbca6767
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux2014_x86_64.whl
Size 523.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b3b5b3cbc3fdf4fcfa292529df2a85b5d9c7053913a739d3069af1e12e12219f
BLAKE2b-256 checksum
How to use checksums
e4f2b642ead4654530a005cdc5fc7a6ca39cd431df2d7cbe97f30f96ec2b75a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux2014_s390x.whl
Size 524.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a3566acfbcde46911c52810374ecc0354fdb841284a3efef6ff7105bc007e9a8
BLAKE2b-256 checksum
How to use checksums
4f7c4abbfc75a845cc50e43ad7d2193b9bc499434d455cdd3ece87550455091d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux2014_ppc64le.whl
Size 531.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b1c4874331ab960429caca81acb9d2932170d66d6d6f87e65dc4507a85aca152
BLAKE2b-256 checksum
How to use checksums
e27e0598bbee72e11d74a8dbb187eed8481f90b0ffad6ca5e4ea648a80d68dff
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux2014_i686.whl
Size 513.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
d73e10772152605f6648ba4410318594f1043bbfe36d2fadee7c4b8912eff7c5
BLAKE2b-256 checksum
How to use checksums
00f5756d2a7bca3d51e3fb390274710772154eddbb78f07b3361a2e35732531c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux2014_aarch64.whl
Size 522.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c5cab230e7cabdae9ff23c12271231283efefb944c1b79bed79a91beb65ba547
BLAKE2b-256 checksum
How to use checksums
9c51cfbcb092322554e9869a61fb82c5ebda7f81db24d2b56768e07204c1b704
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux1_x86_64.whl
Size 506.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
48d5bc80ab0af6b60c4163c5617f5cd23f2f880d7600940870ea5055816af024
BLAKE2b-256 checksum
How to use checksums
859af6e9a047d8b03a246c7a6fbf6bccd060dc4b2fe44a961e0f5f51ce9e4cbd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp36-cp36m-manylinux1_i686.whl
Size 513.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a325600c83e61e3c9cebc0c2b1c8c4140fa887f789085075e8f44c8ff2547eb9
BLAKE2b-256 checksum
How to use checksums
a64b771e614151bd609bdadfd6e7e2faf9db93555902cab6bcb3741f1501a852
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp36-cp36m-macosx_10_6_intel.whl

Download URL pymongo-3.12.0-cp36-cp36m-macosx_10_6_intel.whl
Size 425.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
b542d56ed1b8d5cf3bb36326f814bd2fbe8812dfd2582b80a15689ea433c0e35
BLAKE2b-256 checksum
How to use checksums
e9acd9a7bf24f67735c1a91748d359f4b91327eb31541af372c5d675ddde1413
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-win_amd64.whl

Download URL pymongo-3.12.0-cp35-cp35m-win_amd64.whl
Size 396.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a0e5dff6701fa615f165306e642709e1c1550d5b237c5a7a6ea299886828bd50
BLAKE2b-256 checksum
How to use checksums
2869cbbb7ebe668f955489274a72bd44423518602475641550d11253b588b57c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-win32.whl

Download URL pymongo-3.12.0-cp35-cp35m-win32.whl
Size 391.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
4ba0def4abef058c0e5101e05e3d5266e6fffb9795bbf8be0fe912a7361a0209
BLAKE2b-256 checksum
How to use checksums
141e9dd72b0eca412277d7b2fe452c3fe9c50e4050cde42a1f50e7d13839a060
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 506.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fa8957e9a1b202cb45e6b839c241cd986c897be1e722b81d2f32e9c6aeee80b0
BLAKE2b-256 checksum
How to use checksums
a48a9e74246254e7e06363ee94f4f6faa106d9f2bd0273782966cf08895eadb8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl
Size 497.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
333bfad77aa9cd11711febfb75eed0bb537a1d022e1c252714dad38993590240
BLAKE2b-256 checksum
How to use checksums
47fc93675cd8186a062f1d135f511dbfd389d9eeeb9a625f05c907a87558f9e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux2014_x86_64.whl
Size 522.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
70761fd3c576b027eec882b43ee0a8e5b22ff9c20cdf4d0400e104bc29e53e34
BLAKE2b-256 checksum
How to use checksums
74058fbd6f397572d1552af41d9b96d692db03c776de2c926c0db0a2badab819
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux2014_s390x.whl
Size 523.8 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
186104a94d39b8412f8e3de385acd990a628346a4402d4f3a288a82b8660bd22
BLAKE2b-256 checksum
How to use checksums
af8cfe94c4393748c8a41ffa74d5574c001bb919d0b69ad3bcbfe2d52f7cd6fc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux2014_ppc64le.whl
Size 531.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
11f9e0cfc84ade088a38df2708d0b958bb76360181df1b2e1e1a41beaa57952b
BLAKE2b-256 checksum
How to use checksums
e00c1eb787e270e9a6d4076f6578a9952db555371d36a99f9806db9eb97ea083
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux2014_i686.whl
Size 512.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c55782a55f4a013a78ac5b6ee4b8731a192dea7ab09f1b6b3044c96d5128edd4
BLAKE2b-256 checksum
How to use checksums
4262b8b8ca3824e9e7b17bf59cd37a9eb45ae7aec0cf85bc5159aab47be36e0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux2014_aarch64.whl
Size 521.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a634a4730ce0b0934ed75e45beba730968e12b4dafbb22f69b3b2f616d9e644e
BLAKE2b-256 checksum
How to use checksums
b57f2812643c0b52640285bf8ae76c5b99eaaf78b96b5a918e731f0fefca064a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux1_x86_64.whl
Size 506.6 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
cbf8672edeb7b7128c4a939274801f0e32bbf5159987815e3d1eace625264a46
BLAKE2b-256 checksum
How to use checksums
905f6a094d8f4fc3c743e6abb4680835a0e971e934f8fcd03f55e090fc6522d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp35-cp35m-manylinux1_i686.whl
Size 512.4 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
73b400fdc22de84bae0dbf1a22613928a41612ec0a3d6ed47caf7ad4d3d0f2ff
BLAKE2b-256 checksum
How to use checksums
684d2058e486d01378f939aaf2bfddd2db5de4012dc17403dfc77dbdc33dd6dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl

Download URL pymongo-3.12.0-cp35-cp35m-macosx_10_6_intel.whl
Size 425.7 kB
Tags CPython 3.5 CPython 3.5 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
5e574664f1468872cd40f74e4811e22b1aa4de9399d6bcfdf1ee6ea94c017fcf
BLAKE2b-256 checksum
How to use checksums
17a9753724b6c38dde3a79763760e611839cc6f4f1a74e61d6a7040304346c95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp34-cp34m-win_amd64.whl

Download URL pymongo-3.12.0-cp34-cp34m-win_amd64.whl
Size 392.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
ceae3ab9e11a27aaab42878f1d203600dfd24f0e43678b47298219a0f10c0d30
BLAKE2b-256 checksum
How to use checksums
ac42b9a552ee4548272b706ea118c81856bff5d33cbb383e8d6c2a1c588e1cec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp34-cp34m-win32.whl

Download URL pymongo-3.12.0-cp34-cp34m-win32.whl
Size 389.2 kB
Tags CPython 3.4 CPython 3.4 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
b0a0cf39f589e52d801fdef418305562bc030cdf8929217463c8433c65fd5c2f
BLAKE2b-256 checksum
How to use checksums
9dbfe3ce581f4a2cd67bb1ad73339b23fefcffda9a66858618684be727c540fd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp34-cp34m-manylinux1_x86_64.whl
Size 502.6 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7d98ce3c42921bb91566121b658e0d9d59a9082a9bd6f473190607ff25ab637f
BLAKE2b-256 checksum
How to use checksums
55a815aa1e90ae167ed025b035fe9cd7794e79f1d98096e6c82ab4c79a595927
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp34-cp34m-manylinux1_i686.whl
Size 494.1 kB
Tags CPython 3.4 CPython 3.4 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
aaa038eafb7186a4abbb311fcf20724be9363645882bbce540bef4797e812a7a
BLAKE2b-256 checksum
How to use checksums
023192d2ca39bd33c0889ad4c474bfd3bea141463bf5c9de18b7c6310f93195d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl

Download URL pymongo-3.12.0-cp34-cp34m-macosx_10_6_intel.whl
Size 425.4 kB
Tags CPython 3.4 CPython 3.4 pymalloc macOS 10.6+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
6fb3f85870ae26896bb44e67db94045f2ebf00c5d41e6b66cdcbb5afd644fc18
BLAKE2b-256 checksum
How to use checksums
16ea4bcd562c40fbdd077a11bf5515e87dc870386640f2585df27cce5608ee04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 502.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
c188db6cf9e14dbbb42f5254292be96f05374a35e7dfa087cc2140f0ff4f10f6
BLAKE2b-256 checksum
How to use checksums
a8f41ebad4860018e7d121aca7aa8e600ad2715b2ee3cb8be99a9ee57e80e2b1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl
Size 493.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ffbae429ba9e42d0582d3ac63fdb410338892468a2107d8ff68228ec9a39a0ed
BLAKE2b-256 checksum
How to use checksums
a5fa8aa672de470893ea93e94abacdc887e60fe70d2f70d97bc763bcb768595e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp27-cp27mu-manylinux1_x86_64.whl
Size 502.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
255a35bf29185f44b412e31a927d9dcedda7c2c380127ecc4fbf2f61b72fa978
BLAKE2b-256 checksum
How to use checksums
6a045fb5a4380978bf098880e7403a3e7b20679b05c4263b9ea040bd373a7834
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp27-cp27mu-manylinux1_i686.whl
Size 493.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
316c1b8723afa9870567cd6dff35d440b2afeda53aa13da6c5ab85f98ed6f5ca
BLAKE2b-256 checksum
How to use checksums
d72fb37e324d2fa492b4d57684f5890b6a71d385e1713f707b7bb9e3d7ae0fdc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-win_amd64.whl

Download URL pymongo-3.12.0-cp27-cp27m-win_amd64.whl
Size 392.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
e2b7670c0c8c6b501464150dd49dd0d6be6cb7f049e064124911cec5514fa19e
BLAKE2b-256 checksum
How to use checksums
03194382661087d250e6d16d94e63c22e95956bee61eb905dc43b56a9786bb66
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-win32.whl

Download URL pymongo-3.12.0-cp27-cp27m-win32.whl
Size 388.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
1bc6fe7279ff40c6818db002bf5284aa03ec181ea1b1ceaeee33c289d412afa7
BLAKE2b-256 checksum
How to use checksums
1136c83fe13583e309e5023e447125c96fdaee4736d7a6d80a14474bccb395d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Size 502.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
dcd3d0009fbb6e454d729f8b22d0063bd9171c31a55e0f0271119bd4f2700023
BLAKE2b-256 checksum
How to use checksums
04bda884ee42672400cde6fdcfbfa7605fabb0cbdf5d2502225298289738ef5a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl

Download URL pymongo-3.12.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl
Size 493.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
e8a82e35d52ad6f867e88096a1a2b9bdc7ec4d5e65c7b4976a248bf2d1a32a93
BLAKE2b-256 checksum
How to use checksums
49a3b6792248d7cd0a1171cf307f4207f639d724b76856481486f89ae47145bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl

Download URL pymongo-3.12.0-cp27-cp27m-manylinux1_x86_64.whl
Size 502.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
7412a36798966624dc4c57d64aa43c2d1100b348abd98daaac8e99e57d87e1d7
BLAKE2b-256 checksum
How to use checksums
d171a4a134c19783a52743aa71bf72eb7825e5f3bea5aaa15df952dd632df882
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl

Download URL pymongo-3.12.0-cp27-cp27m-manylinux1_i686.whl
Size 493.9 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d6e11ffd43184d529d6752d6dcb62b994f903038a17ea2168ef1910c96324d26
BLAKE2b-256 checksum
How to use checksums
0805ff5ee7fd55880e639e35621044004f8e884b063f39109e30812a05712106
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release files / pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl

Download URL pymongo-3.12.0-cp27-cp27m-macosx_10_14_intel.whl
Size 389.8 kB
Tags CPython 2.7 CPython 2.7 pymalloc macOS 10.14+ Intel (x86-64, i386)
SHA-256 checksum
How to use checksums
072ba7cb65c8aa4d5c5659bf6722ee85781c9d7816dc00679b8b6f3dff1ddafc
BLAKE2b-256 checksum
How to use checksums
75330380b94674bc321b3d16404f1e5e2218f568999e2cae81568cde7dad7968
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.24.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.0

Release history Release notifications | RSS feed

4.11

45 release files

4.9.1

59 release files

4.9

59 release files

4.8.0

50 release files

4.7.1

60 release files

4.7.0

60 release files

4.6.3

82 release files

4.6.2

82 release files

4.6.1

82 release files

4.5.0

82 release files

4.4.1

74 release files

4.4.0

74 release files

4.3.3

74 release files

4.3.2

74 release files

4.2.0

67 release files

4.1.1

83 release files

4.0

83 release files

This release

3.12.0 This release

98 release files

3.9.0

31 release files

3.8.0

31 release files

3.7.2

39 release files

3.7.1

47 release files

3.7.0

44 release files

3.5.1

53 release files

3.4.0

49 release files

3.3.1

53 release files

3.3.0

44 release files

3.2.2

61 release files

3.2

61 release files

3.1.1

61 release files

3.1

61 release files

3.0.2

48 release files

3.0.1

49 release files

3.0

49 release files

2.9.5

41 release files

2.9.4

56 release files

2.9.3

67 release files

2.9.1

67 release files

2.9

63 release files

2.8.1

55 release files

2.8

55 release files

2.7.2

56 release files

2.7.1

56 release files

2.7

56 release files

2.6.3

29 release files

2.6

29 release files

2.5.1

34 release files

2.5

34 release files

2.4.2

34 release files

2.4

34 release files

2.3

28 release files

2.2

25 release files

2.1

21 release files

2.0.1

19 release files

2.0

20 release files

1.11

13 release files

1.10

13 release files

1.9

9 release files

1.8.1

8 release files

1.8

8 release files

1.7

8 release files

1.6

6 release files

1.5.2

6 release files

1.5.1

6 release files

1.5

6 release files

1.4

6 release files

1.3

6 release files

1.2.1

6 release files

1.2

6 release files

1.1.2

6 release files

1.1.1

4 release files

1.1

6 release files

1.0

6 release files

0.16

6 release files

0.15

7 release files

0.14.2

6 release files

0.14.1

5 release files

0.14

5 release files

0.13

5 release files

0.12

5 release files

0.11.3

5 release files

0.11

2 release files

0.10.3

2 release files

0.10.2

2 release files

0.10.1

2 release files

0.10

2 release files

0.9.7

2 release files

0.9.6

2 release files

0.9.5

2 release files

0.9.4

2 release files

0.9.3

2 release files

0.9.2

2 release files

0.9.1

2 release files

0.9

2 release files

0.8.1

2 release files

0.8

2 release files

0.7.2

2 release files

0.7.1

2 release files

0.7

2 release files

0.6

3 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page