Python

  • This is the eighth article in the Flask TodoMVC tutorial. In this article, we reorganize our app into a package and introduce Flask Blueprints and application factories to assist in modularization.

    Tags: Flask, Python

  • This is the seventh article in the Flask TodoMVC tutorial. In this article, we will add user authentication using the Flask-Security extension. In doing so, we will define models for Users and roles and discuss SQLAlchemy relationships.

    Tags: Flask, Python, SQLAlchemy

  • This is the sixth article in the Flask TodoMVC tutorial. In this article, we will replace our persistence layer with the SQLAlchemy ORM using Flask-SQLAlchemy while using our existing tests to assist during refactoring.

    Tags: Flask, Python, SQLAlchemy

  • This is the fifth article in the Flask TodoMVC tutorial. In this article, we will use the Flask test client to write unit tests against our todo list API.

    Tags: Flask, Python

  • This is the fourth article in the Flask TodoMVC tutorial. In this article, we will setup unit testing and demonstrate custom configuration used during testing.

    Tags: Flask, Python

  • This is the third article in the Flask TodoMVC Tutorial, a series that creates a Backbone.js backend with Flask for the TodoMVC app. In this article, we add a database backend using dataset.

    Tags: Flask, Python, Dataset

  • This is the second article in the Flask TodoMVC tutorial, a series that creates a Backbone.js backend with Flask for the TodoMVC app. In this article, we will replace the localStorage persistence with server side synchronization.

    Tags: Flask, Backbone.js, Python

  • The first article in the Flask TodoMVC turorial, a series that creates a Backbone.js backend with Flask for the TodoMVC app. In this article, we will create a Flask app using the Backbone.js example as a starting point.

    Tags: Flask, Backbone.js, Python