- Flask Framework Cookbook
- Shalabh Aggarwal
- 177字
- 2021-08-05 17:17:23
Introduction
Flask has been designed to be flexible enough to support any database. The simplest way would be to use the direct sqlite3 package, which is a DB-API 2.0 interface and does not actually give an ORM. Here, we will use SQL queries to talk with the database. This approach is not suggested for large projects as it can eventually become a nightmare to maintain the application. Also, with this approach, the models are virtually non-existent and everything happens in the view functions, where we write queries to interact with the DB.
In this chapter, we will talk about creating an ORM layer for our Flask applications with SQLAlchemy for relational database systems, which is recommended and widely used for applications of any size. Also, we will have a glance over how to write a Flask app with the NoSQL database system.
Note
ORM refers to Object Relational Mapping/Modeling and implies how our application's data models store and deal with data at a conceptual level. A powerful ORM makes designing and querying business logic easy and streamlined.
- Advanced Machine Learning with Python
- 軟件界面交互設(shè)計基礎(chǔ)
- Dynamics 365 Application Development
- Apache Spark Graph Processing
- C/C++常用算法手冊(第3版)
- Visual Basic程序設(shè)計習(xí)題解答與上機(jī)指導(dǎo)
- Python Network Programming Cookbook(Second Edition)
- Big Data Analytics
- Visual C++應(yīng)用開發(fā)
- Unity 2018 Shaders and Effects Cookbook
- Machine Learning for Developers
- 從Excel到Python數(shù)據(jù)分析:Pandas、xlwings、openpyxl、Matplotlib的交互與應(yīng)用
- Python機(jī)器學(xué)習(xí)開發(fā)實(shí)戰(zhàn)
- HTML5與CSS3權(quán)威指南
- Responsive Web Design with jQuery