I have a bytestring that holds the contents of a valid sqlite3 database. I have to save this bytestring to a file and call:
conn=sqlite3.connect("FILE_NAME")
I would rather not have to save this string to a file because I already have it in memory. Is there any way to create the connection object without this intermediate step?
Thanks.
This is Python 3.