DEV Community

Ghost
Ghost

Posted on • Originally published at Medium on

Implementing Model Class Inheritance in SQLAlchemy

Implementing Model Class Inheritance in SQLAlchemy (with Flask)

SQLAlchemy is an Object-relational mapping (ORM) made for the Python programming language. ORMs in theory allow programmers to abstract away SQL. In simple terms they allow us to interact with a database using purely Python (objects/functions). I will be using the flask-SQLAlchemy extension for my examples.

Each table is referred to as a model, each model is simply just a python class and each attribute of that class becomes a column in an SQL table. The database is made up of multiple models. Just like with normal Python models can inherit from other models and share attributes with the parent model. This is very useful if you going to have models that will store similar types of data.

models.py

models.py

Taking a look at the models.py module, we define an abstract class called Pets. Which means SQLAlchemy will not create a table for that model. Our next two models Cats and Dogs inherit all the attributes form Pets. So Cats and Dog tables will each have a column called name, price and breed.

The main advantage of this is if you ever need to change the models you just have to change it in once place. The more models that inherit from the base model.

__init__.py

__init__.py

Above is an example __init__.py file to initialise the database and create all the database tables from the models. That’s it folks, thanks for reading.

Please note there are other ways to implement inheritance with SQLAlchemy, I personally found this way to be the cleanest in terms of code readability.

Appendix

Top comments (1)

Collapse
 
abdurrahmaanj profile image
Abdur-Rahmaan Janhangeer

Feels just like normal Python code!