MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _has_sqlite

Method _has_sqlite

lib/sqlalchemy/testing/requirements.py:1762–1769  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1760 )
1761
1762 def _has_sqlite(self):
1763 from sqlalchemy import create_engine
1764
1765 try:
1766 create_engine("sqlite://")
1767 return True
1768 except ImportError:
1769 return False
1770
1771 @property
1772 def async_dialect(self):

Callers 1

sqliteMethod · 0.95

Calls 1

create_engineFunction · 0.90

Tested by

no test coverage detected