Create and return sqlalchemy engine.
(self)
| 93 | self._password = password |
| 94 | |
| 95 | def get_engine(self): |
| 96 | """Create and return sqlalchemy engine.""" |
| 97 | return create_engine(self.get_conn_str()) |
| 98 | |
| 99 | def get_conn_str(self): |
| 100 | """Return the connection string.""" |