Skip to main content

ECAPI SDK for Python

Project description

ecapi-sdk (Python)

ECAPI 的 Python SDK,面向当前重构后的 REST/OpenAPI 契约。当前门面由 openapi.json 生成并覆盖全部 160 个接口,并随包提供 py.typedclient.pyi,方便 IDE 显示参数、必填字段和 docstring。

安装

pip install ecapi-sdk

仓库内更新 SDK 文档和类型提示:

python3 sdk/generate_sdk_api_reference.py
python3 -m py_compile sdk/python/ecapi-sdk/src/ecapi_sdk/client.py

快速开始

from ecapi_sdk import ECAPIClient, ECAPIError, is_ecapi_error

client = ECAPIClient(
    base_url="https://api.easecation.net",
    auth={"type": "apiKey", "apiKey": "ec_xxx"},
)

try:
    me = client.user.get_me()
    player = client.player.get_info({"displayName": "Steve"})
    wallet = client.player.get_wallet("player-ecid")
except ECAPIError as error:
    print(error.status, error.code, error.request_id, str(error))
    raise

认证方式

client.set_api_key("ec_xxx")
client.set_bearer_token("iam-jwt-token")
client.set_app_session_token("app-session-token")
client.clear_auth()

也可以在单次请求中传入 auth=... 覆盖默认认证;传 auth=None 表示本次不发送认证。

认证来自 IAM callback、短期 token 或其它动态来源时,可以使用 auth_provider,SDK 会在每次请求前调用它:

client = ECAPIClient(
    auth_provider=lambda: {"type": "apiKey", "apiKey": get_current_api_key()},
)

如果 auth_provider 返回 awaitable,且当前没有正在运行的 event loop,同步客户端会用 asyncio.run() 等待它;在已有 event loop 中请使用同步 provider 或在业务层先解析认证。

类型提示与文档

  • client.pyclient.pyi 均从 OpenAPI 生成,query/body 会生成 TypedDict,字段必填性来自 OpenAPI。
  • API_REFERENCE.md 会列出方法、接口说明、权限、HTTP 方法、路径、必填参数和可选参数。
  • ECAPIError 会提取服务端错误 envelope 中的 coderequest_iddetailsfield 和用户友好的 message

常用调用

client.system.get_health()
client.system.get_liveness()
client.system.get_readiness()

client.player.search_ecid({"search": "Steve"})
client.player.cutoff_leaderboard.get_leaderboard({"game": "bedwar"})
client.punish.create({
    "type": "WARNING",
    "ecid": "player-ecid",
    "source": "console",
    "reason": "测试警告",
})
client.punish.set_parkour_punishment({
    "ecid": "player-ecid",
    "map": "parkour_01",
    "start": 1717200000,
    "end": 1717286400,
    "usetime": 12345,
})

未封装或临时接口可使用统一入口:

client.request("GET", "/players/info", query={"displayName": "Steve"})

契约说明

本 SDK 不提供旧路径兼容别名,所有方法都调用新的 REST/OpenAPI 路径。OpenAPI 是路径、参数和权限说明的唯一事实源,完整方法请查看 API_REFERENCE.md

Project details


Download files

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

Source Distribution

ecapi_sdk-3.1.3.tar.gz (18.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ecapi_sdk-3.1.3-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file ecapi_sdk-3.1.3.tar.gz.

File metadata

  • Download URL: ecapi_sdk-3.1.3.tar.gz
  • Upload date:
  • Size: 18.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for ecapi_sdk-3.1.3.tar.gz
Algorithm Hash digest
SHA256 ed8076c679ce3f6c502668d7b7cfd41ed42364c434dcdd3d8d1ba135f7348e76
MD5 8da8ac4da2f20927e8f9476957012485
BLAKE2b-256 de48b1c6055c34d6077a5646bcb90a93d6c51e16a8eb82bcf45931479e5987f3

See more details on using hashes here.

File details

Details for the file ecapi_sdk-3.1.3-py3-none-any.whl.

File metadata

  • Download URL: ecapi_sdk-3.1.3-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for ecapi_sdk-3.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c75d1a0a65531b50d2ffd1a41b0a07de59c5da788cc5b572d9d9e1cf2ed83c9c
MD5 b17da5fdf3f58b43e455ead11b8d39a7
BLAKE2b-256 1fa5e5c287f160a3fe8ceba4141a667c416ef494baaa29eb28b8e158cd4db134

See more details on using hashes here.

Supported by

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