I did build an app that asks you a few questions and you pick the answer via button presses and send you to the next question in android studio, this is working perfectly.
My question is how can I go about sending this data (answered questions) to a python code im running on a PC. I want the app to send the data somehow somewhere so that my python code can get it and then put it into readable data like excel, I want to see how many times a specific answer was selected for a specific question?
I'm just looking for a simple solution for my app to store the data somewhere and the my python code retrieving it and working its magic, both sides are working perfectly I just dont have a solution for the middle. I tried setting up an SQL database but I'm not getting it right.
What could be the best solution for that ?