Recently I’ve been creating a desktop app with python, and I need somehow that the app can interact with a database from anywhere and anyone.
**But what I’m concerned is:
- I want that not every user make requests to database and read information.
- Also when reading files on database, the user should not be able to read information through HTTP request (intercepting the Request)**
Also can you guys recommend a Database platform based on my needs?
My solution that I thought was:
“Creating a server like a Node.js server and setup that server that can request data (Read and Write) to database, and through my app make requests to server by using requests Library, And also I can setup some rules to database so it can accept requests only from the server, and also limit the number of requests that a user can make to server.”
I haven’t tried anything.
Brahushi videoediting is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.