Which database is suitable for Python Flask?

importostar

importostar

Posted on July 7, 2020

Which database is suitable for Python Flask?

Learn Flask, Python Web Development

Flask is a micro framework, this means you can develop your app but you're not forced into a certain architecture like django does.

So you can use any database system like sqlite, mysql or even an object relational manager, but you don't have to. You are free to create your own app design, you can even chose not to use a database at all.

You can add any Python modules to your Python Flask web app!

💖 💪 🙅 🚩
importostar
importostar

Posted on July 7, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related