MCPcopy Create free account
hub / github.com/Apress/python-for-matlab-development / find_one

Function find_one

code/matlab_py/bridge_mongo.py:39–41  ·  view source on GitHub ↗
(db, database, kwargs)

Source from the content-addressed store, hash-verified

37 return result
38
39def find_one(db, database, kwargs):
40 x = db[database].find_one(**kwargs)
41 return x
42
43def delete_many(db, database, kwargs):
44 x = db[database].delete_many(**kwargs)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected