Data Storing Issues

Hi this is RM MUSIC.

Currently, I am working on a project, which requires a criterion of storing data in any format ( I presume to be a high-level format, I mean to say that the format which tech companies use ).

I have researched on python modules for it, but seems to be pretty tough to choose one to work on it.

If anyone can guide me about this topic, it would be helpful for me.

If anyone please tell me how to use such modules, it would be great.

Yours truly,
RM MUSIC.

@mondalraif450 My friend. I suggest starting out with Sqlite3. It is easy to learn and it is built into Python. Look up a tutorial online. Sqlite3 is a great database for beginners and one that can even be used for businesses.

Start your program like this:

import sqlite3

conn = sqlite3.connect('mydatabase.db')

conn.close()
1 Like