मैं अब भी चाहता हूं कि मेरा MotorClient मॉड्यूल के शीर्ष स्तर पर हो, इसलिए मैं यही करता हूं:मैं MotorClient.get_io_loop
पैच करता हूं हमेशा वर्तमान लूप वापस करने के लिए।
import asyncio
import motor.core
from motor.motor_asyncio import (
AsyncIOMotorClient as MotorClient,
)
# MongoDB client
client = MotorClient('mongodb://localhost:27017/test')
client.get_io_loop = asyncio.get_running_loop
# The current database ("test")
db = client.get_default_database()
# async context
async def main():
posts = db.posts
await posts.insert_one({'title': 'great success!')
# Run main()
asyncio.run(main())