How to use dbm to stash data quickly in Python

Overview

Sometimes with a program you just need a quick and dirty way to persist values across to disk. The dbm module in Python provides a native way to do this across platforms, with no more effort than you'd need to save values in a dictionary. Learn in this video the basics of how it works, and how it's been updated to use SQLite as a storage backend.

Register Now