This chapter covers one of the most important aspects of REST application development, that is, connecting and interacting with database systems. In this chapter, we’ll discuss about NoSQL and SQL databases, connecting and interacting with them.
- 1.
NoSQL vs. SQL databases
- 2.
Connecting with Flask-SQLAlchemy
- 3.
Interacting with MySQL DB using Flask-SQLAlchemy
- 4.
Connecting with Flask-MongoEngine
- 5.
Interacting with MongoDB using Flask-MongoEngine
Introduction
Flask being a microframework provides flexibility of the data source for applications ...