Staging
v0.5.1
https://github.com/python/cpython
Revision 227a4232e6580891d3ee74b25888685a3c436fe2 authored by Guido van Rossum on 10 March 1995, 14:42:57 UTC, committed by Guido van Rossum on 10 March 1995, 14:42:57 UTC
1 parent fc8a01f
Raw File
Tip revision: 227a4232e6580891d3ee74b25888685a3c436fe2 authored by Guido van Rossum on 10 March 1995, 14:42:57 UTC
the usual
Tip revision: 227a423
anydbm.py
"""A generic interface to all dbm clones.

Instead of

	import dbm
	d = dbm.open(file, 'rw', 0666)

use

	import anydbm
	d = anydbm.open(file)

The returned object is a dbm, gdbm or (on the Mac) dbmac object,
dependent on availability of the modules (tested in this order).

It has the following interface (key and data are strings):

	d[key] = data	# store data at key (may override data at
			# existing key)
	data = d[key]	# retrieve data at key (raise KeyError if no
			# such key)
	del d[key]	# delete data stored at key (raises KeyError
			# if no such key)
	flag = d.has_key(key)	# true if the key exists
	list = d.keys()	# return a list of all existing keys (slow!)

Future versions may change the order in which implementations are
tested for existence, add interfaces to other db-like implementations
(e.g. BSD Hash), and (in the presence of multiple implementations)
decide which module to use based upon the extension or contents of an
existing database file.

The open function has an optional second argument.  This can be set to
'r' to open the database for reading only.  Don't pas an explicit 'w'
or 'rw' to open it for writing, as the different interfaces have
different interpretation of their mode argument if it isn't 'r'.
"""

try:
	import dbm
	def open(filename, mode = 'rw'):
		return dbm.open(filename, mode, 0666)
except ImportError:
	try:
		import gdbm
		def open(filename, mode = 'w'):
			return gdbm.open(filename, mode, 0666)
	except ImportError:
		import dbmac
		open = dbmac.open
back to top