Example #1
0
def create_book(request, name):
  book = Book(name=name)
  book.put()
  return redirect('/books/')