77 lines
2.2 KiB
Python
77 lines
2.2 KiB
Python
# Copyright 2011-2015 MongoDB, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
"""Asyncio support for Motor, an asynchronous driver for MongoDB."""
|
|
from . import core, motor_gridfs
|
|
from .frameworks import asyncio as asyncio_framework
|
|
from .metaprogramming import T, create_class_with_framework
|
|
|
|
__all__ = [
|
|
"AsyncIOMotorClient",
|
|
"AsyncIOMotorClientSession",
|
|
"AsyncIOMotorDatabase",
|
|
"AsyncIOMotorCollection",
|
|
"AsyncIOMotorCursor",
|
|
"AsyncIOMotorCommandCursor",
|
|
"AsyncIOMotorChangeStream",
|
|
"AsyncIOMotorGridFSBucket",
|
|
"AsyncIOMotorGridIn",
|
|
"AsyncIOMotorGridOut",
|
|
"AsyncIOMotorGridOutCursor",
|
|
"AsyncIOMotorClientEncryption",
|
|
]
|
|
|
|
|
|
def create_asyncio_class(cls: T) -> T:
|
|
return create_class_with_framework(cls, asyncio_framework, "motor.motor_asyncio")
|
|
|
|
|
|
AsyncIOMotorClient = create_asyncio_class(core.AgnosticClient)
|
|
|
|
|
|
AsyncIOMotorClientSession = create_asyncio_class(core.AgnosticClientSession)
|
|
|
|
|
|
AsyncIOMotorDatabase = create_asyncio_class(core.AgnosticDatabase)
|
|
|
|
|
|
AsyncIOMotorCollection = create_asyncio_class(core.AgnosticCollection)
|
|
|
|
|
|
AsyncIOMotorCursor = create_asyncio_class(core.AgnosticCursor)
|
|
|
|
|
|
AsyncIOMotorCommandCursor = create_asyncio_class(core.AgnosticCommandCursor)
|
|
|
|
|
|
AsyncIOMotorLatentCommandCursor = create_asyncio_class(core.AgnosticLatentCommandCursor)
|
|
|
|
|
|
AsyncIOMotorChangeStream = create_asyncio_class(core.AgnosticChangeStream)
|
|
|
|
|
|
AsyncIOMotorGridFSBucket = create_asyncio_class(motor_gridfs.AgnosticGridFSBucket)
|
|
|
|
|
|
AsyncIOMotorGridIn = create_asyncio_class(motor_gridfs.AgnosticGridIn)
|
|
|
|
|
|
AsyncIOMotorGridOut = create_asyncio_class(motor_gridfs.AgnosticGridOut)
|
|
|
|
|
|
AsyncIOMotorGridOutCursor = create_asyncio_class(motor_gridfs.AgnosticGridOutCursor)
|
|
|
|
|
|
AsyncIOMotorClientEncryption = create_asyncio_class(core.AgnosticClientEncryption)
|