-
-
Save zmsmith/9003138 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
from test.app import DecisionDocument, TrialDocument | |
subdoc = DecisionDocument(guilt='definitely', details={'bad_person_score': 'Very Bad Man'}) | |
doc = TrialDocument(decision=[subdoc], reporter='Tom', jury='peers') | |
doc.save() | |
# -----Object Created------ | |
{ | |
"_id" : ObjectId("4f32c2f4d0ba3a4b5e000000"), | |
"ju" : "peers", | |
"r" : "Tom", | |
"d" : [ | |
{ | |
"d" : { | |
"bad_person_score" : "Very Bad Man" | |
}, | |
"g" : "definitely" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment