/todos

simple todo MVC application in plain Python

Primary LanguagePythonMIT LicenseMIT

todos

simple todo MVC application in plain Python

Installation | Getting Up And Running | Examples | See Also

todos is a simple todo MVC application in plain Python. Its purpose is: "Learn the MVC pattern by building a small app". Its features are:

  • CRUD todos.

The MVC pattern is applied as follows:

  • Model: Manages the data of an application.

  • View: A visual representation of the model.

  • Controller: Links the user and the system.

Finally, this is pretty much a direct port of Tania Rascia's MVC.js to Python using Tkinter.

Installation

# FIXME

Getting Up and Running

nox -l

Examples

See Also