{"id":19411461,"url":"https://github.com/volcengine/volc-sdk-python","last_synced_at":"2026-02-05T14:01:40.753Z","repository":{"id":43018062,"uuid":"307109738","full_name":"volcengine/volc-sdk-python","owner":"volcengine","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-22T12:02:34.000Z","size":2646,"stargazers_count":189,"open_issues_count":5,"forks_count":33,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-23T05:01:01.504Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/volcengine.png","metadata":{"files":{"readme":"README.EN.MD","changelog":"Changelog","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-10-25T13:52:17.000Z","updated_at":"2026-01-22T12:02:35.000Z","dependencies_parsed_at":"2023-09-27T15:58:35.452Z","dependency_job_id":"5adfb274-82c4-4a46-a09b-3c9e8ff90c11","html_url":"https://github.com/volcengine/volc-sdk-python","commit_stats":{"total_commits":455,"total_committers":67,"mean_commits":6.791044776119403,"dds":0.767032967032967,"last_synced_commit":"fb8049ca4ae4c23a0a448e353fcab61ca6c55bff"},"previous_names":[],"tags_count":210,"template":false,"template_full_name":null,"purl":"pkg:github/volcengine/volc-sdk-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolc-sdk-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolc-sdk-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolc-sdk-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolc-sdk-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/volcengine","download_url":"https://codeload.github.com/volcengine/volc-sdk-python/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/volcengine%2Fvolc-sdk-python/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29123580,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-05T13:58:18.919Z","status":"ssl_error","status_checked_at":"2026-02-05T13:57:56.289Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2024-11-10T12:21:29.640Z","updated_at":"2026-02-05T14:01:40.703Z","avatar_url":"https://github.com/volcengine.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"English | [中文](README.md)\n\n\u003ch1 align=\"center\"\u003e\u003cimg src=\"https://iam.volccdn.com/obj/volcengine-public/pic/volcengine-icon.png\"\u003e\u003c/h1\u003e\n\u003ch1 align=\"center\"\u003eVolcengine SDK for Python\u003c/h1\u003e\n\nWelcome to Volcengine SDK for Python. This document explains how to obtain and use the SDK.\n\n## Prerequisites\n\n### Enable the service\n\nMake sure the service you want to access is enabled. Go to the [Volcengine Console](https://console.volcengine.com/), select the service from the left navigation (or search it from the top bar), and complete the activation process in the service console.\n\n### Obtain security credentials\n\nAccess Key is the credential used to access Volcengine services. It consists of Access Key ID (AK) and Secret Access Key (SK).\n\nLog in to the [Volcengine Console](https://console.volcengine.com/), then go to [IAM](https://console.volcengine.com/iam) -\u003e [Access Keys](https://console.volcengine.com/iam/keymanage/) to create and manage your Access Keys. For more information, see the [Access Key documentation](https://www.volcengine.com/docs/6291/65568).\n\n### Environment check\n\nPython version must be **3.7** or later.\n\n## Install\n\nInstall the SDK via pip:\n\n```bash\npip install --user volcengine\n```\n\nIf `volcengine` is already installed, upgrade it with:\n\n```bash\npip install --upgrade volcengine\n```\n\n## Configuration\n\n### Credential configuration\n\nVolcengine SDK for Python supports the following credential loading methods.\n\n*Note: Replace `Your AK` and `Your SK` in the code with your actual AK and SK.*\n\n**Method 1**: Set AK/SK on the client **(recommended)**\n\n```python\niam_service = IamService()\niam_service.set_ak('Your AK')\niam_service.set_sk('Your SK')\n```\n\n**Method 2**: Load AK/SK from environment variables\n\n```bash\nVOLC_ACCESSKEY=\"Your AK\"\nVOLC_SECRETKEY=\"Your SK\"\n```\n\n**Method 3**: Load AK/SK from a file under HOME\n\nAdd the following content to `~/.volc/config`:\n\n```json\n{\n  \"ak\": \"Your AK\",\n  \"sk\": \"Your SK\"\n}\n```\n\n## Other resources\n\n### Some service directories and examples\n\n- [Visual Intelligence](volcengine/visual/README.md)\n- [NLP](volcengine/nlp/README.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvolcengine%2Fvolc-sdk-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvolcengine%2Fvolc-sdk-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvolcengine%2Fvolc-sdk-python/lists"}