Todo Kata - Python Part 3

Posted on October 30, 2020 in Tutorial • Tagged with Tutorial, Python, Todo, Development, SQLite

Welcome to Part 3 of the Python Todo kata. In this final part, we will revisit the done application and modify it to work with a SQLite database instead of a text file.

We will see that Python makes this very easy with its built-in integration with SQLite in the …


Continue reading

Todo Kata - Python Part 2

Posted on October 28, 2020 in Tutorial • Tagged with Tutorial, Python, Todo, Development, mypy, click, RxPY, ReactiveProgramming

In Part 2 of the Python kata, we will implement the todo application. This will allow us to keep track of a todo list, and it will utilize the done functionality we created in the previous post to record the items we complete.

Series Outline

  1. Intro
  2. F# Series
    1. Part 1 …

Continue reading

Todo Kata - Python Part 1

Posted on October 11, 2020 in Tutorial • Tagged with Tutorial, Python, Todo, Development, mypy, click

In this part of the Todo kata, we will cover the Python implementation. If you are new to the series, I would recommend reading the intro first. It should give sufficient background to be able to follow along even without being familiar with previous posts.

Series Outline

  1. Intro
  2. F# Series …

Continue reading