How can I manage a small database without mysql server?

I have a small project:

I want to create a system for managing a small library (with 3,000 books or so)

My idea was to use python with pymysql, but that would require installing a mysql server on the PC that will run this system.

My idea is to have one file with all the information about the books, I can work with the excel file, but what is your recommendation?

Thank you, sorry for my English.

+4
source share
1 answer

I would recommend using SQLite and the dataset package: https://github.com/pudo/dataset

, -

+1

All Articles