Initial commit
This commit is contained in:
241
venv/lib/python3.8/site-packages/pymongo-3.9.0.egg-info/PKG-INFO
Normal file
241
venv/lib/python3.8/site-packages/pymongo-3.9.0.egg-info/PKG-INFO
Normal file
@@ -0,0 +1,241 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: pymongo
|
||||
Version: 3.9.0
|
||||
Summary: Python driver for MongoDB <http://www.mongodb.org>
|
||||
Home-page: http://github.com/mongodb/mongo-python-driver
|
||||
Author: Mike Dirolf
|
||||
Author-email: mongodb-user@googlegroups.com
|
||||
Maintainer: Bernie Hackett
|
||||
Maintainer-email: bernie@mongodb.com
|
||||
License: Apache License, Version 2.0
|
||||
Description: =======
|
||||
PyMongo
|
||||
=======
|
||||
:Info: See `the mongo site <http://www.mongodb.org>`_ for more information. See `GitHub <http://github.com/mongodb/mongo-python-driver>`_ for the latest source.
|
||||
: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 <http://bsonspec.org>`_ for Python. The ``pymongo``
|
||||
package is a native Python driver for MongoDB. The ``gridfs`` package
|
||||
is a `gridfs
|
||||
<http://www.mongodb.org/display/DOCS/GridFS+Specification>`_
|
||||
implementation on top of ``pymongo``.
|
||||
|
||||
PyMongo supports MongoDB 2.6, 3.0, 3.2, 3.4, 3.6, 4.0 and 4.2.
|
||||
|
||||
Support / Feedback
|
||||
==================
|
||||
|
||||
For issues with, questions about, or feedback for PyMongo, please look into
|
||||
our `support channels <http://www.mongodb.org/about/support>`_. 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-user
|
||||
<http://groups.google.com/group/mongodb-user>`_ list on Google Groups.
|
||||
|
||||
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:
|
||||
|
||||
- `Create an account and login <https://jira.mongodb.org>`_.
|
||||
- Navigate to `the PYTHON project <https://jira.mongodb.org/browse/PYTHON>`_.
|
||||
- Click **Create Issue** - Please provide as much information as possible about the issue type and how to reproduce it.
|
||||
|
||||
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
|
||||
<http://docs.mongodb.org/manual/tutorial/create-a-vulnerability-report>`_.
|
||||
|
||||
Installation
|
||||
============
|
||||
|
||||
PyMongo can be installed with `pip <http://pypi.python.org/pypi/pip>`_::
|
||||
|
||||
$ python -m pip install pymongo
|
||||
|
||||
Or ``easy_install`` from
|
||||
`setuptools <http://pypi.python.org/pypi/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+.
|
||||
|
||||
Optional dependencies:
|
||||
|
||||
GSSAPI authentication requires `pykerberos
|
||||
<https://pypi.python.org/pypi/pykerberos>`_ on Unix or `WinKerberos
|
||||
<https://pypi.python.org/pypi/winkerberos>`_ on Windows. The correct
|
||||
dependency can be installed automatically along with PyMongo::
|
||||
|
||||
$ python -m pip install pymongo[gssapi]
|
||||
|
||||
Support for mongodb+srv:// URIs requires `dnspython
|
||||
<https://pypi.python.org/pypi/dnspython>`_::
|
||||
|
||||
$ python -m pip install pymongo[srv]
|
||||
|
||||
TLS / SSL support may require `ipaddress
|
||||
<https://pypi.python.org/pypi/ipaddress>`_ and `certifi
|
||||
<https://pypi.python.org/pypi/certifi>`_ or `wincertstore
|
||||
<https://pypi.python.org/pypi/wincertstore>`_ depending on the Python
|
||||
version in use. The necessary dependencies can be installed along with
|
||||
PyMongo::
|
||||
|
||||
$ python -m pip install pymongo[tls]
|
||||
|
||||
Wire protocol compression with snappy requires `python-snappy
|
||||
<https://pypi.org/project/python-snappy>`_::
|
||||
|
||||
$ python -m pip install pymongo[snappy]
|
||||
|
||||
Wire protocol compression with zstandard requires `zstandard
|
||||
<https://pypi.org/project/zstandard>`_::
|
||||
|
||||
$ python -m pip install pymongo[zstd]
|
||||
|
||||
You can install all dependencies automatically with the following
|
||||
command::
|
||||
|
||||
$ python -m pip install pymongo[snappy,gssapi,srv,tls,zstd]
|
||||
|
||||
Other optional packages:
|
||||
|
||||
- `backports.pbkdf2 <https://pypi.python.org/pypi/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 <https://pypi.python.org/pypi/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):
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
>>> 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
|
||||
=============
|
||||
|
||||
You will need sphinx_ installed to generate the
|
||||
documentation. 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
|
||||
|
||||
.. _sphinx: http://sphinx.pocoo.org/
|
||||
|
||||
Keywords: mongo,mongodb,pymongo,gridfs,bson
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: Operating System :: MacOS :: MacOS X
|
||||
Classifier: Operating System :: Microsoft :: Windows
|
||||
Classifier: Operating System :: POSIX
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Classifier: Topic :: Database
|
||||
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
|
||||
Provides-Extra: encryption
|
||||
Provides-Extra: gssapi
|
||||
Provides-Extra: snappy
|
||||
Provides-Extra: srv
|
||||
Provides-Extra: tls
|
||||
Provides-Extra: zstd
|
||||
@@ -0,0 +1,276 @@
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
README.rst
|
||||
THIRD-PARTY-NOTICES
|
||||
ez_setup.py
|
||||
setup.cfg
|
||||
setup.py
|
||||
bson/__init__.py
|
||||
bson/_cbsonmodule.c
|
||||
bson/_cbsonmodule.h
|
||||
bson/binary.py
|
||||
bson/bson-endian.h
|
||||
bson/bson-stdint-win32.h
|
||||
bson/buffer.c
|
||||
bson/buffer.h
|
||||
bson/code.py
|
||||
bson/codec_options.py
|
||||
bson/dbref.py
|
||||
bson/decimal128.py
|
||||
bson/encoding_helpers.c
|
||||
bson/encoding_helpers.h
|
||||
bson/errors.py
|
||||
bson/int64.py
|
||||
bson/json_util.py
|
||||
bson/max_key.py
|
||||
bson/min_key.py
|
||||
bson/objectid.py
|
||||
bson/py3compat.py
|
||||
bson/raw_bson.py
|
||||
bson/regex.py
|
||||
bson/son.py
|
||||
bson/time64.c
|
||||
bson/time64.h
|
||||
bson/time64_config.h
|
||||
bson/time64_limits.h
|
||||
bson/timestamp.py
|
||||
bson/tz_util.py
|
||||
doc/__init__.py
|
||||
doc/atlas.rst
|
||||
doc/changelog.rst
|
||||
doc/compatibility-policy.rst
|
||||
doc/conf.py
|
||||
doc/contributors.rst
|
||||
doc/faq.rst
|
||||
doc/index.rst
|
||||
doc/installation.rst
|
||||
doc/migrate-to-pymongo3.rst
|
||||
doc/mongo_extensions.py
|
||||
doc/python3.rst
|
||||
doc/tools.rst
|
||||
doc/tutorial.rst
|
||||
doc/api/index.rst
|
||||
doc/api/bson/binary.rst
|
||||
doc/api/bson/code.rst
|
||||
doc/api/bson/codec_options.rst
|
||||
doc/api/bson/dbref.rst
|
||||
doc/api/bson/decimal128.rst
|
||||
doc/api/bson/errors.rst
|
||||
doc/api/bson/index.rst
|
||||
doc/api/bson/int64.rst
|
||||
doc/api/bson/json_util.rst
|
||||
doc/api/bson/max_key.rst
|
||||
doc/api/bson/min_key.rst
|
||||
doc/api/bson/objectid.rst
|
||||
doc/api/bson/raw_bson.rst
|
||||
doc/api/bson/regex.rst
|
||||
doc/api/bson/son.rst
|
||||
doc/api/bson/timestamp.rst
|
||||
doc/api/bson/tz_util.rst
|
||||
doc/api/gridfs/errors.rst
|
||||
doc/api/gridfs/grid_file.rst
|
||||
doc/api/gridfs/index.rst
|
||||
doc/api/pymongo/bulk.rst
|
||||
doc/api/pymongo/change_stream.rst
|
||||
doc/api/pymongo/client_session.rst
|
||||
doc/api/pymongo/collation.rst
|
||||
doc/api/pymongo/collection.rst
|
||||
doc/api/pymongo/command_cursor.rst
|
||||
doc/api/pymongo/cursor.rst
|
||||
doc/api/pymongo/cursor_manager.rst
|
||||
doc/api/pymongo/database.rst
|
||||
doc/api/pymongo/driver_info.rst
|
||||
doc/api/pymongo/encryption.rst
|
||||
doc/api/pymongo/encryption_options.rst
|
||||
doc/api/pymongo/errors.rst
|
||||
doc/api/pymongo/index.rst
|
||||
doc/api/pymongo/ismaster.rst
|
||||
doc/api/pymongo/message.rst
|
||||
doc/api/pymongo/mongo_client.rst
|
||||
doc/api/pymongo/mongo_replica_set_client.rst
|
||||
doc/api/pymongo/monitoring.rst
|
||||
doc/api/pymongo/operations.rst
|
||||
doc/api/pymongo/pool.rst
|
||||
doc/api/pymongo/read_concern.rst
|
||||
doc/api/pymongo/read_preferences.rst
|
||||
doc/api/pymongo/results.rst
|
||||
doc/api/pymongo/server_description.rst
|
||||
doc/api/pymongo/son_manipulator.rst
|
||||
doc/api/pymongo/topology_description.rst
|
||||
doc/api/pymongo/uri_parser.rst
|
||||
doc/api/pymongo/write_concern.rst
|
||||
doc/developer/index.rst
|
||||
doc/developer/periodic_executor.rst
|
||||
doc/examples/aggregation.rst
|
||||
doc/examples/authentication.rst
|
||||
doc/examples/bulk.rst
|
||||
doc/examples/collations.rst
|
||||
doc/examples/copydb.rst
|
||||
doc/examples/custom_type.rst
|
||||
doc/examples/datetimes.rst
|
||||
doc/examples/geo.rst
|
||||
doc/examples/gevent.rst
|
||||
doc/examples/gridfs.rst
|
||||
doc/examples/high_availability.rst
|
||||
doc/examples/index.rst
|
||||
doc/examples/mod_wsgi.rst
|
||||
doc/examples/server_selection.rst
|
||||
doc/examples/tailable.rst
|
||||
doc/examples/tls.rst
|
||||
doc/pydoctheme/theme.conf
|
||||
doc/pydoctheme/static/pydoctheme.css
|
||||
doc/static/periodic-executor-refs.png
|
||||
doc/static/sidebar.js
|
||||
gridfs/__init__.py
|
||||
gridfs/errors.py
|
||||
gridfs/grid_file.py
|
||||
pymongo/__init__.py
|
||||
pymongo/_cmessagemodule.c
|
||||
pymongo/aggregation.py
|
||||
pymongo/auth.py
|
||||
pymongo/bulk.py
|
||||
pymongo/change_stream.py
|
||||
pymongo/client_options.py
|
||||
pymongo/client_session.py
|
||||
pymongo/collation.py
|
||||
pymongo/collection.py
|
||||
pymongo/command_cursor.py
|
||||
pymongo/common.py
|
||||
pymongo/compression_support.py
|
||||
pymongo/cursor.py
|
||||
pymongo/cursor_manager.py
|
||||
pymongo/database.py
|
||||
pymongo/driver_info.py
|
||||
pymongo/encryption.py
|
||||
pymongo/encryption_options.py
|
||||
pymongo/errors.py
|
||||
pymongo/helpers.py
|
||||
pymongo/ismaster.py
|
||||
pymongo/max_staleness_selectors.py
|
||||
pymongo/message.py
|
||||
pymongo/mongo_client.py
|
||||
pymongo/mongo_replica_set_client.py
|
||||
pymongo/monitor.py
|
||||
pymongo/monitoring.py
|
||||
pymongo/monotonic.py
|
||||
pymongo/network.py
|
||||
pymongo/operations.py
|
||||
pymongo/periodic_executor.py
|
||||
pymongo/pool.py
|
||||
pymongo/read_concern.py
|
||||
pymongo/read_preferences.py
|
||||
pymongo/response.py
|
||||
pymongo/results.py
|
||||
pymongo/saslprep.py
|
||||
pymongo/server.py
|
||||
pymongo/server_description.py
|
||||
pymongo/server_selectors.py
|
||||
pymongo/server_type.py
|
||||
pymongo/settings.py
|
||||
pymongo/son_manipulator.py
|
||||
pymongo/srv_resolver.py
|
||||
pymongo/ssl_context.py
|
||||
pymongo/ssl_match_hostname.py
|
||||
pymongo/ssl_support.py
|
||||
pymongo/thread_util.py
|
||||
pymongo/topology.py
|
||||
pymongo/topology_description.py
|
||||
pymongo/uri_parser.py
|
||||
pymongo/write_concern.py
|
||||
pymongo.egg-info/PKG-INFO
|
||||
pymongo.egg-info/SOURCES.txt
|
||||
pymongo.egg-info/dependency_links.txt
|
||||
pymongo.egg-info/requires.txt
|
||||
pymongo.egg-info/top_level.txt
|
||||
test/__init__.py
|
||||
test/pymongo_mocks.py
|
||||
test/qcheck.py
|
||||
test/test_auth.py
|
||||
test/test_auth_spec.py
|
||||
test/test_binary.py
|
||||
test/test_bson.py
|
||||
test/test_bson_corpus.py
|
||||
test/test_bulk.py
|
||||
test/test_change_stream.py
|
||||
test/test_client.py
|
||||
test/test_client_context.py
|
||||
test/test_cmap.py
|
||||
test/test_code.py
|
||||
test/test_collation.py
|
||||
test/test_collection.py
|
||||
test/test_command_monitoring_spec.py
|
||||
test/test_common.py
|
||||
test/test_connections_survive_primary_stepdown_spec.py
|
||||
test/test_crud_v1.py
|
||||
test/test_crud_v2.py
|
||||
test/test_cursor.py
|
||||
test/test_cursor_manager.py
|
||||
test/test_custom_types.py
|
||||
test/test_database.py
|
||||
test/test_dbref.py
|
||||
test/test_decimal128.py
|
||||
test/test_discovery_and_monitoring.py
|
||||
test/test_dns.py
|
||||
test/test_encryption.py
|
||||
test/test_examples.py
|
||||
test/test_grid_file.py
|
||||
test/test_gridfs.py
|
||||
test/test_gridfs_bucket.py
|
||||
test/test_gridfs_spec.py
|
||||
test/test_heartbeat_monitoring.py
|
||||
test/test_json_util.py
|
||||
test/test_legacy_api.py
|
||||
test/test_max_staleness.py
|
||||
test/test_mongos_load_balancing.py
|
||||
test/test_monitor.py
|
||||
test/test_monitoring.py
|
||||
test/test_monotonic.py
|
||||
test/test_objectid.py
|
||||
test/test_pooling.py
|
||||
test/test_pymongo.py
|
||||
test/test_raw_bson.py
|
||||
test/test_read_concern.py
|
||||
test/test_read_preferences.py
|
||||
test/test_read_write_concern_spec.py
|
||||
test/test_replica_set_client.py
|
||||
test/test_replica_set_reconfig.py
|
||||
test/test_retryable_reads.py
|
||||
test/test_retryable_writes.py
|
||||
test/test_saslprep.py
|
||||
test/test_sdam_monitoring_spec.py
|
||||
test/test_server.py
|
||||
test/test_server_description.py
|
||||
test/test_server_selection.py
|
||||
test/test_server_selection_rtt.py
|
||||
test/test_session.py
|
||||
test/test_son.py
|
||||
test/test_son_manipulator.py
|
||||
test/test_srv_polling.py
|
||||
test/test_ssl.py
|
||||
test/test_threads.py
|
||||
test/test_timestamp.py
|
||||
test/test_topology.py
|
||||
test/test_transactions.py
|
||||
test/test_uri_parser.py
|
||||
test/test_uri_spec.py
|
||||
test/test_write_concern.py
|
||||
test/utils.py
|
||||
test/utils_selection_tests.py
|
||||
test/utils_spec_runner.py
|
||||
test/version.py
|
||||
test/atlas/test_connection.py
|
||||
test/certificates/ca.pem
|
||||
test/certificates/client.pem
|
||||
test/certificates/crl.pem
|
||||
test/certificates/password_protected.pem
|
||||
test/certificates/server.pem
|
||||
test/mod_wsgi_test/test_client.py
|
||||
test/performance/perf_test.py
|
||||
test/unicode/test_utf8.py
|
||||
test/uri_options/ca.pem
|
||||
test/uri_options/cert.pem
|
||||
test/uri_options/client.pem
|
||||
tools/README.rst
|
||||
tools/benchmark.py
|
||||
tools/clean.py
|
||||
tools/fail_if_no_c.py
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,153 @@
|
||||
../bson/__init__.py
|
||||
../bson/__pycache__/__init__.cpython-38.pyc
|
||||
../bson/__pycache__/binary.cpython-38.pyc
|
||||
../bson/__pycache__/code.cpython-38.pyc
|
||||
../bson/__pycache__/codec_options.cpython-38.pyc
|
||||
../bson/__pycache__/dbref.cpython-38.pyc
|
||||
../bson/__pycache__/decimal128.cpython-38.pyc
|
||||
../bson/__pycache__/errors.cpython-38.pyc
|
||||
../bson/__pycache__/int64.cpython-38.pyc
|
||||
../bson/__pycache__/json_util.cpython-38.pyc
|
||||
../bson/__pycache__/max_key.cpython-38.pyc
|
||||
../bson/__pycache__/min_key.cpython-38.pyc
|
||||
../bson/__pycache__/objectid.cpython-38.pyc
|
||||
../bson/__pycache__/py3compat.cpython-38.pyc
|
||||
../bson/__pycache__/raw_bson.cpython-38.pyc
|
||||
../bson/__pycache__/regex.cpython-38.pyc
|
||||
../bson/__pycache__/son.cpython-38.pyc
|
||||
../bson/__pycache__/timestamp.cpython-38.pyc
|
||||
../bson/__pycache__/tz_util.cpython-38.pyc
|
||||
../bson/_cbson.cpython-38-x86_64-linux-gnu.so
|
||||
../bson/binary.py
|
||||
../bson/code.py
|
||||
../bson/codec_options.py
|
||||
../bson/dbref.py
|
||||
../bson/decimal128.py
|
||||
../bson/errors.py
|
||||
../bson/int64.py
|
||||
../bson/json_util.py
|
||||
../bson/max_key.py
|
||||
../bson/min_key.py
|
||||
../bson/objectid.py
|
||||
../bson/py3compat.py
|
||||
../bson/raw_bson.py
|
||||
../bson/regex.py
|
||||
../bson/son.py
|
||||
../bson/timestamp.py
|
||||
../bson/tz_util.py
|
||||
../gridfs/__init__.py
|
||||
../gridfs/__pycache__/__init__.cpython-38.pyc
|
||||
../gridfs/__pycache__/errors.cpython-38.pyc
|
||||
../gridfs/__pycache__/grid_file.cpython-38.pyc
|
||||
../gridfs/errors.py
|
||||
../gridfs/grid_file.py
|
||||
../pymongo/__init__.py
|
||||
../pymongo/__pycache__/__init__.cpython-38.pyc
|
||||
../pymongo/__pycache__/aggregation.cpython-38.pyc
|
||||
../pymongo/__pycache__/auth.cpython-38.pyc
|
||||
../pymongo/__pycache__/bulk.cpython-38.pyc
|
||||
../pymongo/__pycache__/change_stream.cpython-38.pyc
|
||||
../pymongo/__pycache__/client_options.cpython-38.pyc
|
||||
../pymongo/__pycache__/client_session.cpython-38.pyc
|
||||
../pymongo/__pycache__/collation.cpython-38.pyc
|
||||
../pymongo/__pycache__/collection.cpython-38.pyc
|
||||
../pymongo/__pycache__/command_cursor.cpython-38.pyc
|
||||
../pymongo/__pycache__/common.cpython-38.pyc
|
||||
../pymongo/__pycache__/compression_support.cpython-38.pyc
|
||||
../pymongo/__pycache__/cursor.cpython-38.pyc
|
||||
../pymongo/__pycache__/cursor_manager.cpython-38.pyc
|
||||
../pymongo/__pycache__/database.cpython-38.pyc
|
||||
../pymongo/__pycache__/driver_info.cpython-38.pyc
|
||||
../pymongo/__pycache__/encryption.cpython-38.pyc
|
||||
../pymongo/__pycache__/encryption_options.cpython-38.pyc
|
||||
../pymongo/__pycache__/errors.cpython-38.pyc
|
||||
../pymongo/__pycache__/helpers.cpython-38.pyc
|
||||
../pymongo/__pycache__/ismaster.cpython-38.pyc
|
||||
../pymongo/__pycache__/max_staleness_selectors.cpython-38.pyc
|
||||
../pymongo/__pycache__/message.cpython-38.pyc
|
||||
../pymongo/__pycache__/mongo_client.cpython-38.pyc
|
||||
../pymongo/__pycache__/mongo_replica_set_client.cpython-38.pyc
|
||||
../pymongo/__pycache__/monitor.cpython-38.pyc
|
||||
../pymongo/__pycache__/monitoring.cpython-38.pyc
|
||||
../pymongo/__pycache__/monotonic.cpython-38.pyc
|
||||
../pymongo/__pycache__/network.cpython-38.pyc
|
||||
../pymongo/__pycache__/operations.cpython-38.pyc
|
||||
../pymongo/__pycache__/periodic_executor.cpython-38.pyc
|
||||
../pymongo/__pycache__/pool.cpython-38.pyc
|
||||
../pymongo/__pycache__/read_concern.cpython-38.pyc
|
||||
../pymongo/__pycache__/read_preferences.cpython-38.pyc
|
||||
../pymongo/__pycache__/response.cpython-38.pyc
|
||||
../pymongo/__pycache__/results.cpython-38.pyc
|
||||
../pymongo/__pycache__/saslprep.cpython-38.pyc
|
||||
../pymongo/__pycache__/server.cpython-38.pyc
|
||||
../pymongo/__pycache__/server_description.cpython-38.pyc
|
||||
../pymongo/__pycache__/server_selectors.cpython-38.pyc
|
||||
../pymongo/__pycache__/server_type.cpython-38.pyc
|
||||
../pymongo/__pycache__/settings.cpython-38.pyc
|
||||
../pymongo/__pycache__/son_manipulator.cpython-38.pyc
|
||||
../pymongo/__pycache__/srv_resolver.cpython-38.pyc
|
||||
../pymongo/__pycache__/ssl_context.cpython-38.pyc
|
||||
../pymongo/__pycache__/ssl_match_hostname.cpython-38.pyc
|
||||
../pymongo/__pycache__/ssl_support.cpython-38.pyc
|
||||
../pymongo/__pycache__/thread_util.cpython-38.pyc
|
||||
../pymongo/__pycache__/topology.cpython-38.pyc
|
||||
../pymongo/__pycache__/topology_description.cpython-38.pyc
|
||||
../pymongo/__pycache__/uri_parser.cpython-38.pyc
|
||||
../pymongo/__pycache__/write_concern.cpython-38.pyc
|
||||
../pymongo/_cmessage.cpython-38-x86_64-linux-gnu.so
|
||||
../pymongo/aggregation.py
|
||||
../pymongo/auth.py
|
||||
../pymongo/bulk.py
|
||||
../pymongo/change_stream.py
|
||||
../pymongo/client_options.py
|
||||
../pymongo/client_session.py
|
||||
../pymongo/collation.py
|
||||
../pymongo/collection.py
|
||||
../pymongo/command_cursor.py
|
||||
../pymongo/common.py
|
||||
../pymongo/compression_support.py
|
||||
../pymongo/cursor.py
|
||||
../pymongo/cursor_manager.py
|
||||
../pymongo/database.py
|
||||
../pymongo/driver_info.py
|
||||
../pymongo/encryption.py
|
||||
../pymongo/encryption_options.py
|
||||
../pymongo/errors.py
|
||||
../pymongo/helpers.py
|
||||
../pymongo/ismaster.py
|
||||
../pymongo/max_staleness_selectors.py
|
||||
../pymongo/message.py
|
||||
../pymongo/mongo_client.py
|
||||
../pymongo/mongo_replica_set_client.py
|
||||
../pymongo/monitor.py
|
||||
../pymongo/monitoring.py
|
||||
../pymongo/monotonic.py
|
||||
../pymongo/network.py
|
||||
../pymongo/operations.py
|
||||
../pymongo/periodic_executor.py
|
||||
../pymongo/pool.py
|
||||
../pymongo/read_concern.py
|
||||
../pymongo/read_preferences.py
|
||||
../pymongo/response.py
|
||||
../pymongo/results.py
|
||||
../pymongo/saslprep.py
|
||||
../pymongo/server.py
|
||||
../pymongo/server_description.py
|
||||
../pymongo/server_selectors.py
|
||||
../pymongo/server_type.py
|
||||
../pymongo/settings.py
|
||||
../pymongo/son_manipulator.py
|
||||
../pymongo/srv_resolver.py
|
||||
../pymongo/ssl_context.py
|
||||
../pymongo/ssl_match_hostname.py
|
||||
../pymongo/ssl_support.py
|
||||
../pymongo/thread_util.py
|
||||
../pymongo/topology.py
|
||||
../pymongo/topology_description.py
|
||||
../pymongo/uri_parser.py
|
||||
../pymongo/write_concern.py
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
dependency_links.txt
|
||||
requires.txt
|
||||
top_level.txt
|
||||
@@ -0,0 +1,17 @@
|
||||
|
||||
[encryption]
|
||||
pymongocrypt
|
||||
|
||||
[gssapi]
|
||||
pykerberos
|
||||
|
||||
[snappy]
|
||||
python-snappy
|
||||
|
||||
[srv]
|
||||
dnspython<2.0.0,>=1.16.0
|
||||
|
||||
[tls]
|
||||
|
||||
[zstd]
|
||||
zstandard
|
||||
@@ -0,0 +1,3 @@
|
||||
bson
|
||||
gridfs
|
||||
pymongo
|
||||
Reference in New Issue
Block a user