{"id":24295308,"url":"https://github.com/casvisor/casvisor-python-sdk","last_synced_at":"2026-02-07T13:32:32.558Z","repository":{"id":271763421,"uuid":"911637938","full_name":"casvisor/casvisor-python-sdk","owner":"casvisor","description":"Python client SDK for Casvisor","archived":false,"fork":false,"pushed_at":"2025-01-27T05:32:45.000Z","size":32,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-04T15:50:24.374Z","etag":null,"topics":["api","casvisor","client","py","python","sdk"],"latest_commit_sha":null,"homepage":"https://github.com/casvisor/casvisor","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/casvisor.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2025-01-03T13:45:04.000Z","updated_at":"2025-01-27T05:32:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"7c3dcda4-0993-4f28-9289-34d0521a3f21","html_url":"https://github.com/casvisor/casvisor-python-sdk","commit_stats":null,"previous_names":["casvisor/casvisor-python-sdk"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/casvisor/casvisor-python-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/casvisor%2Fcasvisor-python-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/casvisor%2Fcasvisor-python-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/casvisor%2Fcasvisor-python-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/casvisor%2Fcasvisor-python-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/casvisor","download_url":"https://codeload.github.com/casvisor/casvisor-python-sdk/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/casvisor%2Fcasvisor-python-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29195186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T12:38:28.597Z","status":"ssl_error","status_checked_at":"2026-02-07T12:38:23.888Z","response_time":63,"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","casvisor","client","py","python","sdk"],"created_at":"2025-01-16T18:40:15.743Z","updated_at":"2026-02-07T13:32:32.535Z","avatar_url":"https://github.com/casvisor.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# casvisor-python-sdk\n\n[![GitHub Actions](https://github.com/casvisor/casvisor-python-sdk/workflows/build/badge.svg)](https://github.com/casvisor/casvisor-python-sdk/actions)\n[![Version](https://img.shields.io/pypi/v/casvisor-python-sdk.svg)](https://pypi.org/project/casvisor-python-sdk/)\n[![PyPI - Wheel](https://img.shields.io/pypi/wheel/casvisor-python-sdk.svg)](https://pypi.org/project/casvisor-python-sdk/)\n[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/casvisor-python-sdk.svg)](https://pypi.org/project/casvisor-python-sdk/)\n[![Discord](https://img.shields.io/discord/1022748306096537660?logo=discord\u0026label=discord\u0026color=5865F2)](https://discord.gg/5rPsrAzK7S)\n\nCasvisor Python SDK is the official Python client for [Casvisor](https://github.com/casvisor/casvisor), used to interact with Casvisor services.\n\nCasvisor-python-sdk is available on PyPI:\n\n```console\npip install casvisor-python-sdk\n```\n\nCasvisor SDK is simple to use. We will show you the steps below.\n\n\n## Init Config\n\nInitialization requires 5 parameters, which are all str type:\n\n| Name (in order)  | Must | Description                                           |\n| ---------------- | ---- | ----------------------------------------------------- |\n| endpoint         | Yes  | Casvisor Server Url, such as `http://localhost:16001` |\n| clientId         | Yes  | Application.clientId                                  |\n| clientSecret     | Yes  | Application.clientSecret                              |\n| organizationName | Yes  | Organization name                                     |\n| applicationName  | Yes  | Application name                                      |\n\n```python\nfrom casvisor-python-sdk import CasvisorSDK\n\nsdk = CasvisorSDK(\n    endpoint,\n    clientId,\n    clientSecret,\n    organizationName,\n    applicationName,\n)\n```\n\n\n## Basic Usage\n\ncasvisor-python-sdk supports some basic operations, such as:\n\n- `get_records(self)`, get all records\n- `get_record(self, name: str)`, get one record by name\n- `get_pagination_records(self, p: int, pageSize: int, query_map: Dict[str, str])`, get records by pagination\n- `update_record(self, record: Record)`, update one record\n- `add_record(self, record: Record)`, add one record\n- `delete_record(self, record: Record)`, delete one record\n\n\n## Test\n\nRun test:\n\n```console\npip install -r requirements.txt\npython -m unittest discover src/tests -v\n```\n\n\n## Contribution\n\nWe welcome any form of contribution, including but not limited to:\n\n1. Submit issues and suggestions\n2. Submit Pull Request\n3. Improve documentation\n\n\n## License\n\nThis project is licensed under the [Apache 2.0 License](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcasvisor%2Fcasvisor-python-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcasvisor%2Fcasvisor-python-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcasvisor%2Fcasvisor-python-sdk/lists"}