Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Created November 4, 2019 15:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Allwin12/d41de786cb1b828ff1d050f0884db0e1 to your computer and use it in GitHub Desktop.
Save Allwin12/d41de786cb1b828ff1d050f0884db0e1 to your computer and use it in GitHub Desktop.
Flask SQLAlchemy insert operation
book = Book(name="The monk who sold his ferrari", author="Robin Sharma", published="1997-03-04")
db.session.add(book)
db.session.commit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment