scap.spiderpig.engine(): Support connect_args parameter
scap.spiderpig.engine()
now accepts an optional connect_args
parameter (which defaults to an empty dictionary). This is used by
spiderpig/api.py
to create an engine with
connect_args={"check_same_thread": False}
. This is recommended by
the FastAPI documentation when using sqlite.