Python廖雪峰实战web开发(Day2-编写Web APP骨架)

编写Web APP骨架

这次编写的Web app建立在aiohttp基础上。
现在运用aiohttp异步模块,制作简单的服务器响应。

aiohttp模块的官方文档

由文档可知,运用aiohttp异步模块,制作简单的服务器响应:

  • 可先制作响应函数

  • 再制作响应函数集合

  • 最后创建服务器(连接网址、端口,绑定handler)

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

__author__='Seiei'

'''
编写Web App骨架
'''

import logging; logging.basicConfig(level=logging.INFO)
import asyncio
from aiohttp import web

#制作响应函数
async def index(request):
    return web.Response(body=b'

Awesome

'
,content_type='text/html') async def init(loop):#Web app服务器初始化 app = web.Application(loop=loop)#制作响应函数集合 app.router.add_route(method='GET',path='/',handler=index)#把响应函数添加到响应函数集合 srv = await loop.create_server(app.make_handler(),'127.0.0.1',9000) logging.info('server start at http://127.0.0.1:9000')#创建服务器(连接网址、端口,绑定handler) return srv loop = asyncio.get_event_loop()#创建事件 loop.run_until_complete(init(loop))#运行 loop.run_forever()#服务器不关闭

转载于:https://www.cnblogs.com/AB786883603/p/8325448.html

你可能感兴趣的:(python)