Reputation: 8791
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
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