{"id":18384294,"url":"https://github.com/speakeasy-sdks/rows-python-sdk","last_synced_at":"2025-10-06T14:45:49.211Z","repository":{"id":135630769,"uuid":"596937242","full_name":"speakeasy-sdks/rows-python-sdk","owner":"speakeasy-sdks","description":"Maintain data inside Rows spreadsheets programmatically","archived":false,"fork":false,"pushed_at":"2023-02-07T12:38:45.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-19T05:51:17.848Z","etag":null,"topics":["python","sdk","spreadsheet"],"latest_commit_sha":null,"homepage":"https://developers.rows.com/#section/Introduction","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/speakeasy-sdks.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}},"created_at":"2023-02-03T09:01:43.000Z","updated_at":"2023-02-09T20:24:56.000Z","dependencies_parsed_at":"2023-04-20T22:32:23.453Z","dependency_job_id":null,"html_url":"https://github.com/speakeasy-sdks/rows-python-sdk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/speakeasy-sdks/rows-python-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speakeasy-sdks%2Frows-python-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speakeasy-sdks%2Frows-python-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speakeasy-sdks%2Frows-python-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speakeasy-sdks%2Frows-python-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/speakeasy-sdks","download_url":"https://codeload.github.com/speakeasy-sdks/rows-python-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/speakeasy-sdks%2Frows-python-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278628756,"owners_count":26018476,"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-10-06T02:00:05.630Z","response_time":65,"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":["python","sdk","spreadsheet"],"created_at":"2024-11-06T01:14:09.936Z","updated_at":"2025-10-06T14:45:49.205Z","avatar_url":"https://github.com/speakeasy-sdks.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rows API - Python SDK\n\nWelcome to Rows API Pyhton SDK.  Rows API is a RESTful interface that lets you  create Rows integrations, i.e. applications that read and maintain data inside Rows spreadsheets programmatically.\n\nIf you’re not familiar with the terms Workspaces, Folders, Spreadsheets, Pages, and Tables, please read the [Rows concepts](#section/Introduction/Rows-concepts) section below or [the docs](https://rows.com/docs/category/getting-started) on Rows website for more detailed information.\n\nIf you still have questions beyond this documentation, please contact us on support@rows.com email or through the chat interface in your Rows account.\n\n\u003c!-- Start SDK Installation --\u003e\n\n\u003c!-- End SDK Installation --\u003e\n\n## SDK Example Usage\n\u003c!-- Start SDK Example Usage --\u003e\n```python\nimport rowsapi\nfrom rowsapi.models import operations, shared\n\ns = rowsapi.Rowsapi()\ns.config_security(\n    security=shared.Security(\n        bearer=shared.SchemeBearer(\n            authorization=\"Bearer YOUR_BEARER_TOKEN_HERE\",\n        ),\n    )\n)\n    \nreq = operations.AppendRangeCellsBySpreadsheetIDRequest(\n    path_params=operations.AppendRangeCellsBySpreadsheetIDPathParams(\n        range=\"sit\",\n        spreadsheet_id=\"voluptas\",\n        table_id=\"culpa\",\n    ),\n    request=shared.AppendValues(\n        values=[\n            [\n                \"dolor\",\n                \"expedita\",\n                \"voluptas\",\n            ],\n            [\n                \"et\",\n            ],\n        ],\n    ),\n)\n    \nres = s.spreadsheet.append_range_cells_by_spreadsheet_id(req)\n\nif res.status_code == 200:\n    # handle response\n```\n\u003c!-- End SDK Example Usage --\u003e\n\n\u003c!-- Start SDK Available Operations --\u003e\n## SDK Available Operations\n\n### Spreadsheet\n\n* `append_range_cells_by_spreadsheet_id` - Append values to range\n* `get_range_cells_by_spreadsheet_id` - Get cells from range\n* `get_range_values_by_spreadsheet_id` - Get values from range\n* `get_spreadsheet_by_spreadsheet_id` - Get spreadsheet information\n* `write_range_values_by_spreadsheet_id` - Overwrite cells in range\n\n### Workspace\n\n* `get_workspace_folders` - List folders\n* `get_workspace_information` - Get workspace information\n* `get_workspace_spreadsheets` - List spreadsheets\n\n\u003c!-- End SDK Available Operations --\u003e\n\n### SDK Generated by [Speakeasy](https://docs.speakeasyapi.dev/docs/using-speakeasy/client-sdks)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspeakeasy-sdks%2Frows-python-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspeakeasy-sdks%2Frows-python-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspeakeasy-sdks%2Frows-python-sdk/lists"}