blob: 7c2d660f4a457130e49f3a72e5eecbada1f61b7b [file] [log] [blame]
Georg Brandl0a7ac7d2008-05-26 10:29:35 +00001:mod:`dbm` --- Interfaces to Unix "databases"
2=============================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
4.. module:: dbm
Georg Brandl0a7ac7d2008-05-26 10:29:35 +00005 :synopsis: Interfaces to various Unix "database" formats.
6
7:mod:`dbm` is a generic interface to variants of the DBM database ---
Benjamin Peterson905aa662008-09-08 21:35:37 +00008 :mod:`dbm.gnu` or :mod:`dbm.ndbm`. If none of these modules is installed, the
9 slow-but-simple implementation in module :mod:`dbm.dumb` will be used. There
10 is a `third party interface <http://www.jcea.es/programacion/pybsddb.htm>`_ to
11 the Oracle Berkely DB.
Georg Brandl0a7ac7d2008-05-26 10:29:35 +000012
13
14.. exception:: error
15
16 A tuple containing the exceptions that can be raised by each of the supported
17 modules, with a unique exception also named :exc:`dbm.error` as the first
18 item --- the latter is used when :exc:`dbm.error` is raised.
19
20
21.. function:: whichdb(filename)
22
23 This functionattempts to guess which of the several simple database modules
24 available --- :mod:`dbm.bsd`, :mod:`dbm.gnu`, :mod:`dbm.ndbm` or
25 :mod:`dbm.dumb` --- should be used to open a given file.
26
27 Returns one of the following values: ``None`` if the file can't be opened
28 because it's unreadable or doesn't exist; the empty string (``''``) if the
29 file's format can't be guessed; or a string containing the required module
30 name, such as ``'dbm.ndbm'`` or ``'dbm.gnu'``.
31
32
Georg Brandlc2a4f4f2009-04-10 09:03:43 +000033.. function:: open(filename, flag='r', mode=0o666)
Georg Brandl0a7ac7d2008-05-26 10:29:35 +000034
35 Open the database file *filename* and return a corresponding object.
36
37 If the database file already exists, the :func:`whichdb` function is used to
38 determine its type and the appropriate module is used; if it does not exist,
39 the first module listed above that can be imported is used.
40
Georg Brandl1a040582009-05-25 21:15:01 +000041 The optional *flag* argument can be:
42
43 +---------+-------------------------------------------+
44 | Value | Meaning |
45 +=========+===========================================+
46 | ``'r'`` | Open existing database for reading only |
47 | | (default) |
48 +---------+-------------------------------------------+
49 | ``'w'`` | Open existing database for reading and |
50 | | writing |
51 +---------+-------------------------------------------+
52 | ``'c'`` | Open database for reading and writing, |
53 | | creating it if it doesn't exist |
54 +---------+-------------------------------------------+
55 | ``'n'`` | Always create a new, empty database, open |
56 | | for reading and writing |
57 +---------+-------------------------------------------+
Georg Brandl0a7ac7d2008-05-26 10:29:35 +000058
59 The optional *mode* argument is the Unix mode of the file, used only when the
60 database has to be created. It defaults to octal ``0o666`` (and will be
61 modified by the prevailing umask).
62
63
64The object returned by :func:`open` supports most of the same functionality as
65dictionaries; keys and their corresponding values can be stored, retrieved, and
66deleted, and the :keyword:`in` operator and the :meth:`keys` method are
Brett Cannon7317c1e2008-11-25 19:19:17 +000067available. Key and values are always stored as bytes. This means that when
68strings are used they are implicitly converted to the default encoding before
69being stored.
Georg Brandl0a7ac7d2008-05-26 10:29:35 +000070
71The following example records some hostnames and a corresponding title, and
72then prints out the contents of the database::
73
74 import dbm
75
76 # Open database, creating it if necessary.
77 db = dbm.open('cache', 'c')
78
79 # Record some values
Brett Cannon7317c1e2008-11-25 19:19:17 +000080 db[b'hello'] = b'there'
Georg Brandl0a7ac7d2008-05-26 10:29:35 +000081 db['www.python.org'] = 'Python Website'
82 db['www.cnn.com'] = 'Cable News Network'
83
Brett Cannon7317c1e2008-11-25 19:19:17 +000084 # Note that the keys are considered bytes now.
85 assert db[b'www.python.org'] == b'Python Website'
86 # Notice how the value is now in bytes.
87 assert db['www.cnn.com'] == b'Cable News Network'
88
Georg Brandl0a7ac7d2008-05-26 10:29:35 +000089 # Loop through contents. Other dictionary methods
90 # such as .keys(), .values() also work.
91 for k, v in db.iteritems():
92 print(k, '\t', v)
93
94 # Storing a non-string key or value will raise an exception (most
95 # likely a TypeError).
96 db['www.yahoo.com'] = 4
97
98 # Close when done.
99 db.close()
100
101
102.. seealso::
103
104 Module :mod:`shelve`
105 Persistence module which stores non-string data.
106
107
108The individual submodules are described in the following sections.
109
110
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000111:mod:`dbm.gnu` --- GNU's reinterpretation of dbm
112------------------------------------------------
113
114.. module:: dbm.gnu
115 :platform: Unix
116 :synopsis: GNU's reinterpretation of dbm.
117
118
119This module is quite similar to the :mod:`dbm` module, but uses the GNU library
120``gdbm`` instead to provide some additional functionality. Please note that the
Brett Cannon7317c1e2008-11-25 19:19:17 +0000121file formats created by :mod:`dbm.gnu` and :mod:`dbm.ndbm` are incompatible.
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000122
123The :mod:`dbm.gnu` module provides an interface to the GNU DBM library.
Brett Cannon7317c1e2008-11-25 19:19:17 +0000124``dbm.gnu.gdbm`` objects behave like mappings (dictionaries), except that keys and
125values are always converted to bytes before storing. Printing a ``gdbm``
126object doesn't print the
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000127keys and values, and the :meth:`items` and :meth:`values` methods are not
128supported.
129
130.. exception:: error
131
Brett Cannon7317c1e2008-11-25 19:19:17 +0000132 Raised on :mod:`dbm.gnu`-specific errors, such as I/O errors. :exc:`KeyError` is
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000133 raised for general mapping errors like specifying an incorrect key.
134
135
Georg Brandlc2a4f4f2009-04-10 09:03:43 +0000136.. function:: open(filename[, flag[, mode]])
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000137
138 Open a ``gdbm`` database and return a :class:`gdbm` object. The *filename*
139 argument is the name of the database file.
140
141 The optional *flag* argument can be:
142
143 +---------+-------------------------------------------+
144 | Value | Meaning |
145 +=========+===========================================+
146 | ``'r'`` | Open existing database for reading only |
147 | | (default) |
148 +---------+-------------------------------------------+
149 | ``'w'`` | Open existing database for reading and |
150 | | writing |
151 +---------+-------------------------------------------+
152 | ``'c'`` | Open database for reading and writing, |
153 | | creating it if it doesn't exist |
154 +---------+-------------------------------------------+
155 | ``'n'`` | Always create a new, empty database, open |
156 | | for reading and writing |
157 +---------+-------------------------------------------+
158
159 The following additional characters may be appended to the flag to control
160 how the database is opened:
161
162 +---------+--------------------------------------------+
163 | Value | Meaning |
164 +=========+============================================+
165 | ``'f'`` | Open the database in fast mode. Writes |
166 | | to the database will not be synchronized. |
167 +---------+--------------------------------------------+
168 | ``'s'`` | Synchronized mode. This will cause changes |
169 | | to the database to be immediately written |
170 | | to the file. |
171 +---------+--------------------------------------------+
172 | ``'u'`` | Do not lock database. |
173 +---------+--------------------------------------------+
174
175 Not all flags are valid for all versions of ``gdbm``. The module constant
176 :const:`open_flags` is a string of supported flag characters. The exception
177 :exc:`error` is raised if an invalid flag is specified.
178
179 The optional *mode* argument is the Unix mode of the file, used only when the
Georg Brandlf4a41232008-05-26 17:55:52 +0000180 database has to be created. It defaults to octal ``0o666``.
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000181
182 In addition to the dictionary-like methods, ``gdbm`` objects have the
183 following methods:
184
185 .. method:: gdbm.firstkey()
186
187 It's possible to loop over every key in the database using this method and the
188 :meth:`nextkey` method. The traversal is ordered by ``gdbm``'s internal
189 hash values, and won't be sorted by the key values. This method returns
190 the starting key.
191
192 .. method:: gdbm.nextkey(key)
193
194 Returns the key that follows *key* in the traversal. The following code prints
195 every key in the database ``db``, without having to create a list in memory that
196 contains them all::
197
198 k = db.firstkey()
199 while k != None:
200 print(k)
201 k = db.nextkey(k)
202
203 .. method:: gdbm.reorganize()
204
205 If you have carried out a lot of deletions and would like to shrink the space
206 used by the ``gdbm`` file, this routine will reorganize the database. ``gdbm``
Brett Cannon7317c1e2008-11-25 19:19:17 +0000207 objects will not shorten the length of a database file except by using this
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000208 reorganization; otherwise, deleted file space will be kept and reused as new
209 (key, value) pairs are added.
210
211 .. method:: gdbm.sync()
212
213 When the database has been opened in fast mode, this method forces any
214 unwritten data to be written to the disk.
215
216
217:mod:`dbm.ndbm` --- Interface based on ndbm
218-------------------------------------------
219
220.. module:: dbm.ndbm
Georg Brandl116aa622007-08-15 14:28:22 +0000221 :platform: Unix
222 :synopsis: The standard "database" interface, based on ndbm.
223
224
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000225The :mod:`dbm.ndbm` module provides an interface to the Unix "(n)dbm" library.
226Dbm objects behave like mappings (dictionaries), except that keys and values are
Brett Cannon7317c1e2008-11-25 19:19:17 +0000227always stored as bytes. Printing a ``dbm`` object doesn't print the keys and
228values, and the :meth:`items` and :meth:`values` methods are not supported.
Georg Brandl116aa622007-08-15 14:28:22 +0000229
230This module can be used with the "classic" ndbm interface, the BSD DB
231compatibility interface, or the GNU GDBM compatibility interface. On Unix, the
232:program:`configure` script will attempt to locate the appropriate header file
233to simplify building this module.
234
Georg Brandl116aa622007-08-15 14:28:22 +0000235.. exception:: error
236
Brett Cannon7317c1e2008-11-25 19:19:17 +0000237 Raised on :mod:`dbm.ndbm`-specific errors, such as I/O errors. :exc:`KeyError` is raised
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000238 for general mapping errors like specifying an incorrect key.
Georg Brandl116aa622007-08-15 14:28:22 +0000239
240
241.. data:: library
242
243 Name of the ``ndbm`` implementation library used.
244
245
246.. function:: open(filename[, flag[, mode]])
247
Brett Cannon7317c1e2008-11-25 19:19:17 +0000248 Open a dbm database and return a ``dbm`` object. The *filename* argument is the
Georg Brandl116aa622007-08-15 14:28:22 +0000249 name of the database file (without the :file:`.dir` or :file:`.pag` extensions;
250 note that the BSD DB implementation of the interface will append the extension
251 :file:`.db` and only create one file).
252
253 The optional *flag* argument must be one of these values:
254
255 +---------+-------------------------------------------+
256 | Value | Meaning |
257 +=========+===========================================+
258 | ``'r'`` | Open existing database for reading only |
259 | | (default) |
260 +---------+-------------------------------------------+
261 | ``'w'`` | Open existing database for reading and |
262 | | writing |
263 +---------+-------------------------------------------+
264 | ``'c'`` | Open database for reading and writing, |
265 | | creating it if it doesn't exist |
266 +---------+-------------------------------------------+
267 | ``'n'`` | Always create a new, empty database, open |
268 | | for reading and writing |
269 +---------+-------------------------------------------+
270
271 The optional *mode* argument is the Unix mode of the file, used only when the
Georg Brandlf4a41232008-05-26 17:55:52 +0000272 database has to be created. It defaults to octal ``0o666`` (and will be
Georg Brandl116aa622007-08-15 14:28:22 +0000273 modified by the prevailing umask).
274
275
Georg Brandl116aa622007-08-15 14:28:22 +0000276
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000277:mod:`dbm.dumb` --- Portable DBM implementation
278-----------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000279
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000280.. module:: dbm.dumb
281 :synopsis: Portable implementation of the simple DBM interface.
Georg Brandl116aa622007-08-15 14:28:22 +0000282
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000283.. index:: single: databases
Georg Brandl116aa622007-08-15 14:28:22 +0000284
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000285.. note::
286
287 The :mod:`dbm.dumb` module is intended as a last resort fallback for the
Brett Cannon7317c1e2008-11-25 19:19:17 +0000288 :mod:`dbm` module when a more robust module is not available. The :mod:`dbm.dumb`
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000289 module is not written for speed and is not nearly as heavily used as the other
290 database modules.
291
292The :mod:`dbm.dumb` module provides a persistent dictionary-like interface which
Brett Cannon7317c1e2008-11-25 19:19:17 +0000293is written entirely in Python. Unlike other modules such as :mod:`dbm.gnu` no
Benjamin Peterson9a46cab2008-09-08 02:49:30 +0000294external library is required. As with other persistent mappings, the keys and
Brett Cannon7317c1e2008-11-25 19:19:17 +0000295values are always stored as bytes.
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000296
297The module defines the following:
298
299
300.. exception:: error
301
Brett Cannon7317c1e2008-11-25 19:19:17 +0000302 Raised on :mod:`dbm.dumb`-specific errors, such as I/O errors. :exc:`KeyError` is
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000303 raised for general mapping errors like specifying an incorrect key.
304
305
306.. function:: open(filename[, flag[, mode]])
307
Brett Cannon7317c1e2008-11-25 19:19:17 +0000308 Open a ``dumbdbm`` database and return a dumbdbm object. The *filename* argument is
Georg Brandl0a7ac7d2008-05-26 10:29:35 +0000309 the basename of the database file (without any specific extensions). When a
310 dumbdbm database is created, files with :file:`.dat` and :file:`.dir` extensions
311 are created.
312
313 The optional *flag* argument is currently ignored; the database is always opened
314 for update, and will be created if it does not exist.
315
316 The optional *mode* argument is the Unix mode of the file, used only when the
317 database has to be created. It defaults to octal ``0o666`` (and will be modified
318 by the prevailing umask).
319
320 In addition to the methods provided by the :class:`collections.MutableMapping` class,
321 :class:`dumbdbm` objects provide the following method:
322
323 .. method:: dumbdbm.sync()
324
325 Synchronize the on-disk directory and data files. This method is called
326 by the :meth:`Shelve.sync` method.