Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i manage a small database without a mysql server? [closed]

I have a little project:

I want to make a system to manage a small library ( with 3000 books or so )

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

My idea is to have one file with all the information of the books, i can work with an excel file, but what is your recomendation ?

Thanks , sorry about my english.

like image 780
kamiyann Avatar asked Oct 27 '25 06:10

kamiyann


1 Answers

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

easy and fast until you need something more complex

like image 92
penchant Avatar answered Oct 28 '25 19:10

penchant