vibora
1.0.0
تحذير: تتم إعادة كتابة هذا المشروع بالكامل. إذا كنت مهتمًا بالتقدم المحرز، تواصل معي على Slack.
Vibora عبارة عن إطار عميل/خادم Python 3.6+ http سريع وغير متزامن وأنيق . (مرحلة ألفا)
قبل أن تسأل، Vibora تعني Viper باللغة البرتغالية :)
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 |
aiohttp | 61,252 | 3.3.2 |
سانيك | 119,764 | 0.7.0 |
فيبورا | 368,456 | 0.0.6 |
المزيد من المعايير والمعلومات على https://github.com/vibora-io/benchmarks