Skip to content

A Blog-Post website made using Python-Flask,SQLite and Bootstrap.

Notifications You must be signed in to change notification settings

thzidaan/BlogPost

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

F - Flask

Flask is a web server back-end framework.

Being built with Python in mind allows developers to quickly prototype and deploy solutions for tasks at hand. Providing a high level of abstraction means that REST api endpoints can be quickly built, tested and deployed. As well as with a large quantity of robust libraries for a myriad of tasks means that complex problems can be solved more efficiently by importing the necessary tools.

A whole flask application can be made as simply as below.

from flask import Flask, escape, request

app = Flask(__name__)

@app.route('/')
def hello():
    name = request.args.get("name", "World")
    return f'Hello, {escape(name)}!'

Dependencies

pip install -r requirements.txt

About

A Blog-Post website made using Python-Flask,SQLite and Bootstrap.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published