Commit cbc58970 by Belákovics Ádám

Basic structure

parent 1bfcb499
......@@ -6,6 +6,9 @@ verify_ssl = true
[dev-packages]
[packages]
aiohttp = "*"
cchardet = "*"
aiodns = "*"
[requires]
python_version = "3.6"
from aiohttp import web
routes = web.RouteTableDef()
@routes.get('/')
async def hello(request):
return web.Response(text="Hello, world")
app = web.Application()
app.add_routes(routes)
web.run_app(app)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment