{"id":31067312,"url":"https://github.com/bububa/runway-go","last_synced_at":"2025-09-15T19:58:33.923Z","repository":{"id":304642983,"uuid":"1019282621","full_name":"bububa/runway-go","owner":"bububa","description":"RunwayML golang SDK","archived":false,"fork":false,"pushed_at":"2025-07-14T05:11:06.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-14T13:46:22.513Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/bububa.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,"zenodo":null}},"created_at":"2025-07-14T05:09:29.000Z","updated_at":"2025-07-14T05:11:09.000Z","dependencies_parsed_at":"2025-07-14T13:46:25.799Z","dependency_job_id":"f104c08a-d196-4001-863b-2bcf33cca08b","html_url":"https://github.com/bububa/runway-go","commit_stats":null,"previous_names":["bububa/runway-go"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bububa/runway-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bububa%2Frunway-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bububa%2Frunway-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bububa%2Frunway-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bububa%2Frunway-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bububa","download_url":"https://codeload.github.com/bububa/runway-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bububa%2Frunway-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275312966,"owners_count":25442563,"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","status":"online","status_checked_at":"2025-09-15T02:00:09.272Z","response_time":75,"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":"2025-09-15T19:58:31.790Z","updated_at":"2025-09-15T19:58:33.912Z","avatar_url":"https://github.com/bububa.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RunwayML SDK implementation in Golang\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/bububa/runway-go.svg)](https://pkg.go.dev/github.com/bububa/runway-go)\n[![Go](https://github.com/bububa/runway-go/actions/workflows/go.yml/badge.svg)](https://github.com/bububa/runway-go/actions/workflows/go.yml)\n[![goreleaser](https://github.com/bububa/runway-go/actions/workflows/goreleaser.yml/badge.svg)](https://github.com/bububa/runway-go/actions/workflows/goreleaser.yml)\n[![GitHub go.mod Go version of a Go module](https://img.shields.io/github/go-mod/go-version/bububa/runway-go.svg)](https://github.com/bububa/runway-go)\n[![GoReportCard](https://goreportcard.com/badge/github.com/bububa/runway-go)](https://goreportcard.com/report/github.com/bububa/runway-go)\n[![GitHub license](https://img.shields.io/github/license/bububa/runway-go.svg)](https://github.com/bububa/runway-go/blob/master/LICENSE)\n[![GitHub release](https://img.shields.io/github/release/bububa/runway-go.svg)](https://gitHub.com/bububa/runway-go/releases/)\n\n## Installation\n\n```bash\ngo get -u github.com/bububa/runway-go\n```\n\n## Usage\n\n```golang\n\nimport \"github.com/bububa/runway-go\"\nfunc main() {\n  ctx := context.Background()\n  clt := runway.NewClient(os.Getenv(\"RUNWAY_KEY\"))\n  i2vReq := runway.Image2VideoRequest[string] {\n    PromptImage: \"http://example.com\",\n    Seed: 4294967295,\n    Mode: \"gen4_turbo\",\n    PromptText: \"string\",\n    Duration: 5,\n    Ratio: VideoRatio_1280_720,\n    ContentModeration: \u0026runway.ContentModeration {\n      PublicFigureThreshold: runway.Auto\n    },\n  }\n  taskID, err := clt.CreateTask(ctx, \u0026i2vReq)\n  if err != nil {\n    return\n  }\n  task := runway.Task{\n    ID: taskID,\n  }\n  if err := clt.GetTask(ctx, \u0026task); err != nil {\n    return\n  }\n  if err := clt.DeleteTask(ctx, taskID); err != nil {\n    return\n  }\n  var org runway.Organization\n  if err := clt.Organization(ctx, \u0026org); err != nil {\n    return\n  }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbububa%2Frunway-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbububa%2Frunway-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbububa%2Frunway-go/lists"}