[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-10827":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":14,"stars30d":14,"stars90d":16,"forks30d":16,"starsTrendScore":16,"compositeScore":17,"rankGlobal":10,"rankLanguage":10,"license":18,"archived":19,"fork":20,"defaultBranch":21,"hasWiki":20,"hasPages":20,"topics":22,"createdAt":10,"pushedAt":10,"updatedAt":31,"readmeContent":32,"aiSummary":33,"trendingCount":16,"starSnapshotCount":16,"syncStatus":34,"lastSyncTime":35,"discoverSource":36},10827,"vibora","vibora-io\u002Fvibora","vibora-io","Fast, asynchronous and elegant Python web framework.","https:\u002F\u002Fvibora.io\u002F",null,"Python",5593,300,1,140,0,38.44,"MIT License",true,false,"master",[23,24,25,26,27,28,29,30],"async","client","framework","http","performance","python","server","web","2026-06-12 02:02:27","> **Warning: This project is being completely re-written. If you're curious about the progress, reach me on Slack.**\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fvibora.io\">\u003Cimg src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fvibora-io\u002Fvibora\u002Fmaster\u002Fdocs\u002Flogo.png\">\u003C\u002Fa>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fcircleci.com\u002Fgh\u002Fvibora-io\u002Fvibora\">\u003Cimg src=\"https:\u002F\u002Fcircleci.com\u002Fgh\u002Fvibora-io\u002Fvibora.svg?style=shield\">\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fvibora-io\u002Fvibora\u002Fblob\u002Fmaster\u002FLICENSE\">\u003Cimg alt=\"License: MIT\" src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FLicense-MIT-yellow.svg\">\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fpypi.org\u002Fproject\u002Fvibora\u002F\">\u003Cimg alt=\"PyPI\" src=\"https:\u002F\u002Fimg.shields.io\u002Fpypi\u002Fv\u002Fvibora.svg\">\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fambv\u002Fblack\">\u003Cimg alt=\"Code style: black\" src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fcode%20style-black-000000.svg\">\u003C\u002Fa>\n  \u003Ca target=\"_blank\" href=\"https:\u002F\u002Fjoin.slack.com\u002Ft\u002Fvibora-io\u002Fshared_invite\u002FenQtNDAxMTQ4NDc5NDYzLTA2YTdmNmM0YmY4ZTY0Y2JjZjc0ODgwMmJjY2I0MmVkODFiYzc4YjM0NGMyOTkxMjZlNTliZDU1ZmFhYWZmNjU\">\u003Cimg alt=\"Join Slack\" src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fjoin-slack-E02462.svg\">\u003C\u002Fa>\n\u003C\u002Fp>\n\n-----------------------------------------------------------\n> [Vibora](https:\u002F\u002Fvibora.io) is a **fast, asynchronous and elegant** Python 3.6+ http client\u002Fserver framework. (Alpha stage)\n\n> Before you ask, Vibora means Viper in Portuguese :)\n\n\nServer Features\n---------------\n* Performance (https:\u002F\u002Fgithub.com\u002Fvibora-io\u002Fbenchmarks).\n* Schemas Engine.\n* Nested Blueprints \u002F Domain Based Routes \u002F Components\n* Connection Reaper \u002F Self-Healing Workers\n* Sessions Engine\n* Streaming\n* Websockets\n* Caching tools\n* Async Template Engine (hot-reloading, deep inheritance)\n* Complete flow customization\n* Static Files (Smart Cache, Range, LastModified, ETags)\n* Testing Framework\n* Type hints, type hints, type hints everywhere.\n\n\nClient Features\n---------------\n* Streaming MultipartForms (Inspired by: https:\u002F\u002Fgithub.com\u002Frequests\u002Frequests\u002Fissues\u002F1584)\n* Rate Limiting \u002F Retries mechanisms\n* Websockets\n* Keep-Alive & Connection Pooling\n* Sessions with cookies persistence\n* Basic\u002Fdigest Authentication\n* Transparent Content Decoding\n\nServer Example\n--------------\n```python\nfrom vibora import Vibora, Request\nfrom vibora.responses import JsonResponse\n\napp = Vibora()\n\n\n@app.route('\u002F')\nasync def home(request: Request):\n    return JsonResponse({'hello': 'world'})\n\n\nif __name__ == '__main__':\n    app.run(debug=True, host='0.0.0.0', port=8000)\n```\n\nClient Example\n--------------\n\n```python\nimport asyncio\nfrom vibora import client\n\n\nasync def hello_world():\n    response = await client.get('https:\u002F\u002Fgoogle.com\u002F')\n    print(f'Content: {response.content}')\n    print(f'Status code: {response.status_code}')\n\n\nif __name__ == '__main__':\n    loop = asyncio.get_event_loop()\n    loop.run_until_complete(hello_world())\n```\n\nDocumentation\n-------------\n[Check it out at Vibora docs website](https:\u002F\u002Fdocs.vibora.io).\n\nPerformance (Infamous Hello World benchmark)\n-----------\n| Frameworks    | Requests\u002FSec  | Version  |\n| ------------- |:-------------:|:--------:|\n| Tornado       | 14,197         | 5.0.2   |\n| Django        | 22,823         | 2.0.6   |\n| Flask         | 37,487         | 1.0.2   |\n| Aiohttp       | 61,252         | 3.3.2   |\n| Sanic         | 119,764        | 0.7.0   |\n| Vibora        | 368,456        | 0.0.6   |\n> More benchmarks and info at https:\u002F\u002Fgithub.com\u002Fvibora-io\u002Fbenchmarks\n----\nGoals\n-----\n* **Be the fastest Python http client\u002Fserver framework.**.\n* Windows \u002F Linux \u002F MacOS.\n* Enjoyable and up to date development features\u002Ftrends.\n\nComing Soon\n-----------\n* Auto Reloading\n* HTTP2 Support\n* Brotli support (Server\u002FClient)\n* Cython compiled templates.\n* Cython compiled user-routes.\n","Vibora 是一个快速、异步且优雅的 Python 3.6+ HTTP 客户端\u002F服务器框架。它具备高性能、模式引擎、嵌套路由、自愈工作进程、会话引擎、流处理、WebSocket 支持以及缓存工具等核心功能。其独特的异步模板引擎支持热重载和深度继承，同时提供了全面的流程定制能力。此外，Vibora 还为客户端开发提供了丰富的特性，如多部分表单流处理、限流与重试机制、持久化会话等。此框架适用于需要高并发处理能力和低延迟响应的Web应用开发场景，特别是在构建实时通信或大数据量传输的应用时尤为适用。请注意，该项目目前正处于完全重写的阶段。",2,"2026-06-11 03:30:21","top_topic"]