Tim Jacobi

Results 14 comments of Tim Jacobi

Could you please be a little bit more specific about the input. What part of your post would you like to have converted to recirculation ads? How do you do...

Thank you for clarifying this. Sorry to hear you're having a bad time getting this integrated. We don't currently support this but I will add it to the list of...

How about supporting multiple and shipping a default like cycle.js does?

Your code does not throw an error because you are saving the same object twice. class User(Document): username= StringField(required=True,max_length=10) email = StringField(required=True,unique=True) password= StringField(max_length=250,required=True) u =User('xxx','[email protected]','123') u.save() u2 =User('xxx','[email protected]','123') u2.save()...