pip install Karrigell
python
from karrigell import App, cssrule
app = App(__name__)
python
@app.route('/')
def index():
return """
<html>
<body>
</body>
</html>
"""
@app.route('/hello')
def hello():
return """
<html>
<body>
</body>
</html>
"""
python
if __name__ == '__main__':
app.run()
python app.py