Created
August 13, 2016 16:01
-
-
Save nloadholtes/5cc7671f8dee96491183902abd4fd125 to your computer and use it in GitHub Desktop.
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
class Foo(Model): | |
class Meta: | |
# Here, we specify the database and collection names. | |
# A connection to your DB is automatically created. | |
database = "minimongo" | |
collection = "rocks" | |
foo = Foo.collection.find_one() | |
fname = foo.first_name | |
# Or... | |
fname = foo["first_name"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment