vibora
1.0.0
Peringatan: Proyek ini sedang ditulis ulang sepenuhnya. Jika Anda penasaran dengan kemajuannya, hubungi saya di Slack.
Vibora adalah kerangka kerja klien/server Python 3.6+ yang cepat, asinkron, dan elegan . (Tahap alfa)
Sebelum Anda bertanya, Vibora berarti Viper dalam bahasa Portugis :)
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 ())
Lihat di situs web dokumen Vibora.
Kerangka kerja | Permintaan/Detik | Versi |
---|---|---|
Angin topan | 14.197 | 5.0.2 |
Django | 22.823 | 2.0.6 |
Labu | 37.487 | 1.0.2 |
Aiohttp | 61.252 | 3.3.2 |
Sanik | 119.764 | 0.7.0 |
getaran | 368.456 | 0,0.6 |
Tolok ukur dan informasi lebih lanjut di https://github.com/vibora-io/benchmarks