{"id":26971484,"url":"https://github.com/junah201/vellox","last_synced_at":"2026-03-17T22:06:38.813Z","repository":{"id":232788630,"uuid":"784841134","full_name":"junah201/vellox","owner":"junah201","description":"GCP Cloud Functions support for ASGI applications","archived":false,"fork":false,"pushed_at":"2026-03-03T06:14:35.000Z","size":2509,"stargazers_count":26,"open_issues_count":1,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-03T06:42:39.470Z","etag":null,"topics":["gcp","gcp-cloud-functions","python","serverless"],"latest_commit_sha":null,"homepage":"https://vellox.junah.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"Kludex/mangum","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/junah201.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-10T16:57:53.000Z","updated_at":"2026-03-03T06:14:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"091dca4a-0687-4160-8703-d29d85d39a41","html_url":"https://github.com/junah201/vellox","commit_stats":null,"previous_names":["junah201/caliber","junah201/vellox"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/junah201/vellox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junah201%2Fvellox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junah201%2Fvellox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junah201%2Fvellox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junah201%2Fvellox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/junah201","download_url":"https://codeload.github.com/junah201/vellox/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junah201%2Fvellox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30633240,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T17:32:55.572Z","status":"ssl_error","status_checked_at":"2026-03-17T17:32:38.732Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["gcp","gcp-cloud-functions","python","serverless"],"created_at":"2025-04-03T09:04:48.751Z","updated_at":"2026-03-17T22:06:38.808Z","avatar_url":"https://github.com/junah201.png","language":"Python","funding_links":[],"categories":["Extensions"],"sub_categories":["Deployment / Serverless"],"readme":"# Vellox\n\n\u003ca href=\"https://pypi.org/project/vellox\"\u003e\n    \u003cimg src=\"https://badge.fury.io/py/vellox.svg\" alt=\"Package version\"\u003e\n\u003c/a\u003e\n\u003cimg alt=\"PyPI - Python Version\" src=\"https://img.shields.io/pypi/pyversions/vellox.svg?style=flat-square\"\u003e\n\nVellox is an adapter for running [ASGI](https://asgi.readthedocs.io/en/latest) applications in GCP Cloud Functions.\n\n## Requirements\n\nPython 3.8+\n\n## Installation\n\n```bash\npip install vellox\n```\n\n## Example\n\n```python\nfrom vellox import Vellox\n\nasync def app(scope, receive, send):\n    await send(\n        {\n            \"type\": \"http.response.start\",\n            \"status\": 200,\n            \"headers\": [[b\"content-type\", b\"text/plain; charset=utf-8\"]],\n        }\n    )\n    await send({\"type\": \"http.response.body\", \"body\": b\"Hello, world!\"})\n\n\nvellox = Vellox(app=app, lifespan=\"off\")\n\ndef handler(request):\n    return vellox(request)\n```\n\nOr using a framework:\n\n```python\nfrom fastapi import FastAPI\nfrom vellox import Vellox\n\napp = FastAPI()\n\n\n@app.get(\"/\")\ndef read_root():\n    return {\"Hello\": \"World\"}\n\n\n@app.get(\"/items/{item_id}\")\ndef read_item(item_id: int, q: str = None):\n    return {\"item_id\": item_id, \"q\": q}\n\nvellox = Vellox(app=app, lifespan=\"off\")\n\ndef handler(request):\n    return vellox(request)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunah201%2Fvellox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunah201%2Fvellox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunah201%2Fvellox/lists"}