-
Notifications
You must be signed in to change notification settings - Fork 1
Flask
A Bhat edited this page Oct 12, 2020
·
2 revisions
- A micro web framework
- Written in Python
- No database abstraction layer, or any other components where pre-existing third-party libraries provide common functions
- Supports extensions that can add application features as if they were implemented in Flask itself
- Extensions exist for object-relational mappers, form validation, upload handling, various open authentication technologies and several common framework related tools
- Include Pinterest and LinkedIn
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run()