copyreg.pickle()
  • References/Python/Python/Data Persistence

copyreg.pickle(type, function, constructor=None) Declares that function should be used as a “reduction” function for

2025-01-10 15:47:30
object.
  • References/Python/Python/Data Persistence

object.__getnewargs__() This method serve a similar purpose as __getnewargs_ex__() but for protocols 2 and newer

2025-01-10 15:47:30
sqlite3.Connection.load_extension()
  • References/Python/Python/Data Persistence

load_extension(path) This routine loads a SQLite extension from a shared library. You have to enable extension loading with

2025-01-10 15:47:30
sqlite3.Connection.set_authorizer()
  • References/Python/Python/Data Persistence

set_authorizer(authorizer_callback) This routine registers a callback. The callback is invoked for each attempt to access a

2025-01-10 15:47:30
sqlite3.version_info
  • References/Python/Python/Data Persistence

sqlite3.version_info The version number of this module, as a tuple of integers. This is not the version of the SQLite library

2025-01-10 15:47:30
sqlite3.Connection.set_trace_callback()
  • References/Python/Python/Data Persistence

set_trace_callback(trace_callback) Registers trace_callback to be called for each SQL statement that is actually executed

2025-01-10 15:47:30
object.
  • References/Python/Python/Data Persistence

object.__reduce_ex__(protocol) Alternatively, a __reduce_ex__() method may be defined. The only difference is this

2025-01-10 15:47:30
marshal.load()
  • References/Python/Python/Data Persistence

marshal.load(file) Read one value from the open file and return it. If no valid value is read (e.g. because the data has a different

2025-01-10 15:47:30
dbm.gnu.open()
  • References/Python/Python/Data Persistence

dbm.gnu.open(filename[, flag[, mode]]) Open a gdbm database and return a gdbm object. The filename

2025-01-10 15:47:30
sqlite3.Connection.cursor()
  • References/Python/Python/Data Persistence

cursor([cursorClass]) The cursor method accepts a single optional parameter cursorClass. If supplied, this must be

2025-01-10 15:47:30