vibora
1.0.0
警告:该项目正在被完全重写。如果您对进展感到好奇,请通过 Slack 与我联系。
Vibora 是一个快速、异步且优雅的Python 3.6+ http 客户端/服务器框架。 (阿尔法阶段)
在你问之前,Vibora 在葡萄牙语中的意思是毒蛇:)
from vibora import Vibora , Request
from vibora . responses import JsonResponse
app = Vibora ()
@ app . route ( '/' )
async def home ( request : Request ):
return JsonResponse ({ 'hello' : 'world' })
if __name__ == '__main__' :
app . run ( debug = True , host = '0.0.0.0' , port = 8000 )
import asyncio
from vibora import client
async def hello_world ():
response = await client . get ( 'https://google.com/' )
print ( f'Content: { response . content } ' )
print ( f'Status code: { response . status_code } ' )
if __name__ == '__main__' :
loop = asyncio . get_event_loop ()
loop . run_until_complete ( hello_world ())
请访问 Vibora 文档网站查看。
框架 | 请求数/秒 | 版本 |
---|---|---|
龙卷风 | 14,197 | 5.0.2 |
姜戈 | 22,823 | 2.0.6 |
烧瓶 | 37,487 | 1.0.2 |
艾奥http | 61,252 | 3.3.2 |
萨尼奇 | 119,764 | 0.7.0 |
维博拉 | 368,456 | 0.0.6 |
更多基准测试和信息请访问 https://github.com/vibora-io/benchmarks