Kivy-Python with a database
database, kivy, python
Solution
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.
Problem
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.