pickle.Pickler.dump()
  • References/Python/Python/Data Persistence

dump(obj) Write a pickled representation of obj to the open file object given in the constructor.

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

connection This read-only attribute provides the SQLite database Connection used by the Cursor object

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

copyreg.constructor(object) Declares object to be a valid constructor. If object is not callable (and hence

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

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

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

class sqlite3.Row A Row instance serves as a highly optimized row_factory for Connection

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

object.__reduce__() The interface is currently defined as follows. The __reduce__() method takes no argument and

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

pickle.load(file, *, fix_imports=True, encoding="ASCII", errors="strict") Read a pickled object representation from the open

2025-01-10 15:47:30
pickle.Pickler.fast
  • References/Python/Python/Data Persistence

fast Deprecated. Enable fast mode if set to a true value. The fast mode disables the usage of memo, therefore speeding the pickling

2025-01-10 15:47:30
dbm.dumb.error
  • References/Python/Python/Data Persistence

exception dbm.dumb.error Raised on dbm.dumb-specific errors, such as I/O errors.

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

dbm.whichdb(filename) This function attempts to guess which of the several simple database modules available — dbm.gnu

2025-01-10 15:47:30