Lines Matching refs:bsddb
2 :mod:`bsddb` --- Interface to Berkeley DB library
5 .. module:: bsddb
10 The :mod:`bsddb` module has been removed in Python 3.
13 The :mod:`bsddb` module provides an interface to the Berkeley DB library. Users
20 The :mod:`bsddb` module requires a Berkeley DB library version from 4.0 thru
27 The website with documentation for the :mod:`bsddb.db` Python Berkeley DB
35 :mod:`bsddb.db` module which closely matches the Berkeley DB C API documented at
36 the above URLs. Additional features provided by the :mod:`bsddb.db` API include
39 The following is a description of the legacy :mod:`bsddb` interface compatible
40 with the old Python bsddb module. Starting in Python 2.5 this interface should
41 be safe for multithreaded access. The :mod:`bsddb.db` API is recommended for
44 The :mod:`bsddb` module defines the following functions that create objects that
95 DBM-style interface to the :mod:`bsddb`
114 :mod:`bsddb` module open function must be called.
142 method raises :exc:`bsddb.error` if the database is empty.
162 opened with :func:`hashopen`). This method raises :exc:`bsddb.error` if the
172 >>> import bsddb
173 >>> db = bsddb.btopen('spam.db', 'c')