The size and scale of your database is not very large, and it is within almost any turnkey database solution.
Basically, what you are going to do is install the database server on your computer, and it will appear on that port. You can then install the library in Python to access it.
For example, if you want to use Postgresql, you install it on your computer and it will be connected to some port, for example 5000 or port 5432.
But if you have information that you are going to store and retrieve, you probably want to go with a NoSQL solution, because it is very simple.
For example, you can install mongodb on your server, and then install pymongo . A tutorial for pymongo will teach you almost everything you need for your application.
source share