Untitled

 avatar
unknown
plain_text
a year ago
194 B
2
Indexable
from pymongo import MongoClient

# Connect to the MongoDB server
client = MongoClient('localhost', 27017)

# Get the database and collection instances
db = client['lpaksgf']
coll = db['example']
Leave a Comment