Files
httpbin/httpbin/core.py
T
Kenneth Reitz 0626b048fa epio
2011-06-12 14:53:40 -04:00

21 lines
257 B
Python

# -*- coding: utf-8 -*-
"""
httpbin.core
~~~~~~~~~~~~
This module provides the core HttpBin experience.
"""
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World!'
if __name__ == '__main__':
app.run()