MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

RuntimeError:attività collegata a un ciclo diverso

Voglio che il mio MotorClient sia ancora al livello più alto del modulo, quindi questo è quello che faccio:aggiusto MotorClient.get_io_loop per restituire sempre il ciclo corrente.

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())