Thanks, David, for the request!
The example files I created are all available on github, and the link has been included at the end of the tutorial. But in case you don't have access to github, here is what the tree should look like:
```
.
├── README.md
├── app
│ ├── __init__.py
│ ├── static
│ │ └── img
│ │ ├── cosmos01.jpeg
│ │ ├── cosmos02.jpeg
│ │ ├── cosmos03.jpeg
│ │ ├── cosmos04.jpeg
│ │ ├── demo-logo.png
│ │ └── demo-logo1_850x467.png
│ ├── templates
│ │ ├── 404.html
│ │ ├── method1.html
│ │ ├── method2.html
│ │ └── method3.html
│ ├── translations
│ │ └── pt
│ │ └── LC_MESSAGES
│ │ ├── messages.mo
│ │ └── messages.po
│ └── views.py
├── babel
│ ├── babel.cfg
│ └── messages.pot
├── config.py
└── run.py
8 directories, 19 files
```
Hope this helps.