Rhino Python Editor - Connect to database

I have been working with python scripts in rhino for a while now and got used to saving data to .CSV files or .CFG using configparser. It works for small projects but I find it a bit hard to organize all the files when it gets to different types of information stored on multiple files. I would like to store them in a database and access them using the built in python script editor. Is there a way to do that ? Is there a better way of storing data other than .CSV/text files ?
I need to mention that at the end the scrips needs to be able to run on multiple computers without additional modifications and installs … is that even possible ?
I’m using this script to do some weights calculations using rhino objects and it must be able to be used from multiple machines at the same time.
Thank you.

You may want to use sqlite, a file based database.
See