Files
wehub-resource-sync e904b667c6
Build/Publish Develop Docs / deploy (push) Failing after 1s
PaddleOCR Code Style Check / check-code-style (push) Failing after 1s
PaddleOCR PR Tests GPU / detect-changes (push) Failing after 1s
PaddleOCR PR Tests / detect-changes (push) Failing after 1s
PaddleOCR PR Tests GPU / test-pr-gpu (push) Has been cancelled
PaddleOCR PR Tests / test-pr (push) Has been cancelled
PaddleOCR PR Tests GPU / test-pr-gpu-impl (push) Has been cancelled
PaddleOCR PR Tests / test-pr-python (3.13) (push) Has been cancelled
PaddleOCR PR Tests / test-pr-python (3.8) (push) Has been cancelled
PaddleOCR PR Tests / test-pr-python (3.9) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 11:59:26 +08:00

1.7 KiB

PaddleOCR 官方 API SDK

English | 简体中文

本目录包含 PaddleOCR 官方 API SDK 的源码相邻维护文档。SDK 调用 PaddleOCR 官方 API 托管服务;它们不在本地执行 PaddleOCR 推理,也不加载本地模型。

正式用户文档:

维护者文件

文件 作用
typescript/README_cn.md TypeScript SDK 的包级 README。
go/README_cn.md Go SDK 的包级 README。

Python SDK 是主 paddleocr 包的一部分。

包位置

语言 源码位置 用户文档
Python ../paddleocr Python SDK
TypeScript typescript TypeScript SDK
Go go Go SDK

验证

在 PaddleOCR 仓库根目录执行:

# Python
python -m pytest tests/api_client/

# TypeScript
cd api_sdk/typescript
npm run lint
npm test

# Go
cd ../go
go test ./...