Skip to main content
为了方便您理解SDK中的一些概念和参数的含义,使用SDK前建议您先查看OpenAPI使用入门。要了解每个API的具体参数和含义,请参考程序注释或参考OpenAPI&SDK下具体产品线的API文档。

# 环境准备 #

1. 京东云Python SDK适用于Python 2.7.*及以上版本,暂未支持3.*版本。
2. 在开始调用京东云open API之前,需提前在京东云用户中心账户管理下的AccessKey管理页面申请accesskey和secretKey密钥对(简称AK/SK)。AK/SK信息请妥善保管,如果遗失可能会造成非法用户使用此信息操作您在云上的资源,给你造成数据和财产损失。

# SDK使用方法 #
建议使用pip安装京东云Python SDK,如下所示:

pip install jdcloud_sdk
您还可以下载sdk源代码自行使用。

使用源码安装您可以如下方式执行:

python setup.py install

SDK使用中的任何问题,欢迎您在Issues页面交流。

**注意:京东云并没有提供其他下载方式,请务必使用上述官方下载方式!**

调用SDK
Python SDK的调用主要分为4步:

1. 设置accessKey和secretKey
2. 创建Client
3. 设置请求参数
4. 执行请求得到响应

以下是查询云主机实例类型的调用示例

```python
from jdcloud_sdk.core.credential import Credential
from jdcloud_sdk.services.vm.client.VmClient import VmClient
from jdcloud_sdk.services.vm.apis.DescribeInstanceTypesRequest \
import DescribeInstanceTypesParameters, DescribeInstanceTypesRequest

access_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
secret_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
credential = Credential(access_key, secret_key)
client = VmClient(credential)

try:
parameters = DescribeInstanceTypesParameters('cn-north-1')
request = DescribeInstanceTypesRequest(parameters)
resp = client.send(request)
if resp.error is not None:
print resp.error.code, resp.error.message
return
print resp.result
except Exception, e:
print e
#错误处理
```


Home-page: https://github.com/jdcloud-api/jdcloud-sdk-python
Author: JDCloud API Gateway Team
Author-email: UNKNOWN
License: Apache License V2.0
Description: UNKNOWN
Platform: UNKNOWN

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jdcloud_sdk-1.2.0.tar.gz (78.3 kB view details)

Uploaded Source

File details

Details for the file jdcloud_sdk-1.2.0.tar.gz.

File metadata

  • Download URL: jdcloud_sdk-1.2.0.tar.gz
  • Upload date:
  • Size: 78.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for jdcloud_sdk-1.2.0.tar.gz
Algorithm Hash digest
SHA256 ceed7dfff6f40ebf9002f0b0da2758863cc4c5a2c3fde28cbcff5f4e89251c2f
MD5 288b69bb35a2c2935d6a1b4eb79b4715
BLAKE2b-256 83afbc750947153534f958353987d11b5288e022587a9ab77b0622f0ed0bf79d

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page