Flask is a minimalist web framework written in Python that I’ve become rather intrigued by, and have been been reading up on in my spare time. Part of the appeal of this framework is that all you need to get a simple server going is this:
from flask import * app = Flask(__name__) @app.route('/') def home(): return ("Hello, World!") if __name__ == '__main__': app.run()