If you want to use 8-bit strings instead of unicode string in sqlite3, set appropriate text_factory for sqlite connection:
connection = sqlite3.connect(...)
connection.text_factory = str
If you want to use 8-bit strings instead of unicode string in sqlite3, set appropriate text_factory for sqlite connection:
connection = sqlite3.connect(...)
connection.text_factory = str