Created
November 1, 2019 15:22
-
-
Save NMZivkovic/4c68578a315c7a7bbc6db0b6a9344095 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 User(Document): | |
name = StringField(required=True, max_length=50) | |
age = IntField(required=True) | |
blog = StringField(required=True, max_length=50) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment