api_sdk/README.md
English | 简体中文
This directory contains source-adjacent maintainer files for the PaddleOCR official API SDKs. The SDKs call hosted PaddleOCR official API services; they do not run local PaddleOCR inference or load local models.
The official user documentation:
| File | Purpose |
|---|---|
typescript/README.md | Package-level README for the TypeScript SDK. |
go/README.md | Package-level README for the Go SDK. |
The Python SDK is part of the main paddleocr package.
| Language | Source location | User docs |
|---|---|---|
| Python | ../paddleocr | Python SDK |
| TypeScript | typescript | TypeScript SDK |
| Go | go | Go SDK |
Run these from the PaddleOCR repo root directory:
# Python
python -m pytest tests/api_client/
# TypeScript
cd api_sdk/typescript
npm run lint
npm test
# Go
cd ../go
go test ./...