MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

como converter string hexadecimal em ObjectId em Python


Importar ObjectId:
from bson import ObjectId

De ObjectId para string:
oid = ObjectId()
oid_str = str(oid)
# oid_str is now '555fc7956cda204928c9dbab'

Da string para o ObjectId:
oid_str = '555fc7956cda204928c9dbab'
oid2 = ObjectId(oid_str)
print(repr(oid2))
# ObjectId('555fc7956cda204928c9dbab')