Skip to content

chrismatchett/met-teach-python-flask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Examples

Simple Python code examples using Python, Flask and Bootstrap.

The site is viewable here, https://flask-bootstrap.azurewebsites.net.

Flask Quickstart

Here is a quickstart guide for installing Python Flask on Microsoft Windows. The full documentation is here, https://flask.palletsprojects.com/en/2.1.x/installation/#install-flask.

mkdir myproject
cd myproject
py -3 -m venv venv

venv\Scripts\activate

pip install Flask

$env:FLASK_APP = "app"
$env:FLASK_DEBUG = 1
python -m flask run

Generate a list of packages

The command below is useful if you plan to connect your code repository to a Microsoft Azure App Service.

pip freeze --local > requirements.txt

Public APIs

Random Duck API

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published