TNB
TNB

Reputation: 15

Is there a Python alternative for sqlite3 which doesn't use a database?

I was working with sqlite3, but it takes way too long to connect to a database.

I don't have that much data, so I was wondering if there was an alternative which doesn't connect to anything, just uses variables.

If there is a module for that please could you let me know? Thanks.

Upvotes: 1

Views: 311

Answers (1)

The Thonnu
The Thonnu

Reputation: 3624

You might want to check out the python library badsql

You can read the documentation here

Upvotes: 1

Related Questions