{"id":13412188,"url":"https://github.com/vibora-io/vibora","last_synced_at":"2025-03-14T18:30:30.633Z","repository":{"id":48503067,"uuid":"137238544","full_name":"vibora-io/vibora","owner":"vibora-io","description":"Fast, asynchronous and elegant Python web framework.","archived":true,"fork":false,"pushed_at":"2020-12-23T01:00:55.000Z","size":374,"stargazers_count":5657,"open_issues_count":140,"forks_count":304,"subscribers_count":249,"default_branch":"master","last_synced_at":"2025-03-09T13:17:47.819Z","etag":null,"topics":["async","client","framework","http","performance","python","server","web"],"latest_commit_sha":null,"homepage":"https://vibora.io/","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vibora-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-13T15:58:58.000Z","updated_at":"2025-03-06T13:04:34.000Z","dependencies_parsed_at":"2022-08-26T04:01:38.350Z","dependency_job_id":null,"html_url":"https://github.com/vibora-io/vibora","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vibora-io%2Fvibora","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vibora-io%2Fvibora/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vibora-io%2Fvibora/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vibora-io%2Fvibora/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vibora-io","download_url":"https://codeload.github.com/vibora-io/vibora/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243625006,"owners_count":20321214,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async","client","framework","http","performance","python","server","web"],"created_at":"2024-07-30T20:01:21.924Z","updated_at":"2025-03-14T18:30:30.269Z","avatar_url":"https://github.com/vibora-io.png","language":"Python","funding_links":[],"categories":["Python","Web Frameworks"],"sub_categories":[],"readme":"\u003e **Warning: This project is being completely re-written. If you're curious about the progress, reach me on Slack.**\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://vibora.io\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/vibora-io/vibora/master/docs/logo.png\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://circleci.com/gh/vibora-io/vibora\"\u003e\u003cimg src=\"https://circleci.com/gh/vibora-io/vibora.svg?style=shield\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/vibora-io/vibora/blob/master/LICENSE\"\u003e\u003cimg alt=\"License: MIT\" src=\"https://img.shields.io/badge/License-MIT-yellow.svg\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://pypi.org/project/vibora/\"\u003e\u003cimg alt=\"PyPI\" src=\"https://img.shields.io/pypi/v/vibora.svg\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/ambv/black\"\u003e\u003cimg alt=\"Code style: black\" src=\"https://img.shields.io/badge/code%20style-black-000000.svg\"\u003e\u003c/a\u003e\n  \u003ca target=\"_blank\" href=\"https://join.slack.com/t/vibora-io/shared_invite/enQtNDAxMTQ4NDc5NDYzLTA2YTdmNmM0YmY4ZTY0Y2JjZjc0ODgwMmJjY2I0MmVkODFiYzc4YjM0NGMyOTkxMjZlNTliZDU1ZmFhYWZmNjU\"\u003e\u003cimg alt=\"Join Slack\" src=\"https://img.shields.io/badge/join-slack-E02462.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n-----------------------------------------------------------\n\u003e [Vibora](https://vibora.io) is a **fast, asynchronous and elegant** Python 3.6+ http client/server framework. (Alpha stage)\n\n\u003e Before you ask, Vibora means Viper in Portuguese :)\n\n\nServer Features\n---------------\n* Performance (https://github.com/vibora-io/benchmarks).\n* Schemas Engine.\n* Nested Blueprints / Domain Based Routes / Components\n* Connection Reaper / 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://github.com/requests/requests/issues/1584)\n* Rate Limiting / Retries mechanisms\n* Websockets\n* Keep-Alive \u0026 Connection Pooling\n* Sessions with cookies persistence\n* Basic/digest 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('/')\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://google.com/')\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://docs.vibora.io).\n\nPerformance (Infamous Hello World benchmark)\n-----------\n| Frameworks    | Requests/Sec  | 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\u003e More benchmarks and info at https://github.com/vibora-io/benchmarks\n----\nGoals\n-----\n* **Be the fastest Python http client/server framework.**.\n* Windows / Linux / MacOS.\n* Enjoyable and up to date development features/trends.\n\nComing Soon\n-----------\n* Auto Reloading\n* HTTP2 Support\n* Brotli support (Server/Client)\n* Cython compiled templates.\n* Cython compiled user-routes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvibora-io%2Fvibora","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvibora-io%2Fvibora","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvibora-io%2Fvibora/lists"}