SQLAlchemy for absolute beginners

Creating a database engine and execute SQL from Python

Mike Huls
Towards Data Science
5 min readOct 17, 2022

--

Some proper Alchemy (image by Elena Mozhvilo on Unsplash)

SqlAlchemy is a simple and quick way to allow Python to work with data from databases. It’s very simple to create a connection to your database with an engine. In addition its very easy to query your database and retrieve data with the engine and ORM.

--

--