pickle.Unpickler
  • References/Python/Python/Data Persistence

class pickle.Unpickler(file, *, fix_imports=True, encoding="ASCII", errors="strict") This takes a binary file for reading a

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

class shelve.Shelf(dict, protocol=None, writeback=False, keyencoding='utf-8') A subclass of

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

description This read-only attribute provides the column names of the last query. To remain compatible with the Python DB API

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

executescript(sql_script) This is a nonstandard shortcut that creates a cursor object by calling the cursor() method

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

class pickle.Pickler(file, protocol=None, *, fix_imports=True) This takes a binary file for writing a pickle data stream.

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

dbm.open(file, flag='r', mode=0o666) Open the database file file and return a corresponding object.

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

gdbm.reorganize() If you have carried out a lot of deletions and would like to shrink the space used by the gdbm

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

dispatch_table A pickler object’s dispatch table is a registry of reduction functions of the kind which can be declared

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

execute(sql[, parameters]) Executes an SQL statement. The SQL statement may be parameterized (i. e. placeholders instead of

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

lastrowid This read-only attribute provides the rowid of the last modified row. It is only set if you issued an INSERT

2025-01-10 15:47:30