├── .github └── workflows │ ├── create-crowdin-project.yml │ ├── download-translations.yml │ ├── hide-strings.yml │ ├── nttt-processing.yml │ └── upload-sources.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── crowdin.yml ├── cs-CZ ├── images │ ├── banner.png │ ├── flask-app-link.png │ ├── flask-app-with-colour.png │ ├── flask-cakes.png │ ├── flask-hello-paul.png │ ├── flask-hello-world.png │ ├── flask-template.png │ ├── html-file.png │ ├── idle-css.png │ ├── idle-html.png │ ├── open-terminal.png │ ├── open-text-editor.png │ ├── pi-run-web-app.png │ └── solution.png ├── meta.yml ├── resources │ └── .keep ├── solutions │ └── webapp.zip ├── step_1.md ├── step_2.md ├── step_3.md ├── step_4.md ├── step_5.md ├── step_6.md ├── step_7.md └── step_8.md └── en ├── .DS_Store ├── images ├── .DS_Store ├── .keep ├── banner.png ├── flask-app-link.png ├── flask-app-with-colour.png ├── flask-cakes.png ├── flask-hello-paul.png ├── flask-hello-world.png ├── flask-template.png ├── html-file.png ├── idle-css.png ├── idle-html.png ├── open-terminal.png ├── open-text-editor.png ├── pi-run-web-app.png └── solution.png ├── meta.yml ├── resources └── .keep ├── solutions └── webapp.zip ├── step_1.md ├── step_2.md ├── step_3.md ├── step_4.md ├── step_5.md ├── step_6.md ├── step_7.md └── step_8.md /.github/workflows/create-crowdin-project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/.github/workflows/create-crowdin-project.yml -------------------------------------------------------------------------------- /.github/workflows/download-translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/.github/workflows/download-translations.yml -------------------------------------------------------------------------------- /.github/workflows/hide-strings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/.github/workflows/hide-strings.yml -------------------------------------------------------------------------------- /.github/workflows/nttt-processing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/.github/workflows/nttt-processing.yml -------------------------------------------------------------------------------- /.github/workflows/upload-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/.github/workflows/upload-sources.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/README.md -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/crowdin.yml -------------------------------------------------------------------------------- /cs-CZ/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/banner.png -------------------------------------------------------------------------------- /cs-CZ/images/flask-app-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/flask-app-link.png -------------------------------------------------------------------------------- /cs-CZ/images/flask-app-with-colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/flask-app-with-colour.png -------------------------------------------------------------------------------- /cs-CZ/images/flask-cakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/flask-cakes.png -------------------------------------------------------------------------------- /cs-CZ/images/flask-hello-paul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/flask-hello-paul.png -------------------------------------------------------------------------------- /cs-CZ/images/flask-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/flask-hello-world.png -------------------------------------------------------------------------------- /cs-CZ/images/flask-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/flask-template.png -------------------------------------------------------------------------------- /cs-CZ/images/html-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/html-file.png -------------------------------------------------------------------------------- /cs-CZ/images/idle-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/idle-css.png -------------------------------------------------------------------------------- /cs-CZ/images/idle-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/idle-html.png -------------------------------------------------------------------------------- /cs-CZ/images/open-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/open-terminal.png -------------------------------------------------------------------------------- /cs-CZ/images/open-text-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/open-text-editor.png -------------------------------------------------------------------------------- /cs-CZ/images/pi-run-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/pi-run-web-app.png -------------------------------------------------------------------------------- /cs-CZ/images/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/images/solution.png -------------------------------------------------------------------------------- /cs-CZ/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/meta.yml -------------------------------------------------------------------------------- /cs-CZ/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cs-CZ/solutions/webapp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/solutions/webapp.zip -------------------------------------------------------------------------------- /cs-CZ/step_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_1.md -------------------------------------------------------------------------------- /cs-CZ/step_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_2.md -------------------------------------------------------------------------------- /cs-CZ/step_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_3.md -------------------------------------------------------------------------------- /cs-CZ/step_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_4.md -------------------------------------------------------------------------------- /cs-CZ/step_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_5.md -------------------------------------------------------------------------------- /cs-CZ/step_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_6.md -------------------------------------------------------------------------------- /cs-CZ/step_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_7.md -------------------------------------------------------------------------------- /cs-CZ/step_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/cs-CZ/step_8.md -------------------------------------------------------------------------------- /en/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/.DS_Store -------------------------------------------------------------------------------- /en/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/.DS_Store -------------------------------------------------------------------------------- /en/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/banner.png -------------------------------------------------------------------------------- /en/images/flask-app-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/flask-app-link.png -------------------------------------------------------------------------------- /en/images/flask-app-with-colour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/flask-app-with-colour.png -------------------------------------------------------------------------------- /en/images/flask-cakes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/flask-cakes.png -------------------------------------------------------------------------------- /en/images/flask-hello-paul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/flask-hello-paul.png -------------------------------------------------------------------------------- /en/images/flask-hello-world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/flask-hello-world.png -------------------------------------------------------------------------------- /en/images/flask-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/flask-template.png -------------------------------------------------------------------------------- /en/images/html-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/html-file.png -------------------------------------------------------------------------------- /en/images/idle-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/idle-css.png -------------------------------------------------------------------------------- /en/images/idle-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/idle-html.png -------------------------------------------------------------------------------- /en/images/open-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/open-terminal.png -------------------------------------------------------------------------------- /en/images/open-text-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/open-text-editor.png -------------------------------------------------------------------------------- /en/images/pi-run-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/pi-run-web-app.png -------------------------------------------------------------------------------- /en/images/solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/images/solution.png -------------------------------------------------------------------------------- /en/meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/meta.yml -------------------------------------------------------------------------------- /en/resources/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /en/solutions/webapp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/solutions/webapp.zip -------------------------------------------------------------------------------- /en/step_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_1.md -------------------------------------------------------------------------------- /en/step_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_2.md -------------------------------------------------------------------------------- /en/step_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_3.md -------------------------------------------------------------------------------- /en/step_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_4.md -------------------------------------------------------------------------------- /en/step_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_5.md -------------------------------------------------------------------------------- /en/step_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_6.md -------------------------------------------------------------------------------- /en/step_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_7.md -------------------------------------------------------------------------------- /en/step_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raspberrypilearning/python-web-server-with-flask/HEAD/en/step_8.md --------------------------------------------------------------------------------