GithubHelp home page GithubHelp logo

only-flask's Introduction

Flask TIL

  • "Flask is a microframework for Python based on Werkzeug, Jinja 2 and good intentions."
  • 파이썬의 대표적인 마이크로 웹 프레임워크 flask TIL(Today I Learned)
  • flask 의 대표적 특징
    • WSGI 툴킷인 Werkzueg 에 의존
    • 템플릿 엔진인 JinJa2 에 의존
    • Request Context(라우터의 콜백인자가 아닌 글로벌한 Context 객체에서 관리)
    • 데코레이터를 통한 미들웨어 지원
    • 프레임워크 자체에서 테스트 클라이언트 제공
    • 마이크로 프레임워크의 자유도와 확장성
  • flask 공식 문서JoMinGyu 님의 github 를 참조했습니다.
from flask import Flask, request

app = Flask(__name__)

@app.route('/', methods=['GET'])
def index():
    name = request.form['name']
    return 'Hello, {}'.format(name), 200


if __name__ == '__main__':
    app.run(port=7401, debug=Ture)

only-flask's People

Contributors

f1nn2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.