文件名称:thisj:Python web 框架,基于 aiohttp
文件大小:14KB
文件格式:ZIP
更新时间:2024-06-23 06:06:55
Python
这个 它是一个 Python Web 框架,基于 aiohttp,它是 asyncio 的 http 客户端/服务器,并带有 Jinja2 模板引擎 要求 见需求.txt 例子 #!/usr/bin/env python3 # -*- coding: utf-8 -*- from thisj import server from thisj import web class HelloHandler ( web . BaseHandler ): def get ( self ): # template file: ./templates/hello.html return self . render ( 'hello.html' , name = 'WORLD' ) urls = [ ( '/hello' , HelloHandler ),
【文件预览】:
thisj-master
----.gitignore(675B)
----README.md(680B)
----examples()
--------demo.py(433B)
--------templates()
----LICENSE(18KB)
----thisj()
--------server.py(1KB)
--------autoreload.py(988B)
--------logger.py(2KB)
--------__init__.py(20B)
--------web.py(4KB)
----requirements.txt(15B)
----setup.py(686B)