Filipe Ferminiano
Filipe Ferminiano

Reputation: 8791

Kivy-Python with a database

I want to build an app with Kivy/Python, but I don't know how is the connection between Kivy and MySQL. Is it like with just python? Sorry, if this question is inappropriate.

Upvotes: 3

Views: 11374

Answers (1)

alecxe
alecxe

Reputation: 473903

It's like regular python.

Kivy is a framework for building user interfaces. It's up to you how to interact with your database in your app. Consider using MVC model, where you have a nice separation of logic. Think about using sqlalchemy as your database abstraction layer.

Hope that helps.

Upvotes: 7

Related Questions