{"id":17657751,"url":"https://github.com/livioribeiro/selva","last_synced_at":"2025-09-09T13:38:42.207Z","repository":{"id":37589264,"uuid":"395398322","full_name":"livioribeiro/selva","owner":"livioribeiro","description":"Python ASGI web framework","archived":false,"fork":false,"pushed_at":"2025-03-15T17:24:36.000Z","size":1647,"stargazers_count":7,"open_issues_count":8,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-15T06:14:44.028Z","etag":null,"topics":["api","asyncio","framework","json","pydantic","python","python-types","python3","rest","selva","uvicorn","web","websocket"],"latest_commit_sha":null,"homepage":"https://livioribeiro.github.io/selva/","language":"Python","has_issues":true,"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/livioribeiro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-08-12T17:37:51.000Z","updated_at":"2025-02-18T19:24:37.000Z","dependencies_parsed_at":"2023-10-23T21:28:51.174Z","dependency_job_id":"3647bad9-5958-452c-8c3e-39b179d521ef","html_url":"https://github.com/livioribeiro/selva","commit_stats":{"total_commits":261,"total_committers":2,"mean_commits":130.5,"dds":"0.22988505747126442","last_synced_commit":"abe984a67878aa834735bbb74c0b0c58502c44e0"},"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livioribeiro%2Fselva","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livioribeiro%2Fselva/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livioribeiro%2Fselva/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/livioribeiro%2Fselva/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/livioribeiro","download_url":"https://codeload.github.com/livioribeiro/selva/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249016641,"owners_count":21198833,"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":["api","asyncio","framework","json","pydantic","python","python-types","python3","rest","selva","uvicorn","web","websocket"],"created_at":"2024-10-23T14:43:20.627Z","updated_at":"2025-04-15T06:14:52.953Z","avatar_url":"https://github.com/livioribeiro.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Project Selva\n\nDocumentation: https://livioribeiro.github.io/selva/\n\nSelva is a Python ASGI web framework built on top of [asgikit](https://pypi.org/project/asgikit/)\nand inspired by Spring Boot, AspNet, FastAPI and Go's net/http.\n\nIt features a Dependency Injection system to help build robust and reliable applications.\n\n## Quick start\n\nInstall `selva` and `uvicorn` to run application:\n\n```shell\npip install selva uvicorn[standard]\n```\n\nCreate a module called `application.py`:\n\n```shell\ntouch application.py\n```\n\nCreate a handler:\n\n```python\nfrom asgikit.requests import Request\nfrom asgikit.responses import respond_text\nfrom selva.web import get\n\n\n@get\nasync def hello(request: Request):\n    await respond_text(request.response, \"Hello, World!\")\n```\n\nRun application with `uvicorn` (Selva will automatically load `application.py`):\n\n```shell\nuvicorn selva.run:app --reload\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivioribeiro%2Fselva","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flivioribeiro%2Fselva","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flivioribeiro%2Fselva/lists"}