package documentation

Wrapper for sqlite3.

The wrapper provides some reasonable defaults for sqlite3 connections and ensures that modify operations do not fail because of locking.

From __init__.py:

Function connect Undocumented
Class _ConnectionWrapper Undocumented
Constant _LOCK_RETRY_ATTEMPTS Undocumented
Constant _LOCK_WAIT_TIME Undocumented
_LOCK_RETRY_ATTEMPTS: int = (source)

Undocumented

Value
10
_LOCK_WAIT_TIME: float = (source)

Undocumented

Value
0.05
def connect(database) -> _ConnectionWrapper: (source)

Undocumented