CRAS programming for jars without SQLAlchemy or other ORMs

I am learning Python / Flask. Now I am at the point where I am learning Flask with a MySQL database. I read a lot of posts about Flask databases, and most of them suggest using SQLAlchemy. I tried to read SQLAlchemy, but I did not like it, because I prefer to create and execute SQL queries and only create tables in the database. Is there a way that I can take full advantage of using Flask with mySQL Database without SQLAlchemy?

Please offer.

+4
source share
1 answer

You do not need to use SQLAlchemy, no. You just need to connect to the database in Flask and execute your queries manually.

MySQL Python SQLite. , MySQL.

+3

Source: https://habr.com/ru/post/1584355/


All Articles