All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 22:04, 13 December 2025 Kenneth talk contribs created page Python/Flask (Created page with "== Flask == == Installation == ## Linux / macOS mkdir myproject cd myproject # python3 -m venv .flask python3 -m venv .venv . .venv/bin/activate ## Windows mkdir myproject cd myproject py -3 -m venv .venv .venv\Scripts\activate ## Next Common Step # pip install Flask pip3 install Flask # End deactivate References: * https://flask.palletsprojects.com/en/stable/installation/ == Quick Start == Hello World helloworld.py <pre> from flask import Flask...")