This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pymongo | |
| from pymongo import Connection | |
| from pymongo.dbref import DBRef | |
| from pymongo.database import Database | |
| # connect | |
| connection = Connection() | |
| db = Database(connection, "things") | |
| # clean up |
NewerOlder