{"id":45951698,"url":"https://github.com/stelviodev/stelvio","last_synced_at":"2026-03-14T12:56:04.384Z","repository":{"id":274037603,"uuid":"921676630","full_name":"stelviodev/stelvio","owner":"stelviodev","description":"Ship Python to AWS in minutes, not days","archived":false,"fork":false,"pushed_at":"2026-02-21T23:28:05.000Z","size":900,"stargazers_count":275,"open_issues_count":20,"forks_count":4,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-22T02:42:19.540Z","etag":null,"topics":["api-gateway","aws","dynamodb","iac","iam","lambda-function","lambda-layers","python","serverless"],"latest_commit_sha":null,"homepage":"https://stelvio.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stelviodev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2025-01-24T12:01:58.000Z","updated_at":"2026-02-21T02:56:53.000Z","dependencies_parsed_at":"2026-01-02T03:06:34.613Z","dependency_job_id":null,"html_url":"https://github.com/stelviodev/stelvio","commit_stats":null,"previous_names":["michal-stlv/stelvio","stelviodev/stelvio"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/stelviodev/stelvio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stelviodev%2Fstelvio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stelviodev%2Fstelvio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stelviodev%2Fstelvio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stelviodev%2Fstelvio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stelviodev","download_url":"https://codeload.github.com/stelviodev/stelvio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stelviodev%2Fstelvio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29934450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T12:34:16.884Z","status":"ssl_error","status_checked_at":"2026-02-28T12:34:13.721Z","response_time":90,"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":["api-gateway","aws","dynamodb","iac","iam","lambda-function","lambda-layers","python","serverless"],"created_at":"2026-02-28T12:47:00.585Z","updated_at":"2026-03-14T12:56:04.347Z","avatar_url":"https://github.com/stelviodev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stelvio\n\n[![PyPI](https://img.shields.io/pypi/v/stelvio.svg)](https://pypi.org/project/stelvio/)\n[![Python Version](https://img.shields.io/pypi/pyversions/stelvio.svg)](https://pypi.org/project/stelvio/)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\n\n## Ship Python to AWS in minutes, not days.\n\n[**Documentation**](https://stelvio.dev/intro/quickstart/) - [**Stelvio Manifesto**](https://stelvio.dev/about/manifesto/) - [**Roadmap**](https://github.com/stelviodev/stelvio/wiki/Roadmap)\n\nStelvio is an **open-source** framework that lets you build and deploy modern AWS applications using **pure Python**. Forget YAML, complex configuration, or learning new DSLs.\n\nWith the `stlv` CLI, you focus on your code, and Stelvio handles the infrastructure.\n\n[![stlv intro video](https://stelvio.dev/intro-video.jpg)](https://stelvio.dev/intro-video)\n\n## Why Stelvio?\n\n- 🐍 **Pure Python**: Define your infrastructure with standard Python code. Use your favorite IDE, linter, and type checker.\n- 🧠 **Smart Defaults**: We handle the complex IAM roles, networking, and configuration so you don't have to.\n- 🔗 **Automatic Permissions**: Simply pass resources to your functions. Stelvio automatically configures permissions and environment variables.\n- ⚡ **Live Dev Mode**: Run `stlv dev` to sync your code changes instantly. No waiting for deployments.\n- 🔧 **Full Control**: Logic and infrastructure in one place, with escape hatches to the underlying Pulumi resources.\n- 📖 **Open Source**: Built by developers for developers. Apache 2.0 licensed.\n\n## Example\n\nDefine your infrastructure and application logic in one file. Stelvio handles the wiring.\n\n```python\nfrom stelvio.aws.api_gateway import Api\nfrom stelvio.aws.cron import Cron\nfrom stelvio.aws.dynamo_db import DynamoTable\n\n\n@app.run\ndef run() -\u003e None:\n\n    todos = DynamoTable(\n        \"todos-table\",\n        fields={\n            \"user\": \"string\",\n            \"date\": \"string\"\n        },\n        sort_key=\"date\",\n        partition_key=\"user\"\n    )\n\n    cleanup = Cron(\n        \"cleanup-cron\",\n        \"rate(1 minute)\",\n        handler=\"api/handlers.cleanup\",\n        links=[todos]\n    )\n\n    api = Api(\"stlv-demo-api\")\n    api.route(\"GET\", \"/hello\", handler=\"api/handlers.hello_world\")\n    api.route(\"POST\", \"/todos\", handler=\"api/handlers.post_todo\", links=[todos])\n    api.route(\"GET\", \"/todos/{user}\", handler=\"api/handlers.list_todos\", links=[todos])\n```\n\n## Supported Components\n\nStelvio provides high-level components for the most common AWS services:\n\n- **[Function](https://stelvio.dev/docs/guides/lambda/)** (AWS Lambda)\n- **[Public API](https://stelvio.dev/docs/guides/api-gateway/)** (API Gateway)\n- **[Scheduled Tasks](https://stelvio.dev/docs/guides/cron/)** (EventBridge Cron)\n- **[Object Storage](https://stelvio.dev/docs/guides/s3/)** (S3)\n- **[NoSQL Database](https://stelvio.dev/docs/guides/dynamo-db/)** (DynamoDB)\n- **[Message Queues](https://stelvio.dev/docs/guides/queues/)** (SQS)\n- **[Pub/Sub Topics](https://stelvio.dev/docs/guides/topics/)** (SNS)\n- **[Email](https://stelvio.dev/docs/guides/email/)** (SES)\n- **[AppSync](https://stelvio.dev/docs/guides/appsync/)** (AWS AppSync Managed GraphQL APIs)\n\n## Give it a try\n\n[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true\u0026ref=main\u0026repo=1084563664)\n\n## Quick Start\n\nYou can get up and running in less than 2 minutes.\n\n```bash\n# 1. Create a new project\nuv init my-todo-api \u0026\u0026 cd my-todo-api\n\n# 2. Add Stelvio\nuv add stelvio\n\n# 3. Initialize project structure\nuv run stlv init\n\n# 4. Deploy to AWS\nuv run stlv deploy\n```\n\nSee the [Quick Start Guide](https://stelvio.dev/docs/getting-started/quickstart/) for a full walkthrough.\n\n## Community \u0026 Contributing\n\nStelvio is open source and we welcome contributions!\n\n- Check out our [Roadmap](https://github.com/stelviodev/stelvio/wiki/Roadmap) to see what's coming.\n- Read the [Stelvio Manifesto](https://stelvio.dev/about/manifesto/) to understand our philosophy.\n- Found a bug? Open an [Issue](https://github.com/stelviodev/stelvio/issues).\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstelviodev%2Fstelvio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstelviodev%2Fstelvio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstelviodev%2Fstelvio/lists"}