execute DBT models with python runner dynamically

I recently came across python models in DBT and DBTRunner

if there any way that we can combine both in one py model?
It will run model names to be executed from a table and execute them

As per my experience: You can try creating a Python script that searches a table to get the model names.
Use a loop to cycle between these names and apply the necessary processing functions from dbt and dbt runner.

Let me know about the result :smiling_face_with_three_hearts: