Skip to content
#

model-view-controller

The term MVC stands for Model-View-Controller. MVC is a software design pattern that separates an application's logic according to responsibilities: The model manages the application's data structure, the view manages how information is represented in the user interface, and the controller accepts input and dispatches commands to the model and the view.

Here are 33 public repositories matching this topic...

Built out the data models and database for the fictitious startup Fy-yur artist/venue booking application. used SQLAlchemy and Postgresql to build out the data models upon which this site will rely. Raw SQL and SQLAlchemy commands were written out to run for powering the backend functionality of the website.

  • Updated May 4, 2021
  • Python