View Single Post
thp's Avatar
Posts: 1,391 | Thanked: 4,272 times | Joined on Sep 2007 @ Vienna, Austria
#38
Originally Posted by Saturn View Post
Unfortunately, I haven't found a good tutorial on sql and python yet.
Python provides the sqlite3 module which makes it easy to create a single-file database. If you want it even more comfortable, feel free to use minidb which is a minimalistic data store for simple Python objects that uses SQLite3 as the backend, but exposes a nicer API (while still allowing to access the underlying DB if you choose to).

Plus, Stack Overflow has an answer to your question: comprehensive beginner's tutorial for python and sqlite?
 

The Following User Says Thank You to thp For This Useful Post: