{"id":42207033,"url":"https://github.com/render-oss/sdk","last_synced_at":"2026-04-08T06:01:56.557Z","repository":{"id":318524705,"uuid":"1067309824","full_name":"render-oss/sdk","owner":"render-oss","description":"The official Render SDK","archived":false,"fork":false,"pushed_at":"2026-04-01T15:36:44.000Z","size":1661,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-01T20:56:16.721Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/render-oss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-09-30T17:11:37.000Z","updated_at":"2026-04-01T15:36:49.000Z","dependencies_parsed_at":"2026-01-08T18:00:17.130Z","dependency_job_id":"068585ed-7d1d-4ad2-83d7-66fdc7321294","html_url":"https://github.com/render-oss/sdk","commit_stats":null,"previous_names":["render-oss/sdk"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/render-oss/sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fsdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fsdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fsdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fsdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/render-oss","download_url":"https://codeload.github.com/render-oss/sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/render-oss%2Fsdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31542384,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"online","status_checked_at":"2026-04-08T02:00:06.127Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-27T00:36:08.530Z","updated_at":"2026-04-08T06:01:56.542Z","avatar_url":"https://github.com/render-oss.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sdk\n\nThe official SDK for Render\n\n\u003e [!WARNING]\n\u003e **Early Access:** This SDK is in early access and subject to breaking changes without notice.\n\nSDK support is provided for the following languages\n\nLanguage   | README                                 | Package\n-----------|----------------------------------------|-----------------\nTypeScript | [./typescript](./typescript/README.md) | `@renderinc/sdk`\nPython     | [./python](./python/README.md)         | `render_sdk`\n\nWith the following features\n\nFeature        | Python          | TypeScript\n---------------|-----------------|----------------\nREST API       | ✔️              | ✔️\nWorkflows      | [⚠️ Early Access client](./python/render_sdk/client/workflows.py) | [⚠️ Early Access client](./typescript/src/workflows/client/client.ts)\nObject Storage | [⚠️ Early Access client](./python/render_sdk/experimental/object/client.py) | [⚠️ Early Access client](./typescript/src/experimental/object/client.ts)\n\n# Quickstart\n\nTo get started you'll need a couple things:\n- [A Render API Key](https://render.com/docs/api#1-create-an-api-key)\n- The SDK for your language\n\n## Python\n\nTo start, get the latest SDK from pypi\n```bash\npip install render_sdk\n# or\nuv add render_sdk\n# or\npoetry add render_sdk\n```\n\nThen initialize a SDK client with your API key\n```python\nfrom render import Render\n\nrender = Render(token=\"rnd_...\")\n```\n\nYou may also provide a `RENDER_API_KEY` environment variable instead of providing the key to the constructor.\n\nFor more detail see the [Python SDK README](./python/README.md)\n\n## TypeScript\n\nTo start get the latest SDK from npm\n```bash\nnpm i @renderinc/sdk\n# or\npnpm add @renderinc/sdk\n# or\nyarn add @renderinc/sdk\n# or\nbun add @renderinc/sdk\n```\n\nThen initialize a SDK client with your API key\n```typescript\nimport { Render } from \"@renderinc/sdk\";\n\nconst render = new Render({token: \"rnd_...\"})\n```\n\nYou may also provide a `RENDER_API_KEY` environment variable instead of providing the key to the constructor.\n\nFor more detail see the [TypeScript SDK README](./typescript/README.md)\n\n# Contributing\n\n## Development\n\n### Folder structure\n\n```\n.\n├── python/\n│   ├── example\n│   └── render_sdk\n├── typescript/\n│   ├── examples\n│   └── src\n├── openapi/\n│   └── openapi.yaml # Local API Schema for Workflows\n└── go/\n    ├── example\n    └── pkg\n```\n\n### Setup\n\nFor Python we support a minimum of `3.10`, and use [uv](https://docs.astral.sh/uv/) to manage our dependencies - [see more in our pyproject.toml](https://github.com/renderinc/sdk/blob/main/python/pyproject.toml)\n\nFor TypeScript we support a minimum node version of `18.0.0` and use `npm` to manage our dependecies - [see more in our package.json](https://github.com/renderinc/sdk/blob/main/typescript/package.json)\n\nTo install pre-commit hooks, run:\n\n```bash\npre-commit install\npre-commit autoupdate\n```\n\n### API Documentation\n\nTo view workflow API documentation from the OpenAPI spec:\n\n```bash\nnpx @redocly/cli preview-docs openapi/openapi.yaml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frender-oss%2Fsdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frender-oss%2Fsdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frender-oss%2Fsdk/lists"}