marshal.dumps()
  • References/Python/Python/Data Persistence

marshal.dumps(value[, version]) Return the string that would be written to a file by dump(value, file). The value

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

isolation_level Get or set the current isolation level.

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

sqlite3.sqlite_version The version number of the run-time SQLite library, as a string.

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

gdbm.close() Close the gdbm database.

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

gdbm.nextkey(key) Returns the key that follows key in the traversal. The following code prints every key in the database

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

exception pickle.PicklingError Error raised when an unpicklable object is encountered by Pickler. It inherits

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

iterdump() Returns an iterator to dump the database in an SQL text format. Useful when saving an in-memory database for later

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

shelve.open(filename, flag='c', protocol=None, writeback=False) Open a persistent dictionary. The filename specified is the

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

marshal.version Indicates the format that the module uses. Version 0 is the historical format, version 1 shares interned strings

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

pickle.loads(bytes_object, *, fix_imports=True, encoding="ASCII", errors="strict") Read a pickled object hierarchy from a

2025-01-10 15:47:30