Hello everyone, I'm developing a react native application using Expo, it will display different data, preprocessed and cleaned with Python, along with sentiments analysis on tweets regarding a specific topic.
What is the best way to do that? I read about using RESTful API with Flask but after some reading I don't think it will serve this purpose.
Thank you in advance.
littlepsylo
Software engineering
My 2 cents, but i think you're right with a rest api, if you aren't familiar with backend services. You could take python and/or node for the backend, as you're already using this last on your app. Both of them are good ;)
In another side, your api is processed with python (powerfull for data processing) and served with node (more easily i think)