38 lines
763 B
Python
38 lines
763 B
Python
from microdot_asgi import Microdot
|
|
|
|
app = Microdot()
|
|
|
|
htmldoc = '''<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Microdot Example Page</title>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Microdot Example Page</h1>
|
|
<p>Hello from Microdot!</p>
|
|
<p><a href="/shutdown">Click to shutdown the server</a></p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
'''
|
|
|
|
|
|
@app.route('/')
|
|
async def hello(request):
|
|
return htmldoc, 200, {'Content-Type': 'text/html'}
|
|
|
|
|
|
@app.route('/shutdown')
|
|
async def shutdown(request):
|
|
request.app.shutdown()
|
|
return 'The server is shutting down...'
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print('''Use an ASGI web server to run this applicaton.
|
|
Example:
|
|
uvicorn hello_asgi:app
|
|
''')
|