DEV Community

importostar
importostar

Posted on

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!

Top comments (0)