{"id":37422692,"url":"https://github.com/capa-cloud/cloud-runtimes-python","last_synced_at":"2026-01-16T06:08:25.849Z","repository":{"id":62562903,"uuid":"406029438","full_name":"capa-cloud/cloud-runtimes-python","owner":"capa-cloud","description":"Cloud Runtimes Specification for the Python3.","archived":false,"fork":false,"pushed_at":"2025-09-07T16:00:47.000Z","size":43,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-05T15:02:20.904Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/capa-cloud.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}},"created_at":"2021-09-13T15:33:06.000Z","updated_at":"2025-09-07T16:00:51.000Z","dependencies_parsed_at":"2022-11-03T15:45:18.054Z","dependency_job_id":null,"html_url":"https://github.com/capa-cloud/cloud-runtimes-python","commit_stats":null,"previous_names":["reactivegroup/cloud-runtimes-python"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/capa-cloud/cloud-runtimes-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capa-cloud%2Fcloud-runtimes-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capa-cloud%2Fcloud-runtimes-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capa-cloud%2Fcloud-runtimes-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capa-cloud%2Fcloud-runtimes-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/capa-cloud","download_url":"https://codeload.github.com/capa-cloud/cloud-runtimes-python/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/capa-cloud%2Fcloud-runtimes-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28477632,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T03:13:13.607Z","status":"ssl_error","status_checked_at":"2026-01-16T03:11:47.863Z","response_time":107,"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":[],"created_at":"2026-01-16T06:08:24.864Z","updated_at":"2026-01-16T06:08:25.842Z","avatar_url":"https://github.com/capa-cloud.png","language":"Python","readme":"# Cloud Runtimes Python\n\nCloud Runtimes Specification for the Python3.\n\n## Introduction\n\nThe Multi-Runtime Standard API for Mecha architecture Projects:\n\n+ [capa](https://github.com/reactivegroup/capa) (used)\n+ [dapr](https://docs.dapr.io/concepts/building-blocks-concept/) (follow)\n+ [layotto](https://github.com/mosn/layotto) (follow)\n+ ....\n\n## Motivation\n\n[[Discussion] Future plans for dapr api](https://github.com/dapr/dapr/issues/2817)\n\n[Make java-sdk as a independent project](https://github.com/mosn/layotto/issues/188)\n\n[Decompose core-API and enhanced-API.](https://github.com/dapr/dapr/issues/3600)\n\n[Java sdk design](https://github.com/mosn/layotto/issues/206)\n\n## Features\n\n+ Service Invocation (RPC)\n+ Configuration Centor (Configuration)\n+ Publish/Subscribe (Pub/Sub)\n+ State Management (State)\n+ Secret Management (Secret)\n+ Application Log/Metrics/Traces (Telemetry)\n+ Database (SQL) -alpha\n+ Schedule (Schedule) -alpha\n+ ...\n\n## Installation\n\n### Prerequisites\n\n- Python 3.8+\n- pip\n\n### Install from PyPI\n\n```shell\npip install cloud-runtimes-python==0.0.1\n```\n\n### Install in a Virtual Environment (Recommended)\n\n```shell\npython -m venv venv\nsource venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\npip install cloud-runtimes-python==0.0.1\n```\n\n## Quick Start\n\n```python\nfrom cloud_runtimes import CloudRuntimesClient\n\n# Initialize client\nclient = CloudRuntimesClient(\n    endpoint=\"http://localhost:3500\",\n    timeout=30.0\n)\n\n# Example: Get state\n# Note: This will raise NotImplementedError as per the API design\ntry:\n    state = client.state.get(\"my_key\")\nexcept NotImplementedError:\n    print(\"State runtime not implemented yet\")\n```\n\n## API Documentation\n\nFor detailed API documentation, please refer to:\n\n- [Core API Reference](docs/API参考文档.md)\n- [Enhanced API Reference](docs/API参考文档.md)\n\n## Contributing\n\nWe welcome contributions! Please follow these steps:\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## Development\n\n### Setup Development Environment\n\n```shell\ngit clone https://github.com/reactivegroup/cloud-runtimes-python.git\ncd cloud-runtimes-python\npython -m venv venv\nsource venv/bin/activate  # On Windows use `venv\\Scripts\\activate`\npip install -e .[dev]\n```\n\n### Running Tests\n\n```shell\npytest tests/\n```\n\n### Code Style\n\nWe use:\n- Black for code formatting\n- isort for import sorting\n- flake8 for linting\n\nRun formatting:\n```shell\nblack .\nisort .\nflake8\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcapa-cloud%2Fcloud-runtimes-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcapa-cloud%2Fcloud-runtimes-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcapa-cloud%2Fcloud-runtimes-python/lists"}