Hello,
What is the difference between Mymodel.save() and Mymodel.put() in appengine with python? I know that save is used in django but does is work with appengine models too?
Hello,
What is the difference between Mymodel.save() and Mymodel.put() in appengine with python? I know that save is used in django but does is work with appengine models too?
save() is a (deprecated) alias for put(). They work exactly equivalently - in fact, they're the same function!