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.
source
share